From ef290d5d51e5196241006d48950a7f828ba19b82 Mon Sep 17 00:00:00 2001 From: Pablo Rodriguez Nava Date: Tue, 30 Apr 2024 15:04:42 +0200 Subject: [PATCH] [VA] Deploy a single SSH key for the dataplane It seems that the dataplane-operator/baremetal operator is/are having issues building the authorized_keys content of the cloud-init configuration, making BM instances cloud-init to fail when booting. --- playbooks/06-deploy-architecture.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/06-deploy-architecture.yml b/playbooks/06-deploy-architecture.yml index 15212ad256..270098fd92 100644 --- a/playbooks/06-deploy-architecture.yml +++ b/playbooks/06-deploy-architecture.yml @@ -84,7 +84,7 @@ }} ansible.builtin.set_fact: cifmw_ci_gen_kustomize_values_ssh_authorizedkeys: >- - {{ lookup('file', '~/.ssh/authorized_keys', rstrip=False) }} + {{ lookup('file', '~/.ssh/id_cifw.pub', rstrip=False) }} cifmw_ci_gen_kustomize_values_ssh_private_key: >- {{ lookup('file', '~/.ssh/id_cifw', rstrip=False) }} cifmw_ci_gen_kustomize_values_ssh_public_key: >-