main.yml 1.8 KB

123456789101112131415161718192021222324252627282930313233
  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. content_version: "{{ openshift_examples_content_version }}"
  9. examples_base: "{{ openshift.common.config_base if openshift_is_containerized | bool else '/usr/share/openshift' }}/examples"
  10. image_streams_base: "{{ examples_base }}/image-streams"
  11. centos_image_streams:
  12. - "{{ image_streams_base }}/image-streams-centos7.json"
  13. - "{{ image_streams_base }}/dotnet_imagestreams_centos.json"
  14. rhel_image_streams:
  15. - "{{ image_streams_base }}/image-streams-rhel7.json"
  16. - "{{ image_streams_base }}/dotnet_imagestreams.json"
  17. db_templates_base: "{{ examples_base }}/db-templates"
  18. xpaas_image_streams: "{{ examples_base }}/xpaas-streams/"
  19. xpaas_templates_base: "{{ examples_base }}/xpaas-templates"
  20. quickstarts_base: "{{ examples_base }}/quickstart-templates"
  21. infrastructure_origin_base: "{{ examples_base }}/infrastructure-templates/origin"
  22. infrastructure_enterprise_base: "{{ examples_base }}/infrastructure-templates/enterprise"
  23. cockpit_ui_base: "{{ examples_base }}/infrastructure-templates/enterprise"
  24. openshift_examples_import_command: "create"
  25. registry_host: "{{ openshift_examples_registryurl.split('/')[0] if '.' in openshift_examples_registryurl.split('/')[0] else '' }}"
  26. openshift_hosted_images_dict:
  27. origin: 'docker.io/openshift/origin-${component}:${version}'
  28. openshift-enterprise: 'registry.redhat.io/openshift3/ose-${component}:${version}'
  29. openshift_examples_registryurl: "{{ oreg_url | default(openshift_hosted_images_dict[openshift_deployment_type]) }}"