mirror of
https://github.com/bvanroll/example-node-project.git
synced 2025-08-29 20:02:42 +00:00
Draft create
This commit is contained in:
48
charts/frontend-node/Makefile
Executable file
48
charts/frontend-node/Makefile
Executable file
@@ -0,0 +1,48 @@
|
||||
CHART_REPO := http://jenkins-x-chartmuseum:8080
|
||||
CURRENT=$(pwd)
|
||||
NAME := frontend-node
|
||||
OS := $(shell uname)
|
||||
RELEASE_VERSION := $(shell cat ../../VERSION)
|
||||
|
||||
build: clean
|
||||
rm -rf requirements.lock
|
||||
helm dependency build
|
||||
helm lint
|
||||
|
||||
install: clean build
|
||||
helm install . --name ${NAME}
|
||||
|
||||
upgrade: clean build
|
||||
helm upgrade ${NAME} .
|
||||
|
||||
delete:
|
||||
helm delete --purge ${NAME}
|
||||
|
||||
clean:
|
||||
rm -rf charts
|
||||
rm -rf ${NAME}*.tgz
|
||||
|
||||
release: clean
|
||||
helm dependency build
|
||||
helm lint
|
||||
helm init --client-only
|
||||
helm package .
|
||||
curl --fail -u $(CHARTMUSEUM_CREDS_USR):$(CHARTMUSEUM_CREDS_PSW) --data-binary "@$(NAME)-$(shell sed -n 's/^version: //p' Chart.yaml).tgz" $(CHART_REPO)/api/charts
|
||||
rm -rf ${NAME}*.tgz%
|
||||
|
||||
tag:
|
||||
ifeq ($(OS),Darwin)
|
||||
sed -i "" -e "s/version:.*/version: $(RELEASE_VERSION)/" Chart.yaml
|
||||
sed -i "" -e "s/tag:.*/tag: $(RELEASE_VERSION)/" values.yaml
|
||||
else ifeq ($(OS),Linux)
|
||||
sed -i -e "s/version:.*/version: $(RELEASE_VERSION)/" Chart.yaml
|
||||
sed -i -e "s|repository:.*|repository: $(DOCKER_REGISTRY)\/flowfactor\/frontend-node|" values.yaml
|
||||
sed -i -e "s/tag:.*/tag: $(RELEASE_VERSION)/" values.yaml
|
||||
else
|
||||
echo "platfrom $(OS) not supported to release from"
|
||||
exit -1
|
||||
endif
|
||||
git add --all
|
||||
git commit -m "release $(RELEASE_VERSION)" --allow-empty # if first release then no verion update is performed
|
||||
git tag -fa v$(RELEASE_VERSION) -m "Release version $(RELEASE_VERSION)"
|
||||
git push origin v$(RELEASE_VERSION)
|
Reference in New Issue
Block a user