8 lines
204 B
YAML
8 lines
204 B
YAML
---
|
|
- name: Store kube configuration
|
|
ansible.builtin.fetch:
|
|
src: ~/.kube/config
|
|
dest: ~/.kube/config
|
|
flat: true
|
|
when: ansible_hostname == hostvars[groups['master'][0]]['ansible_hostname']
|