6ebcaab2bb
* controlPlaneEndpoint set up through load balancer should be possible even in single master setups Enable load balancer for single-master setups Fixes an issue where single-master setups are not reachable using the usual admin.conf from outside the cluster. controlPlaneEndpoint set up through load balancer should be possible even in single master setups * add fix to other api versions * remove obsolete check completely * remove check, pass 2 * removes checks in client configuration * delete 'and'
12 lines
441 B
Django/Jinja
12 lines
441 B
Django/Jinja
apiVersion: kubeadm.k8s.io/v1alpha1
|
|
kind: NodeConfiguration
|
|
caCertPath: {{ kube_cert_dir }}/ca.crt
|
|
token: {{ kubeadm_token }}
|
|
discoveryTokenAPIServers:
|
|
{% if kubeadm_config_api_fqdn is defined %}
|
|
- {{ kubeadm_config_api_fqdn }}:{{ loadbalancer_apiserver.port | default(kube_apiserver_port) }}
|
|
{% else %}
|
|
- {{ kubeadm_discovery_address | replace("https://", "")}}
|
|
{% endif %}
|
|
discoveryTokenCACertHashes:
|
|
- sha256:{{ kubeadm_ca_hash.stdout }}
|