From 2dc341a47a562ef0c0eef8b0bd0391ce011082ee Mon Sep 17 00:00:00 2001 From: il_kimo Date: Tue, 14 Jan 2025 16:14:39 +0100 Subject: [PATCH] Fix shell command in README If applied, this commit will correct the yq command to extract the public key from the secret. Signed-off-by: il_kimo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a3017546..8183d402 100644 --- a/README.md +++ b/README.md @@ -524,7 +524,7 @@ flux -n apps create secret git dev-team-auth \ Print the SSH public key and add it as a read-only deploy key to the dev-team repository: ```sh -yq eval 'data."identity.pub"' git-auth.yaml | base64 --decode +yq eval '.stringData."identity.pub"' ./tenants/base/dev-team/auth.yaml ``` ### Git over HTTP/S