Files
environment-ff-stage-euw1-g…/Makefile
James Strachan 65d29aa968 fixed names
2018-01-16 22:42:54 +00:00

26 lines
491 B
Makefile

CHART_REPO := http://jenkins-x-chartmuseum:8080
DIR := "env"
NAMESPACE := "default-staging"
OS := $(shell uname)
build: clean
rm -rf requirements.lock
helm version
helm init
helm repo add releases ${CHART_REPO}
helm dependency build ${DIR}
helm lint ${DIR}
install:
helm install ${DIR} --name ${NAMESPACE} --namespace ${NAMESPACE}
upgrade:
helm upgrade ${NAMESPACE} ${DIR} --namespace ${NAMESPACE}
delete:
helm delete --purge ${NAMESPACE} --namespace ${NAMESPACE}
clean: