Skip to content

Commit d511295

Browse files
committed
Update installation instructions and default image in helm chart
1 parent db96594 commit d511295

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build-push-image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,4 @@ jobs:
7676
sed -i "s/version: .*/version: ${RELEASE_VERSION}/" helm/Chart.yaml
7777
sed -i "s/appVersion: .*/appVersion: \"${RELEASE_VERSION}\"/" helm/Chart.yaml
7878
helm package helm
79-
HELM_IMAGE=ghcr.io/${{ github.repository }} make publish-helm
79+
HELM_IMAGE=ghcr.io/${{ github.repository }} make publish-helm

helm/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ fullnameOverride: ""
55

66
image:
77
# The location of the container image repository
8-
repository: public.ecr.aws/kro/controller
8+
repository: ghcr.io/kro-run/kro/controller
99
# Image pull policy (IfNotPresent: pull the image only if it is not present locally)
1010
pullPolicy: IfNotPresent
1111
# Overrides the image tag whose default is the chart appVersion.

website/docs/docs/getting-started/01-Installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ echo $KRO_VERSION
4040
```
4141
Install kro using Helm
4242
```
43-
helm install kro oci://public.ecr.aws/kro/kro \
43+
helm install kro oci://ghcr.io/kro-run/kro/kro \
4444
--namespace kro \
4545
--create-namespace \
4646
--version=${KRO_VERSION}
@@ -84,7 +84,7 @@ export KRO_VERSION=<new-version>
8484

8585
Upgrade the controller
8686
```
87-
helm upgrade kro oci://public.ecr.aws/kro/kro \
87+
helm upgrade kro oci://ghcr.io/kro-run/kro/kro \
8888
--namespace kro \
8989
--version=${KRO_VERSION}
9090
```

0 commit comments

Comments
 (0)