Refactor block
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Some checks reported errors
continuous-integration/drone/push Build encountered an error
This commit is contained in:
parent
51302033aa
commit
a52d8014d1
27
playbook.yml
27
playbook.yml
@ -66,23 +66,20 @@
|
||||
groups: k3s_ha
|
||||
with_items: "{{ nodes }}"
|
||||
|
||||
- name: Add new VM's as 'known_hosts'
|
||||
block:
|
||||
|
||||
- name: Scan public key
|
||||
ansible.builtin.command:
|
||||
cmd: "ssh-keyscan -t rsa {{ item.ip }}"
|
||||
register: publickey
|
||||
|
||||
- name: Store public key
|
||||
ansible.builtin.known_hosts:
|
||||
name: "{{ item.name }}"
|
||||
key: "{{ publickey.stdout }}"
|
||||
state: present
|
||||
path: ~/.ssh/known_hosts
|
||||
|
||||
- name: Scan public keys
|
||||
ansible.builtin.command:
|
||||
cmd: "ssh-keyscan -t rsa {{ item.ip }}"
|
||||
register: publickeys
|
||||
with_items: "{{ nodes }}"
|
||||
|
||||
- name: Store public keys
|
||||
ansible.builtin.known_hosts:
|
||||
name: "{{ item.item }}"
|
||||
key: "{{ item.stdout }}"
|
||||
state: present
|
||||
path: ~/.ssh/known_hosts
|
||||
with_items: "{{ publickeys.results }}"
|
||||
|
||||
- name: Provision Kubernetes
|
||||
hosts: k3s_ha
|
||||
gather_facts: false
|
||||
|
Loading…
Reference in New Issue
Block a user