config.yml 1.0 KB

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