config.yml 3.3 KB

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