config.yml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ---
  2. - name: Install the systemd units
  3. import_tasks: systemd_units.yml
  4. - name: Configure Node Environment Variables
  5. lineinfile:
  6. dest: /etc/sysconfig/{{ openshift_service_type }}-node
  7. regexp: "^{{ item.key }}="
  8. line: "{{ item.key }}={{ item.value }}"
  9. create: true
  10. with_dict: "{{ openshift_node_env_vars }}"
  11. - name: Ensure the node static pod directory exists
  12. file:
  13. path: "{{ openshift.common.config_base }}/node/pods"
  14. state: directory
  15. mode: 0755
  16. - name: Create flexvolume directory when running on atomic
  17. file:
  18. state: directory
  19. path: "/etc/origin/kubelet-plugins/volume/exec"
  20. mode: '0750'
  21. when: openshift_is_atomic | bool
  22. - name: include aws provider credentials
  23. import_tasks: aws.yml
  24. when: not (openshift_node_use_instance_profiles | default(False))
  25. - name: Check status of node image pre-pull
  26. async_status:
  27. jid: "{{ image_prepull.ansible_job_id }}"
  28. register: job_result
  29. until: job_result.finished
  30. when:
  31. - node_image.stdout_lines == []
  32. - not openshift_is_atomic | bool
  33. retries: 20
  34. delay: 30
  35. failed_when: false