Browse Source

Merge pull request #5768 from giuseppe/crio-error-out-with-node-docker-container

Automatic merge from submit-queue.

cri-o: error out when node is a Docker container

Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1489555

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
OpenShift Merge Robot 7 years ago
parent
commit
e8091b34a6
1 changed files with 6 additions and 0 deletions
  1. 6 0
      roles/docker/tasks/systemcontainer_crio.yml

+ 6 - 0
roles/docker/tasks/systemcontainer_crio.yml

@@ -36,6 +36,12 @@
     state: present
   when: not openshift.common.is_atomic | bool
 
+- name: Check we are not using node as a Docker container with CRI-O
+  fail: msg='Cannot use CRI-O with node configured as a Docker container'
+  when:
+    - openshift.common.is_containerized | bool
+    - not openshift.common.is_node_system_container | bool
+
 # Used to pull and install the system container
 - name: Ensure atomic is installed
   package: