Skip to content

Commit

Permalink
Use Quay as container registry in Helm and YAML manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanprodan committed Nov 25, 2018
1 parent 7927ac0 commit 9159855
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion artifacts/flagger/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion charts/flagger/values.yaml
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 9159855

Please sign in to comment.