This commit is contained in:
26
iris-web/deploy/kubernetes/Makefile
Normal file
26
iris-web/deploy/kubernetes/Makefile
Normal file
@ -0,0 +1,26 @@
|
||||
SHELL := /bin/bash
|
||||
|
||||
check-helm:
|
||||
@helm version || $(MAKE) install-helm
|
||||
|
||||
check-kubectl:
|
||||
@kubectl version || $(MAKE) install-kubectl
|
||||
|
||||
install-helm:
|
||||
@curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
|
||||
@chmod 700 get_helm.sh
|
||||
@./get_helm.sh
|
||||
@rm get_helm.sh
|
||||
|
||||
install-kubectl:
|
||||
@curl -LO 'https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl'
|
||||
@sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
|
||||
@rm kubectl
|
||||
|
||||
install-iris:
|
||||
@helm upgrade --install iris charts/ --values charts/values.yaml -n <name_space>
|
||||
|
||||
delete-iris:
|
||||
@helm delete iris -n <name_space>
|
||||
|
||||
check-dependencies: check-helm check-kubectl
|
Reference in New Issue
Block a user