This commit is contained in:
DeveloperDurp 2026-02-10 06:00:31 -06:00
parent 2358f7eebc
commit aaa82a3677

View file

@ -42,7 +42,7 @@
command:
cmd: k3s kubectl get nodes -l "node-role.kubernetes.io/master=true" -o=jsonpath="{.items[*].metadata.name}"
register: nodes
until: nodes.rc == 0 and (nodes.stdout.split() | length) == (groups['master_group'] | length)
until: nodes.rc == 0 and (nodes.stdout.split() | length) == (groups[master_group] | length)
retries: "{{ retry_count | default(20) }}"
delay: 10
changed_when: false