node_system_container.yml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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: 30
  26. - name: Copy node container image to ostree storage
  27. command: >
  28. atomic pull --storage=ostree docker:{{ osn_image }}
  29. register: pull_result
  30. retries: 3
  31. delay: 5
  32. until: pull_result.rc == 0
  33. changed_when: "'Pulling layer' in pull_result.stdout"
  34. - name: Install or Update node system container
  35. oc_atomic_container:
  36. name: "{{ openshift_service_type }}-node"
  37. image: "{{ system_osn_image }}"
  38. values:
  39. - "DNS_DOMAIN={{ openshift.common.dns_domain }}"
  40. - "DOCKER_SERVICE={{ openshift_docker_service_name }}.service"
  41. - 'ADDTL_MOUNTS={{ l_node_syscon_add_mounts2 }}'
  42. state: latest
  43. vars:
  44. # We need to evaluate some variables here to ensure
  45. # l_bind_docker_reg_auth is evaluated after registry_auth.yml has been
  46. # processed.
  47. # Determine if we want to include auth credentials mount.
  48. l_node_syscon_auth_mounts_l: "{{ l_bind_docker_reg_auth | ternary(openshift_node_syscon_auth_mounts_l,[]) }}"
  49. # Join any user-provided mounts and auth_mounts into a combined list.
  50. l_node_syscon_add_mounts_l: "{{ openshift_node_syscon_add_mounts_l | union(l_node_syscon_auth_mounts_l) }}"
  51. # We must prepend a ',' here to ensure the value is inserted properly into an
  52. # existing json list in the container's config.json
  53. # lib_utils_oo_l_of_d_to_csv is a custom filter plugin in roles/lib_utils/oo_filters.py
  54. l_node_syscon_add_mounts: ",{{ l_node_syscon_add_mounts_l | lib_utils_oo_l_of_d_to_csv }}"
  55. # if we have just a ',' then both mount lists were empty, we don't want to add
  56. # anything to config.json
  57. l_node_syscon_add_mounts2: "{{ (l_node_syscon_add_mounts != ',') | bool | ternary(l_node_syscon_add_mounts,'') }}"
  58. # TODO: network manager on RHEL is failing to execute 99-origin-dns.sh with signal 13, an immediate
  59. # restart seems to allow the job to configure. Only occurs with system containers.
  60. - name: Restart network manager to ensure networking configuration is in place
  61. systemd:
  62. name: NetworkManager
  63. enabled: yes
  64. state: restarted