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
with_items: "{{ nodes }}"
- name: Scan public keys
ansible.builtin.command:
cmd: "ssh-keyscan -t rsa {{ item.ip }} | grep ^[^#]"
register: publickeys
with_items: "{{ nodes }}"
# - name: Scan public keys
# ansible.builtin.shell:
# 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: 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