소스 검색

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

Merged by openshift-bot
OpenShift Bot 7 년 전
부모
커밋
aad4ccce7c
1개의 변경된 파일8개의 추가작업 그리고 2개의 파일을 삭제
  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