Skip to content

Commit d381067

Browse files
committed
update docs
1 parent aabbd0a commit d381067

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

docs/install/kubernetes.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,10 @@ to log in and manage templates.
5757
[Postgres operator](https://github.com/zalando/postgres-operator) to
5858
manage PostgreSQL deployments on your Kubernetes cluster.
5959

60-
1. Download the latest `coder_helm` package from
61-
[GitHub releases](https://github.com/coder/coder/releases).
60+
1. Add the Coder Helm repo:
6261

6362
```console
64-
wget https://github.com/coder/coder/releases/download/<release>/coder_helm_<release>.tgz
63+
helm repo add coder https://helm.coder.com/v2
6564
```
6665

6766
1. Create a secret with the database URL:
@@ -116,10 +115,10 @@ to log in and manage templates.
116115
> [values.yaml](https://github.com/coder/coder/blob/main/helm/values.yaml)
117116
> file directly.
118117
119-
1. Run the following commands to install the chart in your cluster.
118+
1. Run the following command to install the chart in your cluster.
120119

121120
```sh
122-
helm install coder ./coder_helm_x.y.z.tgz \
121+
helm install coder coder/coder \
123122
--namespace coder \
124123
--values values.yaml
125124
```
@@ -139,12 +138,13 @@ to log in and manage templates.
139138
## Upgrading Coder via Helm
140139

141140
To upgrade Coder in the future or change values,
142-
you can run the following command with a new `coder_helm_x.y.z.tgz` file from GitHub releases:
141+
you can run the following command:
143142

144-
```console
145-
$ helm upgrade coder ./coder_helm_x.y.z.tgz \
146-
--namespace coder \
147-
-f values.yaml
143+
```sh
144+
helm repo update
145+
helm upgrade coder coder/coder \
146+
--namespace coder \
147+
-f values.yaml
148148
```
149149

150150
## Troubleshooting

0 commit comments

Comments
 (0)