node_system_container.yml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. ---
  2. # system containers create their own service unit files based on templates
  3. # that are part of the container image.
  4. # oc_atomic_container will create a systemd service unit file in
  5. # /etc/systemd/system/origin-node.service (origin) or
  6. # /etc/systemd/system/atomic-openshift-node.service (enterprise)
  7. # TODO: remove when system container is fixed to not include it
  8. - name: Ensure old system path is set
  9. file:
  10. state: directory
  11. path: "{{ item }}"
  12. mode: '0750'
  13. with_items:
  14. - "/etc/origin/openvswitch"
  15. - "/var/lib/kubelet"
  16. - "/opt/cni/bin"
  17. - name: Check status of node image pre-pull
  18. async_status:
  19. jid: "{{ image_prepull.ansible_job_id }}"
  20. register: job_result
  21. until: job_result.finished
  22. when:
  23. - node_image is defined
  24. - node_image.stdout_lines == []
  25. retries: 20
  26. delay: 30
  27. failed_when: false
  28. - name: Copy node container image to ostree storage
  29. command: >
  30. atomic pull --storage=ostree docker:{{ osn_image }}
  31. register: pull_result
  32. retries: 3
  33. delay: 5
  34. until: pull_result.rc == 0
  35. changed_when: "'Pulling layer' in pull_result.stdout"
  36. - import_tasks: node_system_container_install.yml
  37. # TODO: network manager on RHEL is failing to execute 99-origin-dns.sh with signal 13, an immediate
  38. # restart seems to allow the job to configure. Only occurs with system containers.
  39. - name: Restart network manager to ensure networking configuration is in place
  40. systemd:
  41. name: NetworkManager
  42. enabled: yes
  43. state: restarted