Skip to content

Commit c922425

Browse files
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.
1 parent ce4625f commit c922425

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/admin/deploy/kubernetes/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ data:
103103
password: ""
104104
port: ""
105105
user: ""
106-
pgsslmode: "require" # optional, enable if using SSL
106+
sslmode: "require" # optional, enable if using SSL
107107
---
108108
apiVersion: v1
109109
kind: Secret
@@ -116,7 +116,7 @@ data:
116116
password: ""
117117
port: ""
118118
user: ""
119-
pgsslmode: "require" # optional, enable if using SSL
119+
sslmode: "require" # optional, enable if using SSL
120120
---
121121
apiVersion: v1
122122
kind: Secret
@@ -129,7 +129,7 @@ data:
129129
password: ""
130130
port: ""
131131
user: ""
132-
pgsslmode: "require" # optional, enable if using SSL
132+
sslmode: "require" # optional, enable if using SSL
133133
```
134134
135135
The above Secrets should be deployed to the same namespace as the existing Sourcegraph deployment.
@@ -166,7 +166,7 @@ pgsql:
166166
user: "new-user"
167167
password: "new-password"
168168
port: "5432"
169-
pgsslmode: "require" # optional, enable if using SSL
169+
sslmode: "require" # optional, enable if using SSL
170170
```
171171

172172
#### Using external Redis instances

0 commit comments

Comments
 (0)