|
@@ -24,45 +24,6 @@ authConfig:
|
|
|
- X-Remote-Extra-
|
|
|
apiLevels:
|
|
|
- v1
|
|
|
-{% if not openshift_version_gte_3_9 %}
|
|
|
-assetConfig:
|
|
|
- logoutURL: "{{ openshift.master.logout_url | default('') }}"
|
|
|
- masterPublicURL: {{ openshift.master.public_api_url }}
|
|
|
- publicURL: {{ openshift.master.public_console_url }}/
|
|
|
-{% if 'logging_public_url' in openshift.master %}
|
|
|
- loggingPublicURL: {{ openshift.master.logging_public_url }}
|
|
|
-{% endif %}
|
|
|
-{% if openshift_hosted_metrics_deploy_url is defined %}
|
|
|
- metricsPublicURL: {{ openshift_hosted_metrics_deploy_url }}
|
|
|
-{% endif %}
|
|
|
-{% if 'extension_scripts' in openshift.master %}
|
|
|
- extensionScripts: {{ openshift.master.extension_scripts | lib_utils_to_padded_yaml(1, 2) }}
|
|
|
-{% endif %}
|
|
|
-{% if 'extension_stylesheets' in openshift.master %}
|
|
|
- extensionStylesheets: {{ openshift.master.extension_stylesheets | lib_utils_to_padded_yaml(1, 2) }}
|
|
|
-{% endif %}
|
|
|
-{% if 'extensions' in openshift.master %}
|
|
|
- extensions: {{ openshift.master.extensions | lib_utils_to_padded_yaml(1, 2) }}
|
|
|
-{% endif %}
|
|
|
- servingInfo:
|
|
|
- bindAddress: {{ openshift.master.bind_addr }}:{{ openshift.master.console_port }}
|
|
|
- bindNetwork: tcp4
|
|
|
- certFile: master.server.crt
|
|
|
- clientCA: ""
|
|
|
- keyFile: master.server.key
|
|
|
- maxRequestsInFlight: 0
|
|
|
- requestTimeoutSeconds: 0
|
|
|
-{% if openshift_master_min_tls_version is defined %}
|
|
|
- minTLSVersion: {{ openshift_master_min_tls_version }}
|
|
|
-{% endif %}
|
|
|
-{% if openshift_master_cipher_suites is defined %}
|
|
|
- cipherSuites:
|
|
|
-{% for cipher_suite in openshift_master_cipher_suites %}
|
|
|
- - {{ cipher_suite }}
|
|
|
-{% endfor %}
|
|
|
-{% endif %}
|
|
|
-# assetconfig end
|
|
|
-{% endif %}
|
|
|
{% if openshift.master.audit_config | default(none) is not none %}
|
|
|
auditConfig:{{ openshift.master.audit_config | lib_utils_to_padded_yaml(level=1) }}
|
|
|
{% endif %}
|
|
@@ -121,7 +82,7 @@ kubernetesMasterConfig:
|
|
|
storage-media-type:
|
|
|
- application/vnd.kubernetes.protobuf
|
|
|
controllerArguments: {{ openshift.master.controller_args | default(None) | lib_utils_to_padded_yaml( level=2 ) }}
|
|
|
- masterCount: {{ openshift.master.master_count }}
|
|
|
+ masterCount: {{ openshift_master_count | default(groups.oo_masters | length) }}
|
|
|
masterIP: {{ openshift.common.ip }}
|
|
|
podEvictionTimeout: {{ openshift.master.pod_eviction_timeout | default("") }}
|
|
|
proxyClientInfo:
|
|
@@ -185,7 +146,7 @@ oauthConfig:
|
|
|
sessionConfig:
|
|
|
sessionMaxAgeSeconds: {{ openshift.master.session_max_seconds }}
|
|
|
sessionName: {{ openshift.master.session_name }}
|
|
|
- sessionSecretsFile: {{ openshift.master.session_secrets_file }}
|
|
|
+ sessionSecretsFile: {{ openshift_master_session_secrets_file }}
|
|
|
tokenConfig:
|
|
|
accessTokenMaxAgeSeconds: {{ openshift.master.access_token_max_seconds }}
|
|
|
authorizeTokenMaxAgeSeconds: {{ openshift.master.auth_token_max_seconds }}
|