feat: add ansible-lint and yamlfmt

This commit is contained in:
2026-06-24 00:32:59 +01:00
parent 71214883fb
commit 687e061b93
14 changed files with 36 additions and 44 deletions
-2
View File
@@ -6,13 +6,11 @@
ansible.builtin.command: kubeadm token create --print-join-command
register: join_command_raw
changed_when: false # Reading/generating a token text string changes no host state
- name: Save join command globally
ansible.builtin.set_fact:
k8s_worker_join: "{{ join_command_raw.stdout }}"
delegate_to: localhost
delegate_facts: true
- name: Join Worker Nodes to Cluster
hosts: workers
gather_facts: false