include DEPLOY_CONFIG_OVERRIDE

This commit is contained in:
Andreas Neue 2023-01-04 12:05:26 +01:00
parent 19ecd8c680
commit 7e4afb11b1
1 changed files with 6 additions and 1 deletions

View File

@ -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), \