mirror of
https://github.com/Expand-sys/kubernetes-rocky9
synced 2025-12-16 07:42:12 +11:00
16 lines
399 B
YAML
16 lines
399 B
YAML
- hosts: workers
|
|
become: yes
|
|
gather_facts: yes
|
|
|
|
tasks:
|
|
- name: Copy join command from Ansiblehost to the worker nodes.
|
|
become: yes
|
|
copy:
|
|
src: /tmp/kubernetes_join_command
|
|
dest: /tmp/kubernetes_join_command
|
|
mode: 0777
|
|
|
|
- name: Join the Worker nodes to the cluster.
|
|
become: yes
|
|
command: sh /tmp/kubernetes_join_command
|
|
register: joined_or_not
|