2018-08-14 12:13:44 +00:00
|
|
|
apiVersion: kubeadm.k8s.io/v1alpha2
|
|
|
|
kind: NodeConfiguration
|
|
|
|
clusterName: {{ cluster_name }}
|
|
|
|
discoveryFile: ""
|
|
|
|
caCertPath: {{ kube_config_dir }}/ssl/ca.crt
|
2018-09-07 05:54:12 +00:00
|
|
|
discoveryTimeout: {{ discovery_timeout }}
|
2018-08-14 12:13:44 +00:00
|
|
|
discoveryToken: {{ kubeadm_token }}
|
|
|
|
tlsBootstrapToken: {{ kubeadm_token }}
|
|
|
|
token: {{ kubeadm_token }}
|
|
|
|
discoveryTokenAPIServers:
|
2018-08-20 13:17:48 +00:00
|
|
|
{% if groups['kube-master'] | length > 1 and kubeadm_config_api_fqdn is defined %}
|
2018-09-01 16:02:52 +00:00
|
|
|
- {{ kubeadm_config_api_fqdn }}:{{ loadbalancer_apiserver.port | default(kube_apiserver_port) }}
|
2018-08-20 13:17:48 +00:00
|
|
|
{% else %}
|
2018-08-14 12:13:44 +00:00
|
|
|
- {{ kubeadm_discovery_address | replace("https://", "")}}
|
2018-08-20 13:17:48 +00:00
|
|
|
{% endif %}
|
2018-08-14 12:13:44 +00:00
|
|
|
discoveryTokenUnsafeSkipCAVerification: true
|
|
|
|
nodeRegistration:
|
|
|
|
name: {{ inventory_hostname }}
|
2018-08-28 06:23:38 +00:00
|
|
|
{% if container_manager == 'crio' %}
|
2018-08-28 02:24:45 +00:00
|
|
|
criSocket: /var/run/crio/crio.sock
|
2018-11-21 09:35:40 +00:00
|
|
|
{% elif container_manager == 'rkt' %}
|
|
|
|
criSocket: /var/run/rkt.sock
|
|
|
|
{% else %}
|
|
|
|
criSocket: /var/run/dockershim.sock
|
2018-08-28 02:24:45 +00:00
|
|
|
{% endif %}
|