summaryrefslogtreecommitdiffstats
path: root/deployment/playbooks/crs-node-setup.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'deployment/playbooks/crs-node-setup.yaml')
-rw-r--r--deployment/playbooks/crs-node-setup.yaml10
1 files changed, 10 insertions, 0 deletions
diff --git a/deployment/playbooks/crs-node-setup.yaml b/deployment/playbooks/crs-node-setup.yaml
index 21802a5a..c762f48a 100644
--- a/deployment/playbooks/crs-node-setup.yaml
+++ b/deployment/playbooks/crs-node-setup.yaml
@@ -111,3 +111,13 @@
become: no
roles:
- yum-update-and-reboot
+
+- hosts: single_master
+ gather_facts: no
+ tasks:
+ - name: Make sure oc client is responsive
+ command: oc status
+ retries: 120
+ delay: 5
+ register: oc_status_result
+ until: oc_status_result is succeeded