include DEPLOY_CONFIG_OVERRIDE
This commit is contained in:
parent
19ecd8c680
commit
7e4afb11b1
7
Makefile
7
Makefile
|
@ -1,5 +1,6 @@
|
|||
-include secrets.mk
|
||||
include config.mk
|
||||
-include $(DEPLOY_CONFIG_OVERRIDE)
|
||||
include make-deploy/copy.mk
|
||||
include make-deploy/docker.mk
|
||||
include make-deploy/k8s.mk
|
||||
|
@ -7,7 +8,7 @@ include make-deploy/cron.mk
|
|||
include make-deploy/kustomize.mk
|
||||
include make-deploy/helm.mk
|
||||
|
||||
.PHONY: self-update prepare build test deploy pre-deploy post-deploy pre-local post-local upload pull start stop restart reload
|
||||
.PHONY: self-update mandatory prerequisites prepare build test deploy pre-deploy post-deploy pre-local post-local upload pull start stop restart reload
|
||||
|
||||
self-update:
|
||||
@- git submodule update --remote
|
||||
|
@ -26,6 +27,10 @@ endif
|
|||
fi; \
|
||||
)
|
||||
|
||||
prerequisites:
|
||||
@- echo "\n### prerequisites ..."
|
||||
@- ./prerequisites.sh
|
||||
|
||||
prepare:
|
||||
@- echo "\n### preparing ..."
|
||||
@- $(foreach host,$(DEPLOY_HOSTS), \
|
||||
|
|
Loading…
Reference in New Issue