main.yml 1.5 KB

123456789101112131415161718192021222324252627282930
  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:
  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_url: ""
  26. registry_host: "{{ registry_url.split('/')[0] if '.' in registry_url.split('/')[0] else '' }}"