config.yml 3.7 KB

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