Browse Source

Why is the node failing to start

Scott Dodson 9 years ago
parent
commit
4fcd7a3716
1 changed files with 11 additions and 0 deletions
  1. 11 0
      roles/openshift_node/tasks/main.yml

+ 11 - 0
roles/openshift_node/tasks/main.yml

@@ -112,6 +112,17 @@
 - name: Start and enable node
   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
+  when: node_start_result | failed
+  
+- name: Dump failure information
+  debug: var=node_failure
+  when: node_start_result | failed
+  
 
 - set_fact:
     node_service_status_changed: "{{ node_start_result | changed }}"