main.yml 1.8 KB

12345678910111213141516171819202122232425262728293031
  1. ---
  2. # By default install rhel and xpaas streams on enterprise installs
  3. openshift_examples_load_centos: "{{ openshift_deployment_type == 'origin' }}"
  4. openshift_examples_load_rhel: "{{ openshift_deployment_type != 'origin' }}"
  5. openshift_examples_load_db_templates: true
  6. openshift_examples_load_xpaas: "{{ openshift_deployment_type != 'origin' }}"
  7. openshift_examples_load_quickstarts: true
  8. examples_base: "{{ openshift.common.config_base if openshift_is_containerized | bool else '/usr/share/openshift' }}/examples"
  9. image_streams_base: "{{ examples_base }}/image-streams"
  10. centos_image_streams:
  11. - "{{ image_streams_base }}/image-streams-centos7.json"
  12. - "{{ image_streams_base }}/dotnet_imagestreams_centos.json"
  13. rhel_image_streams:
  14. - "{{ image_streams_base }}/image-streams-rhel7.json"
  15. - "{{ image_streams_base }}/dotnet_imagestreams.json"
  16. db_templates_base: "{{ examples_base }}/db-templates"
  17. xpaas_image_streams: "{{ examples_base }}/xpaas-streams/"
  18. xpaas_templates_base: "{{ examples_base }}/xpaas-templates"
  19. quickstarts_base: "{{ examples_base }}/quickstart-templates"
  20. infrastructure_origin_base: "{{ examples_base }}/infrastructure-templates/origin"
  21. infrastructure_enterprise_base: "{{ examples_base }}/infrastructure-templates/enterprise"
  22. cockpit_ui_base: "{{ examples_base }}/infrastructure-templates/enterprise"
  23. openshift_examples_import_command: "create"
  24. registry_host: "{{ openshift_examples_registryurl.split('/')[0] if '.' in openshift_examples_registryurl.split('/')[0] else '' }}"
  25. openshift_hosted_images_dict:
  26. origin: 'docker.io/openshift/origin-${component}:${version}'
  27. openshift-enterprise: 'registry.redhat.io/openshift3/ose-${component}:${version}'
  28. openshift_examples_registryurl: "{{ oreg_url | default(openshift_hosted_images_dict[openshift_deployment_type]) }}"