9 lines
220 B
YAML
9 lines
220 B
YAML
- name: Check if node joined
|
|
stat:
|
|
path: /etc/kubernetes/kubelet.conf
|
|
register: kubelet_conf
|
|
|
|
- name: Join node
|
|
shell: "{{ hostvars[groups['master'][0]]['join_command'] }}"
|
|
when: not kubelet_conf.stat.exists
|