mirror of
https://github.com/bvanroll/environment-ff-stage-euw1-gkecluster-primary-production.git
synced 2025-08-29 11:32:40 +00:00
initial default chart
This commit is contained in:
25
Makefile
Normal file
25
Makefile
Normal file
@@ -0,0 +1,25 @@
|
||||
CHART_REPO := http://jenkins-x-chartmuseum:8080
|
||||
NAME := "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 env
|
||||
helm lint env
|
||||
|
||||
install: clean build
|
||||
helm install env --name ${NAME} --namespace ${NAMESPACE}
|
||||
|
||||
upgrade: clean build
|
||||
helm upgrade ${NAME} . --namespace ${NAMESPACE}
|
||||
|
||||
delete:
|
||||
helm delete --purge ${NAME} --namespace ${NAMESPACE}
|
||||
|
||||
clean:
|
||||
|
||||
|
Reference in New Issue
Block a user