Skip to content

Commit 5503733

Browse files
fix: mention pgsslmode in the docs for external db (#900)
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) <!-- Explain the changes introduced in your PR --> ## 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.
1 parent dd51647 commit 5503733

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

docs/admin/deploy/kubernetes/index.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ data:
103103
password: ""
104104
port: ""
105105
user: ""
106+
pgsslmode: "require" # optional, enable if using SSL
106107
---
107108
apiVersion: v1
108109
kind: Secret
@@ -115,6 +116,7 @@ data:
115116
password: ""
116117
port: ""
117118
user: ""
119+
pgsslmode: "require" # optional, enable if using SSL
118120
---
119121
apiVersion: v1
120122
kind: Secret
@@ -127,6 +129,7 @@ data:
127129
password: ""
128130
port: ""
129131
user: ""
132+
pgsslmode: "require" # optional, enable if using SSL
130133
```
131134
132135
The above Secrets should be deployed to the same namespace as the existing Sourcegraph deployment.
@@ -163,6 +166,7 @@ pgsql:
163166
user: "new-user"
164167
password: "new-password"
165168
port: "5432"
169+
pgsslmode: "require" # optional, enable if using SSL
166170
```
167171

168172
#### Using external Redis instances

0 commit comments

Comments
 (0)