0f63924ed4
https://godoc.org/k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/v1alpha2#JoinConfiguration
21 lines
770 B
Django/Jinja
21 lines
770 B
Django/Jinja
apiVersion: kubeadm.k8s.io/v1alpha2
|
|
kind: NodeConfiguration
|
|
clusterName: {{ cluster_name }}
|
|
discoveryFile: ""
|
|
caCertPath: {{ kube_config_dir }}/ssl/ca.crt
|
|
discoveryTimeout: {{ discovery_timeout }}
|
|
discoveryToken: {{ kubeadm_token }}
|
|
tlsBootstrapToken: {{ kubeadm_token }}
|
|
token: {{ kubeadm_token }}
|
|
discoveryTokenAPIServers:
|
|
{% if groups['kube-master'] | length > 1 and 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: {{ inventory_hostname }}
|
|
{% if container_manager == 'crio' %}
|
|
criSocket: /var/run/crio/crio.sock
|
|
{% endif %}
|