main.yml 958 B

1234567891011121314151617181920
  1. ---
  2. openshift_hosted_manage_registry_console: True
  3. l_os_cockpit_image_version_dict:
  4. origin: 'latest'
  5. openshift-enterprise: "{{ openshift_image_tag }}"
  6. l_os_cockpit_image_version: "{{ l_os_cockpit_image_version_dict[openshift_deployment_type] }}"
  7. l_os_cockpit_image_format: "{{ l_os_non_standard_reg_url | regex_replace('${version}' | regex_escape, l_os_cockpit_image_version) }}"
  8. l_openshift_cockit_search_dict:
  9. origin: "openshift/origin-${component}"
  10. openshift-enterprise: "ose-${component}"
  11. l_openshift_cockit_search: "{{ l_openshift_cockit_search_dict[openshift_deployment_type] }}"
  12. l_openshift_cockpit_replace_dict:
  13. origin: "cockpit/kubernetes"
  14. openshift-enterprise: "registry-console"
  15. l_openshift_cockpit_replace: "{{ l_openshift_cockpit_replace_dict[openshift_deployment_type] }}"
  16. openshift_cockpit_deployer_image: "{{ l_os_cockpit_image_format | regex_replace(l_openshift_cockit_search | regex_escape, l_openshift_cockpit_replace) }}"