Finetune loop_control
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Danny Bessems 2022-04-22 23:31:35 +02:00
parent 0e98e23514
commit ae49bffb2d
1 changed files with 3 additions and 1 deletions

View File

@ -82,6 +82,8 @@
cmd: "ssh-keyscan -t rsa {{ item.ip }}"
register: publickeys
loop: "{{ nodes }}"
loop_control:
label: "{{ { 'name': item.name, 'ip': item.ip } }}"
- name: Store public keys
ansible.builtin.known_hosts:
@ -91,7 +93,7 @@
path: ~/.ssh/known_hosts
loop: "{{ publickeys.results }}"
loop_control:
label: "{{ { 'name': item.item.name, 'ip': item.item.ip } }}"
label: "{{ { 'name': item.name, 'ip': item.ip } }}"
- name: Provision Kubernetes
hosts: k3s_ha