main.yml 904 B

12345678910111213141516
  1. ---
  2. # By default install rhel and xpaas streams on enterprise installs
  3. openshift_examples_load_centos: "{{ openshift_deployment_type != 'enterprise' }}"
  4. openshift_examples_load_rhel: "{{ openshift_deployment_type == 'enterprise' }}"
  5. openshift_examples_load_db_templates: true
  6. openshift_examples_load_xpaas: "{{ openshift_deployment_type == 'enterprise' }}"
  7. openshift_examples_load_quickstarts: true
  8. examples_base: /usr/share/openshift/examples
  9. image_streams_base: "{{ examples_base }}/image-streams"
  10. centos_image_streams: "{{ image_streams_base}}/image-streams-centos7.json"
  11. rhel_image_streams: "{{ image_streams_base}}/image-streams-rhel7.json"
  12. db_templates_base: "{{ examples_base }}/db-templates"
  13. xpaas_image_streams: "{{ examples_base }}/xpaas-streams/jboss-image-streams.json"
  14. xpaas_templates_base: "{{ examples_base }}/xpaas-templates"
  15. quickstarts_base: "{{ examples_base }}/quickstart-templates"