Browse Source

Merge pull request #2055 from sdodson/bz1347209

Stop dumping debug output, re-try startng the node once
Scott Dodson 8 years ago
parent
commit
856175c0a9
1 changed files with 8 additions and 7 deletions
  1. 8 7
      roles/openshift_node/tasks/main.yml

+ 8 - 7
roles/openshift_node/tasks/main.yml

@@ -118,14 +118,15 @@
   service: name={{ openshift.common.service_type }}-node enabled=yes state=started
   register: node_start_result
   ignore_errors: yes
-
-- name: Check logs on failure
-  command: journalctl -xe
-  register: node_failure
+  
+- name: Wait 30 seconds for docker initialization whenever node has failed
+  pause:
+    seconds: 30
   when: node_start_result | failed
-
-- name: Dump failure information
-  debug: var=node_failure
+  
+- name: Start and enable node again
+  service: name={{ openshift.common.service_type }}-node enabled=yes state=started
+  register: node_start_result
   when: node_start_result | failed
 
 - set_fact: