Skip to content

docs: simplify PostgreSQL setup by using 'postgresql' as release name #18754

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 8, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/install/kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ on the internet that explain sensible configurations for this chart. Example:
```console
# Install PostgreSQL
helm repo add bitnami https://charts.bitnami.com/bitnami
helm install coder-db bitnami/postgresql \
helm install postgresql bitnami/postgresql \
--namespace coder \
--set auth.username=coder \
--set auth.password=coder \
Expand All @@ -55,7 +55,7 @@ helm install coder-db bitnami/postgresql \
The cluster-internal DB URL for the above database is:

```shell
postgres://coder:coder@coder-db-postgresql.coder.svc.cluster.local:5432/coder?sslmode=disable
postgres://coder:coder@postgresql.coder.svc.cluster.local:5432/coder?sslmode=disable
```

You can optionally use the
Expand All @@ -69,7 +69,7 @@ self-managed PostgreSQL, the address will be:

```sh
kubectl create secret generic coder-db-url -n coder \
--from-literal=url="postgres://coder:coder@coder-db-postgresql.coder.svc.cluster.local:5432/coder?sslmode=disable"
--from-literal=url="postgres://coder:coder@postgresql.coder.svc.cluster.local:5432/coder?sslmode=disable"
```

## 4. Install Coder with Helm
Expand Down
Loading