Browse Source

Fix xpaas_templates_base

Scott Dodson 8 years ago
parent
commit
c244dd767f
1 changed files with 5 additions and 2 deletions
  1. 5 2
      roles/openshift_examples/tasks/main.yml

+ 5 - 2
roles/openshift_examples/tasks/main.yml

@@ -102,12 +102,15 @@
     path: "{{ item }}"
     state: absent
   with_items:
-    - "{{ xpaas_templates }}/sso70-basic.json"
+    - "{{ xpaas_templates_base }}/sso70-basic.json"
 
 - name: Remove old xPaas templates from openshift namespace
-  command: oc delete -n openshift {{ item }}
+  command: "{{ openshift.common.client_binary }} -n openshift delete templates/{{ item }}"
   with_items:
     - sso70-basic
+  register: oex_delete_old_xpaas_templates
+  failed_when: "'not found' not in oex_delete_old_xpaas_templates.stderr and oex_delete_old_xpaas_templates.rc != 0"
+  changed_when: false
 
 - name: Import xPaas image streams
   command: >