Browse Source

extend the excluders to containerized deployment

Jan Chaloupka 8 years ago
parent
commit
d83390624f

+ 1 - 1
roles/openshift_excluder/tasks/adjust.yml

@@ -20,4 +20,4 @@
       # disable it if the docker excluder is enabled
       disable_openshift_excluder: "{{ openshift_excluder_on | bool }}"
   when:
-  - not openshift.common.is_containerized | bool
+  - not openshift.common.is_atomic | bool

+ 1 - 1
roles/openshift_excluder/tasks/enable.yml

@@ -18,4 +18,4 @@
       enable_openshift_excluder: "{{ not disable_openshift_excluder_override | default(not openshift_excluder_on) | bool }}"
 
   when:
-  - not openshift.common.is_containerized | bool
+  - not openshift.common.is_atomic | bool

+ 1 - 1
roles/openshift_excluder/tasks/exclude.yml

@@ -17,4 +17,4 @@
     when:
     - enable_openshift_excluder | default(false) | bool
   when:
-  - not openshift.common.is_containerized | bool
+  - not openshift.common.is_atomic | bool

+ 1 - 1
roles/openshift_excluder/tasks/install.yml

@@ -18,4 +18,4 @@
     when:
     - install_openshift_excluder | default(true) | bool
   when:
-  - not openshift.common.is_containerized | bool
+  - not openshift.common.is_atomic | bool

+ 1 - 1
roles/openshift_excluder/tasks/status.yml

@@ -81,4 +81,4 @@
     - "{{ docker_excluder_on }}"
 
   when:
-  - not openshift.common.is_containerized | bool
+  - not openshift.common.is_atomic | bool

+ 1 - 1
roles/openshift_excluder/tasks/unexclude.yml

@@ -16,4 +16,4 @@
     - disable_openshift_excluder | default(false) | bool
 
   when:
-  - not openshift.common.is_containerized | bool
+  - not openshift.common.is_atomic | bool