config.yml 3.3 KB

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