Localhost development cluster
To install localhost OpenShift cluster for test OpenShift deployment scenario, follow the steps below.
Creating a CRC (CodeReady Containers cluster)
- Create RedHat account at https://www.redhat.com/
- Log into the account created.
- Go to https://console.redhat.com/openshift/create/local.
- Download required version of CodeReady Containers.
- Download and save pull secret.
- Extract files to folder and install, if required (for Windows).
- Add CRC path to a system PATH.
Starting OpenShift cluster
There might not be enough default memory (9 Gb) / vCpus (4) / disk-size (35 Gb). Hence, to set new values use the following commands.
crc config viewcrc config set memory 40crc config set cpus 12crc config set disk-size 50
Afterwards, to start the OpenShift cluster, use the below commands.
crc setupcrc start
Upon CRC start, the first call will require a pull secret, obtained earlier.
Possible issues
Problem: On Windows CRC version there might be an issue with disk size increasing.
Solution: The default value on CRC start is 35 Gb. To increase its size, stop the running container, set new value and start container again by running the following command.
crc setupcrc startcrc stopcrc config set disk-size 50crc start