config.yml 1.2 KB

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