config.yml 3.4 KB

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