diff --git a/make/helm.makefile b/make/helm.makefile index f603af4..0ecdbea 100644 --- a/make/helm.makefile +++ b/make/helm.makefile @@ -2,3 +2,15 @@ helm-release: @yq e ".version = \"$(shell cat VERSION)\"" -i helm/Chart.yaml @yq e ".appVersion = \"$(shell cat VERSION)\"" -i helm/Chart.yaml + +.PHONY: install +install: set-namespace + helm install $(PROJECT_NAME) ./helm --set image=$(IMAGE) + +.PHONY: upgrade +upgrade: set-namespace + helm upgrade $(PROJECT_NAME) ./helm --set image=$(IMAGE) + +.PHONY: uninstall +uninstall: set-namespace + helm uninstall $(PROJECT_NAME)