node_system_container_install.yml 1.4 KB

12345678910111213141516171819202122232425262728
  1. ---
  2. - name: Install or Update node system container
  3. oc_atomic_container:
  4. name: "{{ openshift_service_type }}-node"
  5. image: "{{ system_osn_image }}"
  6. values:
  7. - "DNS_DOMAIN={{ openshift.common.dns_domain }}"
  8. - "DOCKER_SERVICE={{ openshift_docker_service_name }}.service"
  9. - 'ADDTL_MOUNTS={{ l_node_syscon_add_mounts2 }}'
  10. state: latest
  11. vars:
  12. # We need to evaluate some variables here to ensure
  13. # l_bind_docker_reg_auth is evaluated after registry_auth.yml has been
  14. # processed.
  15. # Determine if we want to include auth credentials mount.
  16. l_node_syscon_auth_mounts_l: "{{ l_bind_docker_reg_auth | ternary(openshift_node_syscon_auth_mounts_l,[]) }}"
  17. # Join any user-provided mounts and auth_mounts into a combined list.
  18. l_node_syscon_add_mounts_l: "{{ openshift_node_syscon_add_mounts_l | union(l_node_syscon_auth_mounts_l) }}"
  19. # We must prepend a ',' here to ensure the value is inserted properly into an
  20. # existing json list in the container's config.json
  21. # lib_utils_oo_l_of_d_to_csv is a custom filter plugin in roles/lib_utils/oo_filters.py
  22. l_node_syscon_add_mounts: ",{{ l_node_syscon_add_mounts_l | lib_utils_oo_l_of_d_to_csv }}"
  23. # if we have just a ',' then both mount lists were empty, we don't want to add
  24. # anything to config.json
  25. l_node_syscon_add_mounts2: "{{ (l_node_syscon_add_mounts != ',') | bool | ternary(l_node_syscon_add_mounts,'') }}"