summaryrefslogtreecommitdiffstats
path: root/roles
diff options
context:
space:
mode:
authorJason DeTiberus <jdetiber@redhat.com>2015-08-22 23:37:44 -0400
committerJason DeTiberus <jdetiber@redhat.com>2015-08-22 23:37:44 -0400
commit3ea281da43514e5909256310a504820ff82dd401 (patch)
tree01a3277f788f4f8f2426370d4ebc333e466e51c3 /roles
parent922b87ede66f6b7e376d1f46e13327077cd41719 (diff)
downloadopenshift-3ea281da43514e5909256310a504820ff82dd401.tar.gz
openshift-3ea281da43514e5909256310a504820ff82dd401.tar.bz2
openshift-3ea281da43514e5909256310a504820ff82dd401.tar.xz
openshift-3ea281da43514e5909256310a504820ff82dd401.zip
fix apiServerArguments and controllerServerArguments
Diffstat (limited to 'roles')
-rw-r--r--roles/openshift_master/templates/master.yaml.v1.j210
1 files changed, 2 insertions, 8 deletions
diff --git a/roles/openshift_master/templates/master.yaml.v1.j2 b/roles/openshift_master/templates/master.yaml.v1.j2
index 44567aa22..7a8194d13 100644
--- a/roles/openshift_master/templates/master.yaml.v1.j2
+++ b/roles/openshift_master/templates/master.yaml.v1.j2
@@ -2,9 +2,6 @@ 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 }}
@@ -16,9 +13,6 @@ 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 }}
@@ -74,8 +68,8 @@ kubernetesMasterConfig:
apiLevels:
- v1beta3
- v1
- apiServerArguments: null
- controllerArguments: null
+ apiServerArguments: {{ api_server_args if api_server_args is defined else null }}
+ controllerArguments: {{ controller_args if controller_args is defined else null }}
{# TODO: support overriding masterCount #}
masterCount: 1
masterIP: ""