diff options
author | Scott Dodson <sdodson@redhat.com> | 2015-10-08 17:52:01 -0400 |
---|---|---|
committer | Scott Dodson <sdodson@redhat.com> | 2015-10-20 12:05:05 -0400 |
commit | 94c2ba099a87c3dc6b87f9bf916c1282a7266e45 (patch) | |
tree | f1620bdc44784761c56773537bb5215db9393016 /roles/openshift_examples/defaults | |
parent | 25354bb8f15efb829174ad53d56a31ff2fc95be9 (diff) | |
download | openshift-94c2ba099a87c3dc6b87f9bf916c1282a7266e45.tar.gz openshift-94c2ba099a87c3dc6b87f9bf916c1282a7266e45.tar.bz2 openshift-94c2ba099a87c3dc6b87f9bf916c1282a7266e45.tar.xz openshift-94c2ba099a87c3dc6b87f9bf916c1282a7266e45.zip |
Adjust the logic as to when examples are deployed
Diffstat (limited to 'roles/openshift_examples/defaults')
-rw-r--r-- | roles/openshift_examples/defaults/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/openshift_examples/defaults/main.yml b/roles/openshift_examples/defaults/main.yml index 7d4f100e3..caab9b8d6 100644 --- a/roles/openshift_examples/defaults/main.yml +++ b/roles/openshift_examples/defaults/main.yml @@ -1,9 +1,9 @@ --- # By default install rhel and xpaas streams on enterprise installs -openshift_examples_load_centos: "{{ openshift_deployment_type != 'enterprise' }}" -openshift_examples_load_rhel: "{{ openshift_deployment_type == 'enterprise' }}" +openshift_examples_load_centos: "{{ openshift_deployment_type not in ['enterprise','openshift-enterprise','atomic-enterprise'] }}" +openshift_examples_load_rhel: "{{ openshift_deployment_type in ['enterprise','openshift-enterprise','atomic-enterprise'] }}" openshift_examples_load_db_templates: true -openshift_examples_load_xpaas: "{{ openshift_deployment_type == 'enterprise' }}" +openshift_examples_load_xpaas: "{{ openshift_deployment_type in ['enterprise','openshift-enterprise','atomic-enterprise'] }}" openshift_examples_load_quickstarts: true examples_base: /usr/share/openshift/examples |