mirror of
https://github.com/bvanroll/environment-ff-stage-euw1-gkecluster-primary-staging.git
synced 2025-08-29 03:42:39 +00:00
24 lines
491 B
Makefile
24 lines
491 B
Makefile
CHART_REPO := http://jenkins-x-chartmuseum:8080
|
|
DIR := "env"
|
|
NAMESPACE := "change-me"
|
|
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.build.cd.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:
|
|
|
|
|