Skip to content

Commit

Permalink
fix: we use sslmode not pgsslmode in the deploy repos (#957)
Browse files Browse the repository at this point in the history
@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.
  • Loading branch information
Chickensoupwithrice authored Feb 21, 2025
1 parent ce4625f commit c922425
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/admin/deploy/kubernetes/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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.
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit c922425

Please sign in to comment.