parent
e7cc686beb
commit
a02e9206fe
2 changed files with 7 additions and 0 deletions
|
@ -27,6 +27,11 @@ bin_dir: /usr/local/bin
|
||||||
# valid options are "nginx" or "haproxy"
|
# valid options are "nginx" or "haproxy"
|
||||||
# loadbalancer_apiserver_type: nginx # valid values "nginx" or "haproxy"
|
# loadbalancer_apiserver_type: nginx # valid values "nginx" or "haproxy"
|
||||||
|
|
||||||
|
## If the cilium is going to be used in strict mode, we can use the
|
||||||
|
## localhost connection and not use the external LB. If this parameter is
|
||||||
|
## not specified, the first node to connect to kubeapi will be used.
|
||||||
|
# use_localhost_as_kubeapi_loadbalancer: true
|
||||||
|
|
||||||
## Local loadbalancer should use this port
|
## Local loadbalancer should use this port
|
||||||
## And must be set port 6443
|
## And must be set port 6443
|
||||||
loadbalancer_apiserver_port: 6443
|
loadbalancer_apiserver_port: 6443
|
||||||
|
|
|
@ -442,6 +442,8 @@ apiserver_loadbalancer_domain_name: "lb-apiserver.kubernetes.local"
|
||||||
kube_apiserver_global_endpoint: |-
|
kube_apiserver_global_endpoint: |-
|
||||||
{% if loadbalancer_apiserver is defined -%}
|
{% if loadbalancer_apiserver is defined -%}
|
||||||
https://{{ apiserver_loadbalancer_domain_name }}:{{ loadbalancer_apiserver.port|default(kube_apiserver_port) }}
|
https://{{ apiserver_loadbalancer_domain_name }}:{{ loadbalancer_apiserver.port|default(kube_apiserver_port) }}
|
||||||
|
{%- elif use_localhost_as_kubeapi_loadbalancer is defined -%}
|
||||||
|
https://127.0.0.1:{{ kube_apiserver_port }}
|
||||||
{%- else -%}
|
{%- else -%}
|
||||||
https://{{ first_kube_master }}:{{ kube_apiserver_port }}
|
https://{{ first_kube_master }}:{{ kube_apiserver_port }}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
Loading…
Reference in a new issue