vagrant/k8s/kubernetes-setup/node-playbook.yml
2022-12-29 15:23:42 +01:00

21 lines
362 B
YAML

---
- hosts: all
become: true
tasks:
- include_tasks: common.yml
- name: Copy the join command to server location
copy:
src: join-command
dest: /tmp/join-command.sh
mode: 0777
- name: Join the node to cluster
command: sh /tmp/join-command.sh
- name: docker status
service:
name: docker
state: started