DEPLOY_TYPE "copy" is now named "simple", \("copy" will work anyways for a while\)
This commit is contained in:
parent
66ff45c76d
commit
f6a9688c9d
6
Makefile
6
Makefile
|
@ -3,6 +3,12 @@ DEPLOY_START_DELAY = 0
|
|||
-include secrets.mk
|
||||
include config.mk
|
||||
-include $(DEPLOY_CONFIG_OVERRIDE)
|
||||
|
||||
# copy ist jetzt simple
|
||||
ifeq ($(DEPLOY_TYPE), copy)
|
||||
DEPLOY_TYPE = simple
|
||||
endif
|
||||
|
||||
include make-deploy/$(DEPLOY_TYPE).mk
|
||||
|
||||
.PHONY: self-update mandatory prerequisites prepare build test deploy pre-deploy post-deploy pre-local post-local upload pull start stop restart reload
|
||||
|
|
4
helm.mk
4
helm.mk
|
@ -13,6 +13,10 @@ ifdef TEST_MODE
|
|||
@ envsubst < ${HELM_VALUES_FILE} | helm template ${HELM_CHART_NAME} ${HELM_CHART_PATH} --debug --values -
|
||||
endif
|
||||
|
||||
ifdef NAMESPACE
|
||||
K8S_NAMESPACE = $(NAMESPACE)
|
||||
endif
|
||||
|
||||
@- echo "\n### deploying helm chart"
|
||||
@- echo "-- DEPLOYMENT --------------------"
|
||||
@- echo " "
|
||||
|
|
Loading…
Reference in New Issue