diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2017-11-03 10:54:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-03 10:54:44 -0700 |
commit | 6d8a25425e0b011ac5bd6c54dca2a61f56e356c6 (patch) | |
tree | f9fed6c76d1d7189087ba06871ca678a137cf3a8 /roles/template_service_broker | |
parent | adb5c51666dfe7c6b93c7bd7c87b339ef2a27f5b (diff) | |
parent | 324778ac48522847280ac898553235f65e84ad6a (diff) | |
download | openshift-6d8a25425e0b011ac5bd6c54dca2a61f56e356c6.tar.gz openshift-6d8a25425e0b011ac5bd6c54dca2a61f56e356c6.tar.bz2 openshift-6d8a25425e0b011ac5bd6c54dca2a61f56e356c6.tar.xz openshift-6d8a25425e0b011ac5bd6c54dca2a61f56e356c6.zip |
Merge pull request #5959 from sdodson/sc-asb-tsb-on-by-default
Automatic merge from submit-queue.
Enable SC, ASB, TSB by default
It was decided that SC, ASB, and TSB should be installed by default.
This will not install the components on an upgrade from 3.6 to 3.7, that will require that you run the sc playbook on your own.
Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1508085
Diffstat (limited to 'roles/template_service_broker')
-rw-r--r-- | roles/template_service_broker/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/template_service_broker/tasks/main.yml b/roles/template_service_broker/tasks/main.yml index d7ca970c7..da8aa291b 100644 --- a/roles/template_service_broker/tasks/main.yml +++ b/roles/template_service_broker/tasks/main.yml @@ -2,7 +2,7 @@ # do any asserts here - include: install.yml - when: template_service_broker_install | default(false) | bool + when: template_service_broker_install | default(true) | bool - include: remove.yml when: template_service_broker_remove | default(false) | bool |