Browse Source

Normalize times we wait on pods to 10s * 60retries

Scott Dodson 7 years ago
parent
commit
a00f278117

+ 1 - 1
roles/openshift_hosted/tasks/wait_for_pod.yml

@@ -28,7 +28,7 @@
              -o jsonpath='{ .metadata.annotations.openshift\.io/deployment\.phase }'
     register: openshift_hosted_wfp_rc_phase
     until: "'Running' not in openshift_hosted_wfp_rc_phase.stdout"
-    delay: 5
+    delay: 10
     retries: 60
     failed_when: "'Failed' in openshift_hosted_wfp_rc_phase.stdout"
     with_together:

+ 1 - 1
roles/openshift_logging_elasticsearch/tasks/restart_es_node.yml

@@ -36,5 +36,5 @@
   register: _pod_status
   until: (_pod_status.stdout | from_json)['status'] in ['green', 'yellow']
   retries: 60
-  delay: 5
+  delay: 10
   changed_when: false

+ 1 - 1
roles/openshift_service_catalog/tasks/start_api_server.yml

@@ -16,5 +16,5 @@
   register: api_health
   until: "'ok' in api_health.content"
   retries: 60
-  delay: 5
+  delay: 10
   changed_when: false

+ 1 - 1
roles/openshift_web_console/tasks/install.yml

@@ -165,7 +165,7 @@
   register: console_health
   until: console_health.stdout == 'ok'
   retries: 60
-  delay: 5
+  delay: 10
   changed_when: false
   # Ignore errors so we can log troubleshooting info on failures.
   ignore_errors: yes

+ 1 - 1
roles/template_service_broker/tasks/install.yml

@@ -79,7 +79,7 @@
   register: api_health
   until: api_health.stdout == 'ok'
   retries: 60
-  delay: 5
+  delay: 10
   changed_when: false
 
 - set_fact: