20 lines
652 B
Django/Jinja
20 lines
652 B
Django/Jinja
apiVersion: kubeadm.k8s.io/v1alpha2
|
|
kind: NodeConfiguration
|
|
clusterName: {{ cluster_name }}
|
|
discoveryFile: ""
|
|
caCertPath: {{ kube_config_dir }}/ssl/ca.crt
|
|
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 }}:6443
|
|
{% else %}
|
|
- {{ kubeadm_discovery_address | replace("https://", "")}}
|
|
{% endif %}
|
|
discoveryTokenUnsafeSkipCAVerification: true
|
|
nodeRegistration:
|
|
name: {{ inventory_hostname }}
|
|
{% if manage_crio %}
|
|
criSocket: /var/run/crio/crio.sock
|
|
{% endif %}
|