make-deploy/helm.mk

21 lines
562 B
Makefile
Raw Normal View History

# helm
#
# deploys helm charts on k8s via helmfile
start-helm:
@- echo "\n### starting deployment with helmfile"
@- echo "\n### setting kubernetes context to $(K8S_CONTEXT)"
2022-12-07 13:55:36 +00:00
@ kubectl config use-context $(K8S_CONTEXT)
2022-11-15 14:23:56 +00:00
@- echo "\n### create namespace $(NAMESPACE)"
@- kubectl create namespace "$(NAMESPACE)" --dry-run=client -o yaml | kubectl apply -f -
2022-12-07 12:41:36 +00:00
@- echo "\n### run kubectl apply -f secrets.yaml"
2022-12-07 13:55:36 +00:00
@- kubectl apply -f secrets.yaml
@- echo "\n### deploying helm chart"
2022-12-07 13:55:36 +00:00
@ helmfile --file helmfile.yaml apply --suppress-secrets
pull-helm:
2022-11-15 14:23:56 +00:00
# nop