Explorar o código

Why is the node failing to start

Scott Dodson %!s(int64=9) %!d(string=hai) anos
pai
achega
4fcd7a3716
Modificáronse 1 ficheiros con 11 adicións e 0 borrados
  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 }}"