summaryrefslogtreecommitdiffstats
path: root/playbooks/adhoc/metrics_setup/playbooks/install.yml
diff options
context:
space:
mode:
Diffstat (limited to 'playbooks/adhoc/metrics_setup/playbooks/install.yml')
-rw-r--r--playbooks/adhoc/metrics_setup/playbooks/install.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/playbooks/adhoc/metrics_setup/playbooks/install.yml b/playbooks/adhoc/metrics_setup/playbooks/install.yml
index 1aac8acb1..a9ec3c1ef 100644
--- a/playbooks/adhoc/metrics_setup/playbooks/install.yml
+++ b/playbooks/adhoc/metrics_setup/playbooks/install.yml
@@ -17,6 +17,8 @@
- name: "Add metrics-deployer"
command: "{{item}}"
run_once: true
+ register: output
+ failed_when: ('already exists' not in output.stderr) and (output.rc != 0)
with_items:
- oc project openshift-infra
- oc create -f /tmp/metrics-deployer-setup.yaml
@@ -31,6 +33,8 @@
- name: "Create metrics-deployer secret"
command: "oc secrets new metrics-deployer nothing=/dev/null"
+ register: output
+ failed_when: ('already exists' not in output.stderr) and (output.rc != 0)
run_once: true
- name: "Copy metrics.yaml to remote"