-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
28 lines (23 loc) · 873 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
doc:
@echo "==========================================================="
@echo "make doc : display this doc"
@echo "make build : build helm and lint it"
@echo "make debug : generate yaml files"
@echo "make clean : clean local helm"
@echo "make deploy : install helm"
@echo "make uninstall : uninstall helm"
@echo "==========================================================="
build: clean
helm package ./abcdesktop/
@echo "========================================"
helm lint abcdesktop-0.1.0.tgz
@echo "========================================"
clean:
rm -f *.tgz
deploy:
helm upgrade --install abcdesktop --create-namespace ./abcdesktop-0.1.0.tgz -n abcdesktop
debug:
helm template --debug ./abcdesktop-0.1.0.tgz > debug-1.yaml
-helm install --dry-run test ./abcdesktop-0.1.0.tgz > debug-2.yaml
uninstall:
helm uninstall abcdesktop -n abcdesktop