node_system_container.yml 2.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. - name: Pre-pull node system container image
  8. command: >
  9. atomic pull --storage=ostree {{ 'docker:' if system_images_registry == 'docker' else system_images_registry + '/' }}{{ osn_image }}:{{ openshift_image_tag }}
  10. register: pull_result
  11. changed_when: "'Pulling layer' in pull_result.stdout"
  12. # TODO: remove when system container is fixed to not include it
  13. - name: Ensure old system path is set
  14. file:
  15. state: directory
  16. path: "/etc/origin/openvswitch"
  17. mode: '0750'
  18. - name: Install or Update node system container
  19. oc_atomic_container:
  20. name: "{{ openshift_service_type }}-node"
  21. image: "{{ 'docker:' if system_images_registry == 'docker' else system_images_registry + '/' }}{{ osn_image }}:{{ openshift_image_tag }}"
  22. values:
  23. - "DNS_DOMAIN={{ openshift.common.dns_domain }}"
  24. - "DOCKER_SERVICE={{ openshift_docker_service_name }}.service"
  25. - "MASTER_SERVICE={{ openshift_service_type }}-master-controllers.service"
  26. - 'ADDTL_MOUNTS={{ l_node_syscon_add_mounts2 }}'
  27. state: latest
  28. vars:
  29. # We need to evaluate some variables here to ensure
  30. # l_bind_docker_reg_auth is evaluated after registry_auth.yml has been
  31. # processed.
  32. # Determine if we want to include auth credentials mount.
  33. l_node_syscon_auth_mounts_l: "{{ l_bind_docker_reg_auth | ternary(openshift_node_syscon_auth_mounts_l,[]) }}"
  34. # Join any user-provided mounts and auth_mounts into a combined list.
  35. l_node_syscon_add_mounts_l: "{{ openshift_node_syscon_add_mounts_l | union(l_node_syscon_auth_mounts_l) }}"
  36. # We must prepend a ',' here to ensure the value is inserted properly into an
  37. # existing json list in the container's config.json
  38. # lib_utils_oo_l_of_d_to_csv is a custom filter plugin in roles/lib_utils/oo_filters.py
  39. l_node_syscon_add_mounts: ",{{ l_node_syscon_add_mounts_l | lib_utils_oo_l_of_d_to_csv }}"
  40. # if we have just a ',' then both mount lists were empty, we don't want to add
  41. # anything to config.json
  42. l_node_syscon_add_mounts2: "{{ (l_node_syscon_add_mounts != ',') | bool | ternary(l_node_syscon_add_mounts,'') }}"