diff options
author | John T Skarbek <jtslear@gmail.com> | 2015-12-03 22:37:33 -0500 |
---|---|---|
committer | John T Skarbek <jtslear@gmail.com> | 2015-12-09 18:27:58 -0500 |
commit | 9fc1e7ac3e066add840be7691a9647f6157afe27 (patch) | |
tree | ac48f00fe5602dc3e9ea12b85431560057dc4aac /playbooks/common/openshift-master | |
parent | bc10731cb98eb4169c430de24044783c7c5183cd (diff) | |
download | openshift-9fc1e7ac3e066add840be7691a9647f6157afe27.tar.gz openshift-9fc1e7ac3e066add840be7691a9647f6157afe27.tar.bz2 openshift-9fc1e7ac3e066add840be7691a9647f6157afe27.tar.xz openshift-9fc1e7ac3e066add840be7691a9647f6157afe27.zip |
Make the install of openshift_examples optional
* Allows us to make it optional to run the role `openshift_examples`
* Defaults to true
Diffstat (limited to 'playbooks/common/openshift-master')
-rw-r--r-- | playbooks/common/openshift-master/config.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/playbooks/common/openshift-master/config.yml b/playbooks/common/openshift-master/config.yml index becd68dbe..a537797b6 100644 --- a/playbooks/common/openshift-master/config.yml +++ b/playbooks/common/openshift-master/config.yml @@ -349,7 +349,8 @@ roles: - role: openshift_master_cluster when: openshift_master_ha | bool and openshift.master.cluster_method == "pacemaker" - - openshift_examples + - role: openshift_examples + when: openshift.common.install_examples | bool - role: openshift_cluster_metrics when: openshift.common.use_cluster_metrics | bool - role: openshift_manageiq |