summaryrefslogtreecommitdiffstats
path: root/roles/openshift_persistent_volumes/tasks/pvc.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/openshift_persistent_volumes/tasks/pvc.yml')
-rw-r--r--roles/openshift_persistent_volumes/tasks/pvc.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_persistent_volumes/tasks/pvc.yml b/roles/openshift_persistent_volumes/tasks/pvc.yml
index 2c5519192..6c12d128c 100644
--- a/roles/openshift_persistent_volumes/tasks/pvc.yml
+++ b/roles/openshift_persistent_volumes/tasks/pvc.yml
@@ -13,5 +13,5 @@
--config={{ mktemp.stdout }}/admin.kubeconfig
register: pvc_create_output
when: persistent_volume_claims | length > 0
- failed_when: ('already exists' not in pvc_create_output.stderr) and ('created' not in pvc_create_output.stdout)
+ failed_when: "('already exists' not in pvc_create_output.stderr) and ('created' not in pvc_create_output.stdout) and pvc_create_output.rc != 0"
changed_when: ('created' in pvc_create_output.stdout)