main.yml 1.5 KB

12345678910111213141516171819202122232425262728
  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.common.examples_content_version }}"
  9. examples_base: "{{ openshift.common.config_base if openshift.common.is_containerized | bool else '/usr/share/openshift' }}/examples"
  10. image_streams_base: "{{ examples_base }}/image-streams"
  11. centos_image_streams: "{{ image_streams_base}}/image-streams-centos7.json"
  12. rhel_image_streams:
  13. - "{{ image_streams_base}}/image-streams-rhel7.json"
  14. - "{{ image_streams_base}}/dotnet_imagestreams.json"
  15. db_templates_base: "{{ examples_base }}/db-templates"
  16. xpaas_image_streams: "{{ examples_base }}/xpaas-streams/"
  17. xpaas_templates_base: "{{ examples_base }}/xpaas-templates"
  18. quickstarts_base: "{{ examples_base }}/quickstart-templates"
  19. infrastructure_origin_base: "{{ examples_base }}/infrastructure-templates/origin"
  20. infrastructure_enterprise_base: "{{ examples_base }}/infrastructure-templates/enterprise"
  21. cockpit_ui_base: "{{ examples_base }}/infrastructure-templates/enterprise"
  22. openshift_examples_import_command: "create"
  23. registry_url: ""
  24. registry_host: "{{ registry_url.split('/')[0] if '.' in registry_url.split('/')[0] else '' }}"