Skip to content

Commit ecc9d59

Browse files
authored
fix release description (#10788)
1 parent 869b259 commit ecc9d59

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.github/workflows/release.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ on:
2323
env:
2424
# this is uses the `github.repository_owner` to support releases from forks (useful for testing).
2525
IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }}
26+
VANITY_REGISTRY: cr.kgateway.dev/kgateway-dev
2627

2728
permissions:
2829
contents: write

.goreleaser.yaml

+10-4
Original file line numberDiff line numberDiff line change
@@ -162,16 +162,22 @@ release:
162162
163163
### Helm Charts
164164
165-
The Helm chart is available at {{ .Env.IMAGE_REGISTRY }}/charts/kgateway.
165+
The Helm chart is available at {{ .Env.VANITY_REGISTRY }}/charts/kgateway.
166166
167167
### Docker Images
168168
169169
The docker images are available at:
170170
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 }}
174174
175175
## Quickstart
176176
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+
177183
For detailed installation instructions and next steps, please visit our [quickstart guide](https://kgateway.dev/docs/quickstart/).

0 commit comments

Comments
 (0)