summaryrefslogtreecommitdiffstats
path: root/roles/openshift_resource/tasks/command.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/openshift_resource/tasks/command.yml')
-rw-r--r--roles/openshift_resource/tasks/command.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/openshift_resource/tasks/command.yml b/roles/openshift_resource/tasks/command.yml
index c8e8d04..2c51665 100644
--- a/roles/openshift_resource/tasks/command.yml
+++ b/roles/openshift_resource/tasks/command.yml
@@ -4,7 +4,7 @@
command: "oc get -n {{project}} {{resource}}"
register: result
failed_when: false
- changed_when: (result | failed)
+ changed_when: result is failed
- name: Detroy existing resources
command: "oc delete -n {{project}} {{resource}}"
@@ -13,5 +13,5 @@
- name: Executing command
command: "oc -n {{ project }} {{ command }}"
- when: (recreate|default(false)) or (result | changed)
+ when: (recreate|default(false)) or (result is changed)
run_once: true