24 lines
819 B
Text
24 lines
819 B
Text
|
apiVersion: kubeadm.k8s.io/v1alpha3
|
||
|
kind: JoinConfiguration
|
||
|
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
|
||
|
{% else %}
|
||
|
criSocket: /var/run/dockershim.sock
|
||
|
{% endif %}
|