From 9d081358d041fbf01d7ed738d90eadf6c5b0798d Mon Sep 17 00:00:00 2001 From: rohow Date: Thu, 23 Apr 2026 16:22:14 +0800 Subject: [PATCH] docs(README): format code blocks for SSH key generation instructions --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4e687b1..413f536 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ 参见 [flux/README.md](flux/README.md) -` +```shell ssh-keygen -t ed25519 -C "flux" -f ./flux-git-auth -N "" ssh-keyscan github.com > ./known_hosts @@ -17,4 +17,4 @@ kubectl -n infra-gitops create secret generic flux-git-auth \ --from-file=identity=./flux-git-auth \ --from-file=identity.pub=./flux-git-auth.pub \ --from-file=known_hosts=./known_hosts -` +```