Skip to content

Commit 4dab5ba

Browse files
authored
fix: fix image tag in release artifact (#149)
* fix image tag Signed-off-by: Zach Aller <[email protected]> * fix getting started docs Signed-off-by: Zach Aller <[email protected]> --------- Signed-off-by: Zach Aller <[email protected]>
1 parent 87625bc commit 4dab5ba

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

config/release/kustomization.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@ resources:
22
- ../default
33

44
images:
5-
- name: argoproj-labs/gitops-promoter
6-
newName: quay.io/argoprojlabs/gitops-promoter
7-
newTag: latest
85
- name: quay.io/argoprojlabs/gitops-promoter
9-
newTag: v0.0.0
6+
newName: quay.io/argoprojlabs/gitops-promoter
7+
newTag: v0.0.1-rc1
108
apiVersion: kustomize.config.k8s.io/v1beta1
119
kind: Kustomization

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ providers.
1616
To install GitOps Promoter, you can use the following command:
1717

1818
```bash
19-
kubectl apply -f https://github.com/argoproj-labs/gitops-promoter/releases/download/v0.0.1-rc1/install.yaml
19+
kubectl apply -f https://github.com/argoproj-labs/gitops-promoter/releases/download/v0.0.1-rc2/install.yaml
2020
```
2121

2222
## GitHub App Configuration

hack/manifests-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ IMAGE_NAMESPACE="${IMAGE_NAMESPACE:-quay.io/argoprojlabs/gitops-promoter}"
2020
IMAGE_FQN="$IMAGE_NAMESPACE:$IMAGE_TAG"
2121

2222
$KUSTOMIZE version
23-
cd "${SRCROOT}/config/release" && $KUSTOMIZE edit set image "argoproj-labs/gitops-promoter=${IMAGE_FQN}"
23+
cd "${SRCROOT}/config/release" && $KUSTOMIZE edit set image "quay.io/argoprojlabs/gitops-promoter=${IMAGE_FQN}"
2424
echo "${AUTOGENMSG}" > "${SRCROOT}/install.yaml"
2525
$KUSTOMIZE build "${SRCROOT}/config/release" >> "${SRCROOT}/install.yaml"

0 commit comments

Comments
 (0)