Browse Source

Fixes #8316 - upgrade from 3.9 w/o ASB to 3.10 with ASB fails

Jason Montleon 7 years ago
parent
commit
91619f3a98
1 changed files with 5 additions and 3 deletions
  1. 5 3
      roles/ansible_service_broker/tasks/upgrade.yml

+ 5 - 3
roles/ansible_service_broker/tasks/upgrade.yml

@@ -6,8 +6,10 @@
     namespace: openshift-ansible-service-broker
   register: broker_configmap_raw
 
+- set_fact:
+    broker_configmap: '{{ (broker_configmap_raw.results.results.0.data | from_yaml)["broker-config"] | from_yaml }}'
+  when: broker_configmap_raw.results.results.0.data is defined
+
 - name: Migrate from etcd to CRDs
   import_tasks: migrate.yml
-  when: broker_configmap.dao.get('type') != 'crd'
-  vars:
-    broker_configmap: '{{ (broker_configmap_raw.results.results.0.data | from_yaml)["broker-config"] | from_yaml }}'
+  when: broker_configmap is defined and broker_configmap.dao.get('type') != 'crd'