summaryrefslogtreecommitdiffstats
path: root/roles/openshift_logging/tasks/stop_cluster.yaml
diff options
context:
space:
mode:
authorEric Wolinetz <ewolinet@redhat.com>2017-02-02 16:29:57 -0600
committerGitHub <noreply@github.com>2017-02-02 16:29:57 -0600
commit44efb12df99f0cc5647b2a76064d049226cd57ea (patch)
tree7ccddcf20de5f0b46a64e98bfc9980c90b03d613 /roles/openshift_logging/tasks/stop_cluster.yaml
parent3cb6ca6fcddbc0117b943f70576481a65b23358a (diff)
parent51c7796b32c9fc0df30ea463ba238422158e7bad (diff)
downloadopenshift-44efb12df99f0cc5647b2a76064d049226cd57ea.tar.gz
openshift-44efb12df99f0cc5647b2a76064d049226cd57ea.tar.bz2
openshift-44efb12df99f0cc5647b2a76064d049226cd57ea.tar.xz
openshift-44efb12df99f0cc5647b2a76064d049226cd57ea.zip
Merge pull request #3239 from ewolinetz/logging_fix_immutable_spec_changes
Adding bool filter to when openshift_logging_use_ops evals and updati…
Diffstat (limited to 'roles/openshift_logging/tasks/stop_cluster.yaml')
-rw-r--r--roles/openshift_logging/tasks/stop_cluster.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/openshift_logging/tasks/stop_cluster.yaml b/roles/openshift_logging/tasks/stop_cluster.yaml
index 8e0df8344..7826efabe 100644
--- a/roles/openshift_logging/tasks/stop_cluster.yaml
+++ b/roles/openshift_logging/tasks/stop_cluster.yaml
@@ -81,7 +81,7 @@
with_items: "{{es_dc.stdout_lines}}"
loop_control:
loop_var: object
- when: openshift_logging_use_ops
+ when: openshift_logging_use_ops | bool
- command: >
{{openshift.common.client_binary}} --config={{mktemp.stdout}}/admin.kubeconfig get dc -l component=kibana-ops -o name -n {{openshift_logging_namespace}}
@@ -98,7 +98,7 @@
with_items: "{{kibana_dc.stdout_lines}}"
loop_control:
loop_var: object
- when: openshift_logging_use_ops
+ when: openshift_logging_use_ops | bool
- command: >
{{openshift.common.client_binary}} --config={{mktemp.stdout}}/admin.kubeconfig get dc -l component=curator-ops -o name -n {{openshift_logging_namespace}}
@@ -115,4 +115,4 @@
with_items: "{{curator_dc.stdout_lines}}"
loop_control:
loop_var: object
- when: openshift_logging_use_ops
+ when: openshift_logging_use_ops | bool