Browse Source

Merge pull request #5310 from ashcrow/split-rhel-centos-crio

Merged by openshift-bot
OpenShift Bot 7 years ago
parent
commit
aad4ccce7c
1 changed files with 8 additions and 2 deletions
  1. 8 2
      roles/docker/tasks/systemcontainer_crio.yml

+ 8 - 2
roles/docker/tasks/systemcontainer_crio.yml

@@ -97,10 +97,16 @@
         l_crio_image_prepend: "docker.io/gscrivano"
         l_crio_image_name: "crio-o-fedora"
 
-    - name: Use Centos based image when distribution is Red Hat or CentOS
+    - name: Use Centos based image when distribution is CentOS
       set_fact:
         l_crio_image_name: "cri-o-centos"
-      when: ansible_distribution in ['RedHat', 'CentOS']
+      when: ansible_distribution == "CentOS"
+
+    - name: Use RHEL based image when distribution is Red Hat
+      set_fact:
+        l_crio_image_prepend: "registry.access.redhat.com"
+        l_crio_image_name: "cri-o"
+      when: ansible_distribution == "RedHat"
 
     # For https://github.com/openshift/openshift-ansible/pull/4049#discussion_r114478504
     - name: Use a testing registry if requested