From c9224254511a843efac6074b3f798e796e68effd Mon Sep 17 00:00:00 2001 From: Anish Lakhwara Date: Fri, 21 Feb 2025 13:27:06 -0800 Subject: [PATCH] fix: we use sslmode not pgsslmode in the deploy repos (#957) @marcleblanc2 pointed this out: https://linear.app/sourcegraph/issue/REL-638/configure-aws-rds-databases-for-tls-connections-in-helm-chart ## Pull Request approval You will need to get your PR approved by at least one member of the Sourcegraph team. For reviews of docs formatting, styles, and component usage, please tag the docs team via the #docs Slack channel. --- docs/admin/deploy/kubernetes/index.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/admin/deploy/kubernetes/index.mdx b/docs/admin/deploy/kubernetes/index.mdx index 0f70d4468..0ad9e1254 100644 --- a/docs/admin/deploy/kubernetes/index.mdx +++ b/docs/admin/deploy/kubernetes/index.mdx @@ -103,7 +103,7 @@ data: password: "" port: "" user: "" - pgsslmode: "require" # optional, enable if using SSL + sslmode: "require" # optional, enable if using SSL --- apiVersion: v1 kind: Secret @@ -116,7 +116,7 @@ data: password: "" port: "" user: "" - pgsslmode: "require" # optional, enable if using SSL + sslmode: "require" # optional, enable if using SSL --- apiVersion: v1 kind: Secret @@ -129,7 +129,7 @@ data: password: "" port: "" user: "" - pgsslmode: "require" # optional, enable if using SSL + sslmode: "require" # optional, enable if using SSL ``` The above Secrets should be deployed to the same namespace as the existing Sourcegraph deployment. @@ -166,7 +166,7 @@ pgsql: user: "new-user" password: "new-password" port: "5432" - pgsslmode: "require" # optional, enable if using SSL + sslmode: "require" # optional, enable if using SSL ``` #### Using external Redis instances