Files
environment-ff-stage-euw1-g…/Makefile

24 lines
486 B
Makefile

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