From 7e4afb11b128ea8c55d4267647a425dd7cc86f4f Mon Sep 17 00:00:00 2001 From: Andreas Neue Date: Wed, 4 Jan 2023 12:05:26 +0100 Subject: [PATCH] include DEPLOY_CONFIG_OVERRIDE --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 51c1979..448961b 100644 --- a/Makefile +++ b/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), \