summaryrefslogtreecommitdiffstats
path: root/roles/openshift_master
diff options
context:
space:
mode:
authorJim Minter <jminter@redhat.com>2017-04-24 15:01:09 +0100
committerJim Minter <jminter@redhat.com>2017-04-24 15:01:09 +0100
commitbef8371a73fe056b7b93971ee5574721e5465c8e (patch)
tree69032376a4b7f2203e943cd7675916cb2bfc7227 /roles/openshift_master
parente751716689385f0cfc8f4a1261bf6f8609197a83 (diff)
downloadopenshift-bef8371a73fe056b7b93971ee5574721e5465c8e.tar.gz
openshift-bef8371a73fe056b7b93971ee5574721e5465c8e.tar.bz2
openshift-bef8371a73fe056b7b93971ee5574721e5465c8e.tar.xz
openshift-bef8371a73fe056b7b93971ee5574721e5465c8e.zip
add template service broker configurable
Diffstat (limited to 'roles/openshift_master')
-rw-r--r--roles/openshift_master/templates/master.yaml.v1.j27
1 files changed, 7 insertions, 0 deletions
diff --git a/roles/openshift_master/templates/master.yaml.v1.j2 b/roles/openshift_master/templates/master.yaml.v1.j2
index 938ac2a12..acde35918 100644
--- a/roles/openshift_master/templates/master.yaml.v1.j2
+++ b/roles/openshift_master/templates/master.yaml.v1.j2
@@ -274,5 +274,12 @@ servingInfo:
- {{ cipher_suite }}
{% endfor %}
{% endif %}
+{% if openshift_template_service_broker_namespaces is defined %}
+templateServiceBrokerConfig:
+ templateNamespaces:
+{% for namespace in openshift_template_service_broker_namespaces %}
+ - {{ namespace }}
+{% endfor %}
+{% endif %}
volumeConfig:
dynamicProvisioningEnabled: {{ openshift.master.dynamic_provisioning_enabled }}