config.yml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. ---
  2. - name: Install the systemd units
  3. include: 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.common.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. include: aws.yml
  45. static: yes
  46. when: not (openshift_node_use_instance_profiles | default(False))
  47. # Necessary because when you're on a node that's also a master the master will be
  48. # restarted after the node restarts docker and it will take up to 60 seconds for
  49. # systemd to start the master again
  50. - when:
  51. - openshift.common.is_containerized | bool
  52. - not openshift_node_bootstrap
  53. block:
  54. - name: Wait for master API to become available before proceeding
  55. # Using curl here since the uri module requires python-httplib2 and
  56. # wait_for port doesn't provide health information.
  57. command: >
  58. curl --silent --tlsv1.2 --cacert {{ openshift.common.config_base }}/node/ca.crt
  59. {{ openshift_node_master_api_url }}/healthz/ready
  60. args:
  61. # Disables the following warning:
  62. # Consider using get_url or uri module rather than running curl
  63. warn: no
  64. register: api_available_output
  65. until: api_available_output.stdout == 'ok'
  66. retries: 120
  67. delay: 1
  68. changed_when: false
  69. - name: Start and enable node dep
  70. systemd:
  71. daemon_reload: yes
  72. name: "{{ openshift.common.service_type }}-node-dep"
  73. enabled: yes
  74. state: started
  75. - when: not openshift_node_bootstrap
  76. block:
  77. - name: Start and enable node
  78. systemd:
  79. name: "{{ openshift.common.service_type }}-node"
  80. enabled: yes
  81. state: started
  82. daemon_reload: yes
  83. register: node_start_result
  84. until: not node_start_result | failed
  85. retries: 1
  86. delay: 30
  87. ignore_errors: true
  88. - name: Dump logs from node service if it failed
  89. command: journalctl --no-pager -n 100 -u {{ openshift.common.service_type }}-node
  90. when: node_start_result | failed
  91. - name: Abort if node failed to start
  92. fail:
  93. msg: Node failed to start please inspect the logs and try again
  94. when: node_start_result | failed
  95. - set_fact:
  96. node_service_status_changed: "{{ node_start_result | changed }}"