config.yml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. ---
  2. - name: Check that node image is present
  3. command: 'docker images -q "{{ osn_image }}"'
  4. register: node_image
  5. # This task runs async to save time while the node is being configured
  6. - name: Pre-pull node image
  7. docker_image:
  8. name: "{{ osn_image }}"
  9. environment:
  10. NO_PROXY: "{{ openshift.common.no_proxy | default('') }}"
  11. when: node_image.stdout_lines == []
  12. # 10 minutes to pull the image
  13. async: 600
  14. poll: 0
  15. register: image_prepull
  16. - name: Install the systemd units
  17. import_tasks: systemd_units.yml
  18. - name: Configure Node Environment Variables
  19. lineinfile:
  20. dest: /etc/sysconfig/{{ openshift_service_type }}-node
  21. regexp: "^{{ item.key }}="
  22. line: "{{ item.key }}={{ item.value }}"
  23. create: true
  24. with_dict: "{{ openshift_node_env_vars }}"
  25. - name: Ensure the node static pod directory exists
  26. file:
  27. path: "{{ openshift.common.config_base }}/node/pods"
  28. state: directory
  29. mode: 0755
  30. - name: Create flexvolume directory when running on atomic
  31. file:
  32. state: directory
  33. path: "/etc/origin/kubelet-plugins/volume/exec"
  34. mode: '0750'
  35. when: openshift_is_atomic | bool
  36. - name: include aws provider credentials
  37. import_tasks: aws.yml
  38. when: not (openshift_node_use_instance_profiles | default(False))
  39. - name: Check status of node image pre-pull
  40. async_status:
  41. jid: "{{ image_prepull.ansible_job_id }}"
  42. register: job_result
  43. until: job_result.finished
  44. when:
  45. - node_image.stdout_lines == []
  46. - not openshift_is_atomic | bool
  47. retries: 20
  48. delay: 30
  49. failed_when: false