diff options
author | ewolinetz <ewolinet@redhat.com> | 2017-05-02 11:35:33 -0500 |
---|---|---|
committer | ewolinetz <ewolinet@redhat.com> | 2017-05-02 11:35:33 -0500 |
commit | 08c105c2b634bb4764c9889eae8081834469af04 (patch) | |
tree | deafb769f968d4b4acbe95be2d4cb3bed87521c5 /roles | |
parent | 0ea1e389625341bebececce9a56aebc616decd8d (diff) | |
download | openshift-08c105c2b634bb4764c9889eae8081834469af04.tar.gz openshift-08c105c2b634bb4764c9889eae8081834469af04.tar.bz2 openshift-08c105c2b634bb4764c9889eae8081834469af04.tar.xz openshift-08c105c2b634bb4764c9889eae8081834469af04.zip |
Making mux with_items list evaluate as empty if didnt get objects before
Diffstat (limited to 'roles')
-rw-r--r-- | roles/openshift_logging/tasks/start_cluster.yaml | 2 | ||||
-rw-r--r-- | roles/openshift_logging/tasks/stop_cluster.yaml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/roles/openshift_logging/tasks/start_cluster.yaml b/roles/openshift_logging/tasks/start_cluster.yaml index ef9a42a9e..7fec5db42 100644 --- a/roles/openshift_logging/tasks/start_cluster.yaml +++ b/roles/openshift_logging/tasks/start_cluster.yaml @@ -36,7 +36,7 @@ name: "{{ object }}" namespace: "{{openshift_logging_namespace}}" replicas: "{{ openshift_logging_mux_replica_count | default (1) }}" - with_items: "{{ mux_dc.results.results[0]['items'] | map(attribute='metadata.name') | list }}" + with_items: "{{ mux_dc.results.results[0]['items'] if 'results' in mux_dc else {} | map(attribute='metadata.name') | list }}" loop_control: loop_var: object when: diff --git a/roles/openshift_logging/tasks/stop_cluster.yaml b/roles/openshift_logging/tasks/stop_cluster.yaml index d20c57cc1..c078e4b2f 100644 --- a/roles/openshift_logging/tasks/stop_cluster.yaml +++ b/roles/openshift_logging/tasks/stop_cluster.yaml @@ -36,7 +36,7 @@ name: "{{ object }}" namespace: "{{openshift_logging_namespace}}" replicas: 0 - with_items: "{{ mux_dc.results.results[0]['items'] | map(attribute='metadata.name') | list }}" + with_items: "{{ mux_dc.results.results[0]['items'] if 'results' in mux_dc else {} | map(attribute='metadata.name') | list }}" loop_control: loop_var: object when: openshift_logging_use_mux |