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: l_is_node_system_container | bool
  7. - file:
  8. dest: "{{ l2_openshift_node_kubelet_args['config'] }}"
  9. state: directory
  10. when: ('config' in l2_openshift_node_kubelet_args) | bool
  11. # TODO: add the validate parameter when there is a validation command to run
  12. - name: Create the Node config
  13. template:
  14. dest: "{{ openshift.common.config_base }}/node/node-config.yaml"
  15. src: node.yaml.v1.j2
  16. backup: true
  17. owner: root
  18. group: root
  19. mode: 0600
  20. notify:
  21. - restart node
  22. - name: Configure Node Environment Variables
  23. lineinfile:
  24. dest: /etc/sysconfig/{{ openshift_service_type }}-node
  25. regexp: "^{{ item.key }}="
  26. line: "{{ item.key }}={{ item.value }}"
  27. create: true
  28. with_dict: "{{ openshift_node_env_vars }}"
  29. notify:
  30. - restart node
  31. - name: Ensure the node static pod directory exists
  32. file:
  33. path: "{{ openshift.common.config_base }}/node/pods"
  34. state: directory
  35. mode: 0755
  36. - name: include aws provider credentials
  37. import_tasks: aws.yml
  38. when: not (openshift_node_use_instance_profiles | default(False))
  39. # Necessary because when you're on a node that's also a master the master will be
  40. # restarted after the node restarts docker and it will take up to 60 seconds for
  41. # systemd to start the master again
  42. - when:
  43. - openshift_is_containerized | bool
  44. - not openshift_node_bootstrap
  45. block:
  46. - name: Wait for master API to become available before proceeding
  47. # Using curl here since the uri module requires python-httplib2 and
  48. # wait_for port doesn't provide health information.
  49. command: >
  50. curl --silent --tlsv1.2 --max-time 2
  51. --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 }}"