2022-11-03 08:48:22 +00:00
|
|
|
# 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)
|
|
|
|
|
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"
|
|
|
|
@- cat secrets.yaml | kubectl apply -f -
|
|
|
|
|
|
|
|
@- echo "\nCI_PROJECT_NAME: ${CI_PROJECT_NAME}"
|
2022-11-03 08:48:22 +00:00
|
|
|
|
|
|
|
@- echo "\n### deploying helm chart"
|
|
|
|
@- helmfile --file helmfile.yaml apply --suppress-secrets
|
|
|
|
|
|
|
|
pull-helm:
|
2022-11-15 14:23:56 +00:00
|
|
|
# nop
|