23 lines
777 B
Django/Jinja
23 lines
777 B
Django/Jinja
apiVersion: kubeadm.k8s.io/v1alpha2
|
|
kind: NodeConfiguration
|
|
clusterName: {{ cluster_name }}
|
|
discoveryFile: ""
|
|
caCertPath: {{ kube_cert_dir }}/ca.crt
|
|
discoveryTimeout: {{ discovery_timeout }}
|
|
discoveryToken: {{ kubeadm_token }}
|
|
tlsBootstrapToken: {{ kubeadm_token }}
|
|
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 %}
|
|
discoveryTokenUnsafeSkipCAVerification: true
|
|
nodeRegistration:
|
|
name: {{ kube_override_hostname }}
|
|
{% if container_manager == 'crio' %}
|
|
criSocket: /var/run/crio/crio.sock
|
|
{% else %}
|
|
criSocket: /var/run/dockershim.sock
|
|
{% endif %}
|