Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Commit

Permalink
move argocd-notifications image to argoprojlabs docker repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Matyushentsev authored and Alexander Matyushentsev committed Jan 13, 2020
1 parent e0dd8b9 commit b37d17d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
12 changes: 11 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
VERSION?=$(shell cat VERSION)
IMAGE_TAG?=v$(VERSION)
IMAGE_PREFIX?=argoprojlabs
DOCKER_PUSH?=false

.PHONY: test
test:
go test ./... -coverprofile=coverage.out
go test ./... -coverprofile=coverage.out

.PHONY: image
image:
docker build -t $(IMAGE_PREFIX)/argocd-notifications:$(IMAGE_TAG) .
@if [ "$(DOCKER_PUSH)" = "true" ] ; then docker push $(IMAGE_PREFIX)/argocd-notifications:$(IMAGE_TAG) ; fi
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.3.0
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
- command:
- /app/argocd-notifications-controller
workingDir: /app
image: alexmt/argocd-notifications:latest
image: argoprojlabs/argocd-notifications:latest
imagePullPolicy: Always
name: argocd-notifications-controller
serviceAccountName: argocd-notifications-controller
serviceAccountName: argocd-notifications-controller
2 changes: 1 addition & 1 deletion manifests/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ spec:
containers:
- command:
- /app/argocd-notifications-controller
image: alexmt/argocd-notifications:latest
image: argoprojlabs/argocd-notifications:latest
imagePullPolicy: Always
name: argocd-notifications-controller
workingDir: /app
Expand Down

0 comments on commit b37d17d

Please sign in to comment.