Installing CodeReady Containers
CodeReady Containers is a single-node OpenShift cluster designed for use on a laptop. The latest way to install can be found at https://developers.redhat.com/products/codeready-containers/getting-started. If the instructions here do not work, please refer to the documentation. Documentation is available for installation on Linux, Windows, or Mac.
To install CRC on an RHEL-based Linux machine, follow these steps:
- Make sure that you have
NetworkManager
installed by running the following command:$ sudo dnf install NetworkManager
- Navigate to https://console.redhat.com/openshift/create/local and download the latest release.
- Navigate to where you downloaded the latest release and run the following command:
$ tar xvf crc-linux-amd64.tar.xz
- Create a
bin
folder, copy thecrc
file into the bin folder, and then add thebin
path to your path:$ mkdir -p ~/bin $ cp crc ~/bin $ export PATH=$PATH:$HOME/bin $ echo 'export PATH=$PATH:$HOME/bin...