From 2ed0ba9d68f8dae430d19a208ec42124f97fdace Mon Sep 17 00:00:00 2001 From: Anish Lakhwara Date: Thu, 16 Jan 2025 11:58:00 -0800 Subject: [PATCH] fix: mention pgsslmode in the docs for external db This is particularly for the helm chart, since a customer was asking about this. Docs applied from @marcleblanc2's recommendation in the [linear thread](https://linear.app/sourcegraph/issue/REL-638/configure-aws-rds-databases-for-tls-connections-in-helm-chart) --- docs/admin/deploy/kubernetes/index.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/admin/deploy/kubernetes/index.mdx b/docs/admin/deploy/kubernetes/index.mdx index 3809a4fa2..2ac9f5a27 100644 --- a/docs/admin/deploy/kubernetes/index.mdx +++ b/docs/admin/deploy/kubernetes/index.mdx @@ -103,6 +103,7 @@ data: password: "" port: "" user: "" + pgsslmode: "require" # optional, enable if using SSL --- apiVersion: v1 kind: Secret @@ -115,6 +116,7 @@ data: password: "" port: "" user: "" + pgsslmode: "require" # optional, enable if using SSL --- apiVersion: v1 kind: Secret @@ -127,6 +129,7 @@ data: password: "" port: "" user: "" + pgsslmode: "require" # optional, enable if using SSL ``` The above Secrets should be deployed to the same namespace as the existing Sourcegraph deployment. @@ -163,6 +166,7 @@ pgsql: user: "new-user" password: "new-password" port: "5432" + pgsslmode: "require" # optional, enable if using SSL ``` #### Using external Redis instances