From 1dc4f98432d12a226332e63a91d0bb7fb47d0a35 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 5 Sep 2023 10:49:03 -0400 Subject: [PATCH] Fix name of key_file variable --- bootstrap-daemon/pvcbootstrapd.yaml.sample | 2 +- bootstrap-daemon/pvcbootstrapd.yaml.template | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap-daemon/pvcbootstrapd.yaml.sample b/bootstrap-daemon/pvcbootstrapd.yaml.sample index b5dfacd..836451f 100644 --- a/bootstrap-daemon/pvcbootstrapd.yaml.sample +++ b/bootstrap-daemon/pvcbootstrapd.yaml.sample @@ -68,7 +68,7 @@ pvc: release: bookworm # PVC Ansible repository configuration - # Note: If "path" does not exist, "remote" will be cloned to it via Git using SSH private key "keyfile". + # Note: If "path" does not exist, "remote" will be cloned to it via Git using SSH private key "key_file". # Note: The VCS will be refreshed regularly via the API in response to webhooks. ansible: # Path to the VCS repository diff --git a/bootstrap-daemon/pvcbootstrapd.yaml.template b/bootstrap-daemon/pvcbootstrapd.yaml.template index 558948f..ecb7e71 100644 --- a/bootstrap-daemon/pvcbootstrapd.yaml.template +++ b/bootstrap-daemon/pvcbootstrapd.yaml.template @@ -26,7 +26,7 @@ pvc: release: DEBIAN_RELEASE ansible: path: "ROOT_DIRECTORY/repo" - keyfile: "ROOT_DIRECTORY/id_ed25519" + key_file: "ROOT_DIRECTORY/id_ed25519" remote: "GIT_REMOTE" branch: "GIT_BRANCH" clusters_file: "clusters.yml"