Chapter 3. Using CodeReady Containers
3.1. About presets
CodeReady Containers presets represent a managed container runtime and the lower bounds of system resources required by the instance to run it. CodeReady Containers offers presets for OpenShift Container Platform and the Podman container runtime.
On Microsoft Windows and macOS, the CodeReady Containers guided installer prompts you for your desired preset. On Linux, the OpenShift Container Platform preset is selected by default. You can change this selection using the crc config
command before running the crc setup
command. You can change your selected preset from the system tray on Microsoft Windows and macOS or from the command line on all supported operating systems. Only one preset can be active at a time.
Additional resources
- For more information about the minimum system requirements for each preset, see Minimum system requirements.
- For more information on changing the selected preset, see Changing the selected preset.
3.2. Setting up CodeReady Containers
The crc setup
command performs operations to set up the environment of your host machine for the CodeReady Containers instance.
The crc setup
command creates the ~/.crc directory if it does not already exist.
If you are setting up a new version, capture any changes made to the instance before setting up a new CodeReady Containers release.
Prerequisites
-
On Linux or macOS, ensure that your user account has permission to use the
sudo
command. On Microsoft Windows, ensure that your user account can elevate to Administrator privileges.
Do not run the crc
executable as the root
user or an administrator. Always run the crc
executable with your user account.
Procedure
(Optional) On Linux, the OpenShift Container Platform preset is selected by default. To select the the Podman container runtime preset:
$ crc config set preset podman
Set up your host machine for CodeReady Containers:
$ crc setup
Additional resources
- For more information about the available container runtime presets, see About presets.
3.3. Starting the instance
The crc start
command starts the CodeReady Containers instance and configured container runtime.
Prerequisites
- To avoid networking-related issues, ensure that you are not connected to a VPN and that your network connection is reliable.
-
You set up the host machine using the
crc setup
command. For more information, see Setting up CodeReady Containers. - On Microsoft Windows, ensure that your user account can elevate to Administrator privileges.
For the OpenShift preset, ensure that you have a valid OpenShift user pull secret. Copy or download the pull secret from the Pull Secret section of the CodeReady Containers page on the Red Hat Hybrid Cloud Console.
NoteAccessing the user pull secret requires a Red Hat account.
Procedure
Start the CodeReady Containers instance:
$ crc start
For the OpenShift preset, supply your user pull secret when prompted.
NoteThe cluster takes a minimum of four minutes to start the necessary containers and Operators before serving a request.
Additional resources
- To change the default resources allocated to the instance, see Configuring the instance.
-
If you see errors during
crc start
, see the Troubleshooting CodeReady Containers section for potential solutions.
3.4. Accessing the OpenShift cluster
Access the OpenShift cluster running in the CodeReady Containers instance by using the OpenShift web console or OpenShift CLI (oc
).
3.4.1. Accessing the OpenShift web console
Access the OpenShift web console by using your web browser.
Access the cluster by using either the kubeadmin
or developer
user. Use the developer
user for creating projects or OpenShift applications and for application deployment. Use the kubeadmin
user only for administrative tasks such as creating new users or setting roles.
Prerequisites
- A running CodeReady Containers instance. For more information, see Starting the instance.
Procedure
To access the OpenShift web console with your default web browser, run the following command:
$ crc console
Log in as the
developer
user with the password printed in the output of thecrc start
command. You can also view the password for thedeveloper
andkubeadmin
users by running the following command:$ crc console --credentials
See Troubleshooting CodeReady Containers if you cannot access the CodeReady Containers OpenShift cluster.
Additional resources
- The OpenShift documentation covers the creation of projects and applications.
3.4.2. Accessing the OpenShift cluster with the OpenShift CLI
Access the OpenShift cluster by using the OpenShift CLI (oc
).
Prerequisites
- A running CodeReady Containers instance. For more information, see Starting the instance.
Procedure
Run the
crc oc-env
command to print the command needed to add the cachedoc
executable to your$PATH
:$ crc oc-env
- Run the printed command.
Log in as the
developer
user:$ oc login -u developer https://api.crc.testing:6443
NoteThe
crc start
command prints the password for thedeveloper
user. You can also view it by running thecrc console --credentials
command.You can now use
oc
to interact with your OpenShift cluster. For example, to verify that the OpenShift cluster Operators are available, log in as thekubeadmin
user and run the following command:$ oc config use-context crc-admin $ oc whoami kubeadmin $ oc get co
NoteCodeReady Containers disables the Cluster Monitoring Operator by default.
See Troubleshooting CodeReady Containers if you cannot access the CodeReady Containers OpenShift cluster.
Additional resources
- The OpenShift documentation covers the creation of projects and applications.
3.4.3. Accessing the internal OpenShift registry
The OpenShift cluster running in the CodeReady Containers instance includes an internal container image registry by default. This internal container image registry can be used as a publication target for locally developed container images. To access the internal OpenShift registry, follow these steps.
Prerequisites
- A running CodeReady Containers instance. For more information, see Starting the instance.
-
A working OpenShift CLI (
oc
) command. For more information, see Accessing the OpenShift cluster with the OpenShift CLI. An installation of
podman
ordocker
.-
For Docker, add
default-route-openshift-image-registry.apps-crc.testing
as an insecure registry. For more information, see the Docker documentation.
-
For Docker, add
Procedure
Check which user is logged in to the cluster:
$ oc whoami
NoteFor demonstration purposes, the current user is assumed to be
kubeadmin
.Log in to the registry as that user with its token:
$ podman login -u kubeadmin -p $(oc whoami -t) default-route-openshift-image-registry.apps-crc.testing --tls-verify=false
Create a new project:
$ oc new-project demo
Pull an example container image:
$ podman pull quay.io/libpod/alpine
Tag the image, including namespace details:
$ podman tag alpine:latest default-route-openshift-image-registry.apps-crc.testing/demo/alpine:latest
Push the container image to the internal registry:
$ podman push default-route-openshift-image-registry.apps-crc.testing/demo/alpine:latest --tls-verify=false
Get imagestreams and verify that the pushed image is listed:
$ oc get is
Enable image lookup in the imagestream:
$ oc set image-lookup alpine
This setting allows the imagestream to be the source of images without having to provide the full URL to the internal registry.
Create a pod using the recently pushed image:
$ oc run demo --image=alpine --command -- sleep 600s
3.5. Deploying a sample application with odo
You can use odo
to create OpenShift projects and applications from the command line. This procedure deploys a sample application to the OpenShift cluster running in the CodeReady Containers instance.
Prerequisites
-
You have installed
odo
. For more information, see Installingodo
in theodo
documentation. - The CodeReady Containers instance is running. For more information, see Starting the instance.
Procedure
Log in to the running CodeReady Containers OpenShift cluster as the
developer
user:$ odo login -u developer -p developer
Create a project for your application:
$ odo project create sample-app
Create a directory for your components:
$ mkdir sample-app $ cd sample-app
Create a component from a sample application on GitHub:
$ odo create nodejs --s2i --git https://github.com/openshift/nodejs-ex
NoteCreating a component from a remote Git repository will rebuild the application each time you run the
odo push
command. To create a component from a local Git repository, see Creating a single-component application withodo
in theodo
documentation.Create a URL and add an entry to the local configuration file:
$ odo url create --port 8080
Push the changes:
$ odo push
Your component is now deployed to the cluster with an accessible URL.
List the URLs and check the desired URL for the component:
$ odo url list
- View the deployed application using the generated URL.
Additional resources
-
For more information about using
odo
, see theodo
documentation.
3.6. Stopping the instance
The crc stop
command stops the running CodeReady Containers instance and container runtime. The stopping process takes a few minutes while the cluster shuts down.
Procedure
Stop the CodeReady Containers instance and container runtime:
$ crc stop
3.7. Deleting the instance
The crc delete
command deletes an existing CodeReady Containers instance.
Procedure
Delete the CodeReady Containers instance:
$ crc delete
WarningThe
crc delete
command results in the loss of data stored in the CodeReady Containers instance. Save any desired information stored in the instance before running this command.