SYS-5450: add initial kustomize and helm targets
This commit is contained in:
parent
8ad9a3dd6f
commit
8e2f79fa3b
3 changed files with 99 additions and 7 deletions
17
helm.mk
Normal file
17
helm.mk
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue