Skip to content

Commit 653042c

Browse files
author
Matthew Fisher
committed
ref(Makefile): refactor make dev-release
This allows us to run `make -C controller config` when we know that the image is pushed onto the registry and we just need to tell the cluster to use this image.
1 parent 1f64346 commit 653042c

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,13 @@ restart: stop start
3333

3434
run: install start
3535

36-
dev-release: check-registry check-deisctl
36+
dev-release: push set-image
37+
38+
push: check-registry
3739
docker tag $(IMAGE) $(DEV_IMAGE)
3840
docker push $(DEV_IMAGE)
41+
42+
set-image: check-deisctl
3943
deisctl config $(COMPONENT) set image=$(DEV_IMAGE)
4044

4145
release:

0 commit comments

Comments
 (0)