@@ -57,11 +57,10 @@ to log in and manage templates.
57
57
[ Postgres operator] ( https://github.com/zalando/postgres-operator ) to
58
58
manage PostgreSQL deployments on your Kubernetes cluster.
59
59
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:
62
61
63
62
``` 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
65
64
```
66
65
67
66
1 . Create a secret with the database URL:
@@ -116,10 +115,10 @@ to log in and manage templates.
116
115
> [ values.yaml] ( https://github.com/coder/coder/blob/main/helm/values.yaml )
117
116
> file directly.
118
117
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.
120
119
121
120
``` sh
122
- helm install coder ./coder_helm_x.y.z.tgz \
121
+ helm install coder coder/coder \
123
122
--namespace coder \
124
123
--values values.yaml
125
124
```
@@ -139,12 +138,13 @@ to log in and manage templates.
139
138
## Upgrading Coder via Helm
140
139
141
140
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:
143
142
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
148
148
```
149
149
150
150
## Troubleshooting
0 commit comments