config.yml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. ---
  2. - name: Install the systemd units
  3. import_tasks: systemd_units.yml
  4. - name: Install Node system container
  5. import_tasks: node_system_container.yml
  6. when:
  7. - l_is_node_system_container | bool
  8. - file:
  9. dest: "{{ l2_openshift_node_kubelet_args['config'] }}"
  10. state: directory
  11. when: ('config' in l2_openshift_node_kubelet_args) | bool
  12. # TODO: add the validate parameter when there is a validation command to run
  13. - name: Create the Node config
  14. template:
  15. dest: "{{ openshift.common.config_base }}/node/node-config.yaml"
  16. src: node.yaml.v1.j2
  17. backup: true
  18. owner: root
  19. group: root
  20. mode: 0600
  21. notify:
  22. - restart node
  23. - name: Configure Node Environment Variables
  24. lineinfile:
  25. dest: /etc/sysconfig/{{ openshift_service_type }}-node
  26. regexp: "^{{ item.key }}="
  27. line: "{{ item.key }}={{ item.value }}"
  28. create: true
  29. with_dict: "{{ openshift_node_env_vars }}"
  30. notify:
  31. - restart node
  32. - name: Ensure the node static pod directory exists
  33. file:
  34. path: "{{ openshift.common.config_base }}/node/pods"
  35. state: directory
  36. mode: 0755
  37. - name: include aws provider credentials
  38. import_tasks: aws.yml
  39. when: not (openshift_node_use_instance_profiles | default(False))
  40. # Necessary because when you're on a node that's also a master the master will be
  41. # restarted after the node restarts docker and it will take up to 60 seconds for
  42. # systemd to start the master again
  43. - when:
  44. - openshift_is_containerized | bool
  45. - not openshift_node_bootstrap
  46. block:
  47. - name: Wait for master API to become available before proceeding
  48. # Using curl here since the uri module requires python-httplib2 and
  49. # wait_for port doesn't provide health information.
  50. command: >
  51. curl --silent --tlsv1.2 --cacert {{ openshift.common.config_base }}/node/ca.crt
  52. {{ openshift_node_master_api_url }}/healthz/ready
  53. args:
  54. # Disables the following warning:
  55. # Consider using get_url or uri module rather than running curl
  56. warn: no
  57. register: api_available_output
  58. until: api_available_output.stdout == 'ok'
  59. retries: 120
  60. delay: 1
  61. changed_when: false
  62. - when: not openshift_node_bootstrap
  63. block:
  64. - name: Start and enable node
  65. systemd:
  66. name: "{{ openshift_service_type }}-node"
  67. enabled: yes
  68. state: started
  69. daemon_reload: yes
  70. register: node_start_result
  71. until: not node_start_result is failed
  72. retries: 1
  73. delay: 30
  74. ignore_errors: true
  75. - name: Dump logs from node service if it failed
  76. command: journalctl --no-pager -n 100 -u {{ openshift_service_type }}-node
  77. when: node_start_result is failed
  78. - name: Abort if node failed to start
  79. fail:
  80. msg: Node failed to start please inspect the logs and try again
  81. when: node_start_result is failed
  82. - set_fact:
  83. node_service_status_changed: "{{ node_start_result is changed }}"