summaryrefslogtreecommitdiffstats
path: root/roles/openshift_master/templates
diff options
context:
space:
mode:
authorJason DeTiberus <jdetiber@redhat.com>2015-08-12 22:01:06 -0400
committerJason DeTiberus <jdetiber@redhat.com>2015-08-13 13:47:54 -0400
commit800256e451b112d3cd7c2356615572c0de3c3840 (patch)
treec75e72a5f5c35fc23ad90a23420699efa833ef85 /roles/openshift_master/templates
parent1399425c70052445cc8659fd12cd19535fb95e5a (diff)
downloadopenshift-800256e451b112d3cd7c2356615572c0de3c3840.tar.gz
openshift-800256e451b112d3cd7c2356615572c0de3c3840.tar.bz2
openshift-800256e451b112d3cd7c2356615572c0de3c3840.tar.xz
openshift-800256e451b112d3cd7c2356615572c0de3c3840.zip
Add support for setting kubeletArguments, controllerArguments, and apiServerArguments
Diffstat (limited to 'roles/openshift_master/templates')
-rw-r--r--roles/openshift_master/templates/master.yaml.v1.j26
1 files changed, 6 insertions, 0 deletions
diff --git a/roles/openshift_master/templates/master.yaml.v1.j2 b/roles/openshift_master/templates/master.yaml.v1.j2
index b5e3d2f05..44567aa22 100644
--- a/roles/openshift_master/templates/master.yaml.v1.j2
+++ b/roles/openshift_master/templates/master.yaml.v1.j2
@@ -2,6 +2,9 @@ apiLevels:
- v1beta3
- v1
apiVersion: v1
+{% if api_server_args is defined and api_server_args %}
+apiServerArguments: {{ api_server_args }}
+{% endif %}
assetConfig:
logoutURL: ""
masterPublicURL: {{ openshift.master.public_api_url }}
@@ -13,6 +16,9 @@ assetConfig:
keyFile: master.server.key
maxRequestsInFlight: 0
requestTimeoutSeconds: 0
+{% if controller_args is defined and controller_args %}
+controllerArguments: {{ controller_args }}
+{% endif %}
corsAllowedOrigins:
{% for origin in ['127.0.0.1', 'localhost', openshift.common.hostname, openshift.common.ip, openshift.common.public_hostname, openshift.common.public_ip] %}
- {{ origin }}