config.yml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ---
  2. - name: Install the systemd units
  3. import_tasks: systemd_units.yml
  4. - name: Install Node system container
  5. import_tasks: node_system_container.yml
  6. when: l_is_node_system_container | bool
  7. - file:
  8. dest: "{{ l2_openshift_node_kubelet_args['config'] }}"
  9. state: directory
  10. when: ('config' in l2_openshift_node_kubelet_args) | bool
  11. # TODO: add the validate parameter when there is a validation command to run
  12. - name: Create the Node config
  13. template:
  14. dest: "{{ openshift.common.config_base }}/node/node-config.yaml"
  15. src: node.yaml.v1.j2
  16. backup: true
  17. owner: root
  18. group: root
  19. mode: 0600
  20. - name: Configure Node Environment Variables
  21. lineinfile:
  22. dest: /etc/sysconfig/{{ openshift_service_type }}-node
  23. regexp: "^{{ item.key }}="
  24. line: "{{ item.key }}={{ item.value }}"
  25. create: true
  26. with_dict: "{{ openshift_node_env_vars }}"
  27. - name: Ensure the node static pod directory exists
  28. file:
  29. path: "{{ openshift.common.config_base }}/node/pods"
  30. state: directory
  31. mode: 0755
  32. - name: include aws provider credentials
  33. import_tasks: aws.yml
  34. when: not (openshift_node_use_instance_profiles | default(False))