From b5c88ebe83022841e33ee8d02e31a4e7f73617ad Mon Sep 17 00:00:00 2001 From: Stefan Riepenhausen Date: Thu, 8 Dec 2022 10:34:34 +0100 Subject: [PATCH] debug parse invalid wire-format data --- helm.mk | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/helm.mk b/helm.mk index 7d7934a..072c1f4 100644 --- a/helm.mk +++ b/helm.mk @@ -1,20 +1,22 @@ # 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### create namespace $(NAMESPACE)" @- kubectl create namespace "$(NAMESPACE)" --dry-run=client -o yaml | kubectl apply -f - - + @- echo "\n### DEBUG NAMESPACE" + @- kubectl create namespace "$(NAMESPACE)" --dry-run=client -o yaml +# @- echo "\n### run kubectl apply -f secrets.yaml" - @- kubectl apply -f secrets.yaml - + @- kubectl apply -f secrets.yaml -o yaml +# @- echo "\n### deploying helm chart" @ helmfile --file helmfile.yaml apply --suppress-secrets - +# pull-helm: # nop