Commit 2442f7b8 by Chavee Issariyapat

update to 1.2.6

parent b87a2199
# a helper shell script # a helper shell script
MAKE_VERSION=1.2.5 MAKE_VERSION=1.2.6
define MAKEFUNCTIONCODE define MAKEFUNCTIONCODE
function hasChanges() { function hasChanges() {
...@@ -145,6 +145,9 @@ endif ...@@ -145,6 +145,9 @@ endif
ifeq (deploy,$(firstword $(MAKECMDGOALS))) ifeq (deploy,$(firstword $(MAKECMDGOALS)))
doit=true doit=true
endif endif
ifeq (deploy-dev,$(firstword $(MAKECMDGOALS)))
doit=true
endif
ifeq (show-deploy,$(firstword $(MAKECMDGOALS))) ifeq (show-deploy,$(firstword $(MAKECMDGOALS)))
doit=true doit=true
endif endif
...@@ -323,3 +326,14 @@ ifdef a ...@@ -323,3 +326,14 @@ ifdef a
@kubectl annotate deployment/$(DEPLOYMENT) kubernetes.io/change-cause="$(a)" $(DEPLOYARG) @kubectl annotate deployment/$(DEPLOYMENT) kubernetes.io/change-cause="$(a)" $(DEPLOYARG)
endif endif
endif endif
deploy-dev: init release.conf
ifndef c
@echo Deploy failed : Please make deploy with c={context}
else
@cat k8s/deployment-dev.yaml | sed "s/{{IMAGE_TAG}}/$(VERSIONHASH)/g" | kubectl apply -f - $(DEPLOYARG)
@rm .make-function
ifdef a
@kubectl annotate deployment/$(DEPLOYMENT) kubernetes.io/change-cause="$(a)" $(DEPLOYARG)
endif
endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment