How to Test CRI-O with OpenShift Container Platform 3.6 and Red Hat Enterprise Linux 7.4

Scott McCarty
cri-o
Published in
4 min readAug 29, 2017

So, it starts with a thought. What if? We wanted to see how difficult it would be to test CRI-O with RHEL and OCP. The answer, it wasn’t bad at all — especially for alpha software.

You might ask yourself, why would I want to run CRI-O instead of docker? Well, here are six great reasons. The short explanation is, it’s lean, stable, secure and boring. Yes, boring. It only does what it needs to do. It’s a Dump Truck that can carry two tons of dirt, not a Ferrari with a photorealistic backup camera, which is what you want in production. Finally, it’s managed with an open governance model and driven in a truly community driven open source approach.

Now, let’s get to the meat and potatoes. To be clear, this is for testing only. This is not meant for production yet, but if you are like me, you probably are already familiar with RHEL + OCP, so changing one small thing out to test, is a lot easier than using all upstream code where a lot of things can be different than what we are used to :-)

First, you have two choices:

  1. Convert an existing installation of OCP
  2. Start with a fresh install of OCP

With either method, there are some prerequisites.

Prerequisites

First, let’s grab and install the CentOS packages, they will work fine for testing:

rpm -ivh --nodeps https://lsm5.fedorapeople.org/centos-release-container-1-3.el7.noarch.rpm
yum install -y cri-o

Now, let’s make a quick change to the CRI-O configuration:

vi /etc/crio/crio.conf

Replace:

storage_option = [
]

With:

storage_option = [
"overlay2.override_kernel_check=1",
]

Now, start CRI-O

systemctl enable --now crio
systemctl status crio

Convert Existing

Alright, we are getting close :-) Now configure OpenShift by passing some arguments to the Kubelet.

vi /etc/origin/node/node-config.yaml

Make the kubletArguments section match below:

kubeletArguments:
node-labels:
- region=infra
image-service-endpoint:
- "/var/run/crio.sock"
container-runtime-endpoint:
- "/var/run/crio.sock"
container-runtime:
- "remote"
runtime-request-timeout:
- "15m"
enable-cri:
- "true"

Restart the OpenShift Node:

systemctl restart atomic-openshift-node.service

Stop the docker daemon and disable it:

systemctl disable --now docker

Start Fresh

If you don’t have OpenShift installed yet, this is pretty a pretty easy method, all you have to do is modify the ansible installer and everything happens for you. You don’t even need to ever install docker. Woot.

Here are my quick install instructions for OCP on RHEL (mileage may vary). Full OCP 3.6 installation instructions here:

https://pastebin.com/hRKTjQxY

Run the first part of the installer, once the final configuration is written, you will see the below text:

Do the above facts look correct? [y/N]: yWrote atomic-openshift-installer config: /root/.config/openshift/installer.cfg.yml
Wrote Ansible inventory: /root/.config/openshift/hosts
Ready to run installation process.If changes are needed please edit the config file above and re-run.Are you ready to continue? [y/N]:

Before the you press “y” and allow the installer to continue, add the following lines to the installer configuration. The first sets the Kubelet options, the second skips some tests if this is a small test environment which doesn’t meet all of the hardware requirements:

vi /root/.config/openshift/hosts

Add the following:

[OSEv3:vars]
...
openshift_node_kubelet_args={'image-service-endpoint': ['/var/run/crio.sock'], 'container-runtime-endpoint': ['/var/run/crio.sock'], 'container-runtime': ['remote'], 'runtime-request-timeout': ['15m'], 'enable-cri': ['true']}
openshift_disable_check=disk_availability,memory_availability,package_version,docker_storage

Now, finish the installer:

If changes are needed please edit the config file above and re-run.Are you ready to continue? [y/N]: y

Final Steps For Both Methods

Modify the DeploymentConfiguration objects for the router, registry, and registry console to use full path. This is because the docker daemon has a search path similar to DNS where it will check registry.access.redhat.com and docker.io for images .This is fixed in current versions of CRI-O (as of about a week ago), but have not made their way into the packages yet.

Router:

oc edit dc router

Add the full path to the image directive:

image: registry.access.redhat.com/openshift3/ose-haproxy-router:v3.6.173.0.5

Registry:

oc edit dc docker-registry

Add the full path to the image directive:

registry.access.redhat.com/openshift3/ose-docker-registry:v3.6.173.0.5

Registry Console:

oc edit dc registry-console

Add the full path to the image directive:

image: registry.access.redhat.com/openshift3/registry-console:v3.6

Delete each of the pods, and things should start working with CRI-O now:

for i in `oc get pods | grep -E 'router|registry' | awk '{print $1}'`; do oc delete pod $i; done

You should now have working pods running under CRI-O

oc get pods
NAME READY STATUS RESTARTS AGE
docker-registry-1-lkb3c 1/1 Running 0 54s
registry-console-1-bfj3k 1/1 Running 0 54s
rhel7 0/1 Completed 0 1d
router-1-vnpz5 0/1 Pending 0 53s

And, now look with crioctl

crioctrl ctr list

You will see magic:

...
ID: 5b8f0772358ef031df7af7a7201f135f44da44f1f411225fb3f28570dad9cc3d
Pod: 5d3d39bbc564ba0c45bda3d99ae96f46ac25f1de103cbe09c49100989afb094a
Name: router
Attempt: 0
Status: CONTAINER_RUNNING
...

Finally, configure OpenShift to use the full path for all new image pulls:

vi /etc/origin/master/master-config.yaml

Change the imageConfig section to match below:

imageConfig:
format: registry.access.redhat.com/openshift3/ose-${component}:${version}
latest: false

Restart the master

systemctl restart atomic-openshift-master.service -l

Now, run a couple of tests:

oc run --restart=Never --attach --stdin --tty --image registry.access.redhat.com/rhel7/rhel rhel7 bash

Or:

oc run --restart=Never --attach --stdin --tty --image registry.access.redhat.com/rhel7/rhel rhel7 bash

Conclusion

So, whether you converted an existing test installation or installed a new one, it really wasn’t too bad right? The beauty of the modular architecture of Kubernetes is that it is easy to swap out pieces parts and try new things.

The above instructions should give you a very functional, production-like environment. Builds won’t work because there is no docker daemon, which is something that people often want in production.

Let me know if you have any feedback, and I would be happy to incorporate it!

--

--

Scott McCarty
cri-o
Writer for

At Red Hat, Scott McCarty is technical product manager for the container subsystem team, which enables key product capabilities in OpenShift & RHEL