Skip to content

Commit

Permalink
Update installation instructions and default image in helm chart
Browse files Browse the repository at this point in the history
  • Loading branch information
a-hilaly committed Jan 30, 2025
1 parent db96594 commit d511295
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-push-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ jobs:
sed -i "s/version: .*/version: ${RELEASE_VERSION}/" helm/Chart.yaml
sed -i "s/appVersion: .*/appVersion: \"${RELEASE_VERSION}\"/" helm/Chart.yaml
helm package helm
HELM_IMAGE=ghcr.io/${{ github.repository }} make publish-helm
HELM_IMAGE=ghcr.io/${{ github.repository }} make publish-helm
2 changes: 1 addition & 1 deletion helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ fullnameOverride: ""

image:
# The location of the container image repository
repository: public.ecr.aws/kro/controller
repository: ghcr.io/kro-run/kro/controller
# Image pull policy (IfNotPresent: pull the image only if it is not present locally)
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
Expand Down
4 changes: 2 additions & 2 deletions website/docs/docs/getting-started/01-Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ echo $KRO_VERSION
```
Install kro using Helm
```
helm install kro oci://public.ecr.aws/kro/kro \
helm install kro oci://ghcr.io/kro-run/kro/kro \
--namespace kro \
--create-namespace \
--version=${KRO_VERSION}
Expand Down Expand Up @@ -84,7 +84,7 @@ export KRO_VERSION=<new-version>

Upgrade the controller
```
helm upgrade kro oci://public.ecr.aws/kro/kro \
helm upgrade kro oci://ghcr.io/kro-run/kro/kro \
--namespace kro \
--version=${KRO_VERSION}
```
Expand Down

0 comments on commit d511295

Please sign in to comment.