Disable known_hosts
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Danny Bessems 2022-04-20 09:11:30 +02:00
parent 4a8a154a01
commit 75d1e95238
1 changed files with 12 additions and 12 deletions

View File

@ -66,19 +66,19 @@
groups: k3s_ha groups: k3s_ha
with_items: "{{ nodes }}" with_items: "{{ nodes }}"
- name: Scan public keys # - name: Scan public keys
ansible.builtin.command: # ansible.builtin.shell:
cmd: "ssh-keyscan -t rsa {{ item.ip }} | grep ^[^#]" # cmd: "ssh-keyscan -t rsa {{ item.ip }}"
register: publickeys # register: publickeys
with_items: "{{ nodes }}" # with_items: "{{ nodes }}"
- name: Store public keys # - name: Store public keys
ansible.builtin.known_hosts: # ansible.builtin.known_hosts:
name: "{{ item.item }}" # name: "{{ item.item }}"
key: "{{ item.stdout }}" # key: "{{ item.stdout }}"
state: present # state: present
path: ~/.ssh/known_hosts # path: ~/.ssh/known_hosts
with_items: "{{ publickeys.results }}" # with_items: "{{ publickeys.results }}"
- name: Provision Kubernetes - name: Provision Kubernetes
hosts: k3s_ha hosts: k3s_ha