From 22e07fe2061350f680ff53ece070fd813a0d3421 Mon Sep 17 00:00:00 2001 From: nasark Date: Mon, 25 Sep 2023 14:31:06 -0400 Subject: [PATCH] fix remote-console cert keys --- installing_on_kubernetes/_topics/pods_ssl.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installing_on_kubernetes/_topics/pods_ssl.md b/installing_on_kubernetes/_topics/pods_ssl.md index 28b974530..e54d86ae3 100644 --- a/installing_on_kubernetes/_topics/pods_ssl.md +++ b/installing_on_kubernetes/_topics/pods_ssl.md @@ -17,8 +17,8 @@ The certificates should all be signed by a CA and that CA certificate should be --from-file=postgresql_key=./certs/postgresql.key \ --from-file=api_crt=./certs/api.crt \ --from-file=api_key=./certs/api.key \ - --from-file=remote-console_crt=./certs/remote-console.crt \ - --from-file=remote-console_key=./certs/remote-console.key \ + --from-file=remote_console_crt=./certs/remote-console.crt \ + --from-file=remote_console_key=./certs/remote-console.key \ --from-file=ui_crt=./certs/ui.crt \ --from-file=ui_key=./certs/ui.key ```