main.yml 1.4 KB

12345678910111213141516171819202122
  1. ---
  2. # By default install rhel and xpaas streams on enterprise installs
  3. openshift_examples_load_centos: "{{ openshift_deployment_type not in ['enterprise','openshift-enterprise','atomic-enterprise','online'] }}"
  4. openshift_examples_load_rhel: "{{ openshift_deployment_type in ['enterprise','openshift-enterprise','atomic-enterprise','online'] }}"
  5. openshift_examples_load_db_templates: true
  6. openshift_examples_load_xpaas: "{{ openshift_deployment_type in ['enterprise','openshift-enterprise','atomic-enterprise','online'] }}"
  7. openshift_examples_load_quickstarts: true
  8. content_version: "{{ 'v1.1' if openshift.common.version_greater_than_3_1_or_1_1 else 'v1.0' }}"
  9. examples_base: "{% if openshift.common.is_atomic %}{{ openshift.common.config_base }}{% else %}/usr/share/openshift{% endif %}/examples"
  10. image_streams_base: "{{ examples_base }}/image-streams"
  11. centos_image_streams: "{{ image_streams_base}}/image-streams-centos7.json"
  12. rhel_image_streams: "{{ image_streams_base}}/image-streams-rhel7.json"
  13. db_templates_base: "{{ examples_base }}/db-templates"
  14. xpaas_image_streams: "{{ examples_base }}/xpaas-streams/jboss-image-streams.json"
  15. xpaas_templates_base: "{{ examples_base }}/xpaas-templates"
  16. quickstarts_base: "{{ examples_base }}/quickstart-templates"
  17. infrastructure_origin_base: "{{ examples_base }}/infrastructure-templates/origin"
  18. infrastructure_enterprise_base: "{{ examples_base }}/infrastructure-templates/enterprise"
  19. openshift_examples_import_command: "create"