SYS-5450: add initial kustomize and helm targets

This commit is contained in:
Florian Zink 2022-11-03 09:48:22 +01:00
parent 8ad9a3dd6f
commit 8e2f79fa3b
3 changed files with 99 additions and 7 deletions

17
helm.mk Normal file
View file

@ -0,0 +1,17 @@
# helm
#
# deploys helm charts on k8s via helmfile
start-helm:
@- echo "\n### starting deployment with helmfile"
@- echo "\n### setting kubernetes context to $(K8S_CONTEXT)"
@- kubectl config use-context $(K8S_CONTEXT)
@- echo "\n### generating imagePullSecrets"
@- imagePullSecrets.sh
@- echo "\n### deploying helm chart"
@- helmfile --file helmfile.yaml apply --suppress-secrets
pull-helm:
# nop