File tree 2 files changed +11
-4
lines changed
2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 23
23
env :
24
24
# this is uses the `github.repository_owner` to support releases from forks (useful for testing).
25
25
IMAGE_REGISTRY : ghcr.io/${{ github.repository_owner }}
26
+ VANITY_REGISTRY : cr.kgateway.dev/kgateway-dev
26
27
27
28
permissions :
28
29
contents : write
Original file line number Diff line number Diff line change @@ -162,16 +162,22 @@ release:
162
162
163
163
### Helm Charts
164
164
165
- The Helm chart is available at {{ .Env.IMAGE_REGISTRY }}/charts/kgateway.
165
+ The Helm chart is available at {{ .Env.VANITY_REGISTRY }}/charts/kgateway.
166
166
167
167
### Docker Images
168
168
169
169
The docker images are available at:
170
170
171
- - cr.kgateway.dev/kgateway-dev /{{ .Env.CONTROLLER_IMAGE_REPO }}:{{ .Env.VERSION }}
172
- - cr.kgateway.dev/kgateway-dev /{{ .Env.SDS_IMAGE_REPO }}:{{ .Env.VERSION }}
173
- - cr.kgateway.dev/kgateway-dev /{{ .Env.ENVOYINIT_IMAGE_REPO }}:{{ .Env.VERSION }}
171
+ - {{ .Env.VANITY_REGISTRY }} /{{ .Env.CONTROLLER_IMAGE_REPO }}:{{ .Env.VERSION }}
172
+ - {{ .Env.VANITY_REGISTRY }} /{{ .Env.SDS_IMAGE_REPO }}:{{ .Env.VERSION }}
173
+ - {{ .Env.VANITY_REGISTRY }} /{{ .Env.ENVOYINIT_IMAGE_REPO }}:{{ .Env.VERSION }}
174
174
175
175
## Quickstart
176
176
177
+ Try installing this release:
178
+ ```
179
+ helm install --create-namespace --namespace kgateway-system kgateway \
180
+ oci://{{ .Env.VANITY_REGISTRY }}/charts/kgateway --version {{ .Env.VERSION }}
181
+ ```
182
+
177
183
For detailed installation instructions and next steps, please visit our [quickstart guide](https://kgateway.dev/docs/quickstart/).
You can’t perform that action at this time.
0 commit comments