Use Quay as container registry in Helm and YAML manifests

This commit is contained in:
stefanprodan
2018-11-25 19:20:29 +02:00
parent 7927ac0a5d
commit 9159855df2
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -56,10 +56,10 @@ version-up:
dev-up: version-up
@echo "Starting build/push/deploy pipeline for $(VERSION)"
docker build -t stefanprodan/flagger:$(VERSION) . -f Dockerfile
docker push stefanprodan/flagger:$(VERSION)
docker build -t quay.io/stefanprodan/flagger:$(VERSION) . -f Dockerfile
docker push quay.io/stefanprodan/flagger:$(VERSION)
kubectl apply -f ./artifacts/flagger/crd.yaml
helm upgrade --install flagger ./charts/flagger --namespace=istio-system --set crd.create=false
helm upgrade -i flagger ./charts/flagger --namespace=istio-system --set crd.create=false
release:
git tag $(VERSION)
+1 -1
View File
@@ -22,7 +22,7 @@ spec:
serviceAccountName: flagger
containers:
- name: flagger
image: stefanprodan/flagger:0.1.0-beta.9
image: quay.io/stefanprodan/flagger:0.1.0-beta.9
imagePullPolicy: Always
ports:
- name: http
+1 -1
View File
@@ -1,7 +1,7 @@
# Default values for flagger.
image:
repository: stefanprodan/flagger
repository: quay.io/stefanprodan/flagger
tag: 0.1.0-beta.9
pullPolicy: IfNotPresent