Skip to content

Commit 8928e75

Browse files
committed
docs: update install docs to mention oci chart
1 parent 97b397e commit 8928e75

File tree

1 file changed

+41
-14
lines changed

1 file changed

+41
-14
lines changed

docs/install/kubernetes.md

Lines changed: 41 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -127,25 +127,52 @@ We support two release channels: mainline and stable - read the
127127

128128
- **Mainline** Coder release:
129129

130-
<!-- autoversion(mainline): "--version [version]" -->
130+
- **Chart Registry**
131+
132+
<!-- autoversion(mainline): "--version [version]" -->
133+
134+
```shell
135+
helm install coder coder-v2/coder \
136+
--namespace coder \
137+
--values values.yaml \
138+
--version 2.22.1
139+
```
140+
141+
- **OCI Registry**
142+
143+
<!-- autoversion(mainline): "--version [version]" -->
144+
145+
```shell
146+
helm install coder oci://ghcr.io/coder/chart/coder \
147+
--namespace coder \
148+
--values values.yaml \
149+
--version 2.22.1
150+
```
131151

132-
```shell
133-
helm install coder coder-v2/coder \
134-
--namespace coder \
135-
--values values.yaml \
136-
--version 2.22.1
137-
```
138152

139153
- **Stable** Coder release:
140154

141-
<!-- autoversion(stable): "--version [version]" -->
155+
- **Chart Registry**
156+
157+
<!-- autoversion(stable): "--version [version]" -->
158+
159+
```shell
160+
helm install coder coder-v2/coder \
161+
--namespace coder \
162+
--values values.yaml \
163+
--version 2.19.0
164+
```
165+
166+
- **OCI Registry**
167+
168+
<!-- autoversion(stable): "--version [version]" -->
142169

143-
```shell
144-
helm install coder coder-v2/coder \
145-
--namespace coder \
146-
--values values.yaml \
147-
--version 2.19.0
148-
```
170+
```shell
171+
helm install coder oci://ghcr.io/coder/chart/coder \
172+
--namespace coder \
173+
--values values.yaml \
174+
--version 2.19.0
175+
```
149176

150177
You can watch Coder start up by running `kubectl get pods -n coder`. Once Coder
151178
has started, the `coder-*` pods should enter the `Running` state.

0 commit comments

Comments
 (0)