From c194a42019f507947acf4895b726d97218ebd3db Mon Sep 17 00:00:00 2001 From: Martin Marosi Date: Mon, 12 Aug 2024 14:25:24 +0200 Subject: [PATCH] Version debugging --- build/template_check.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build/template_check.sh b/build/template_check.sh index fb1013b5..9ee3ef00 100755 --- a/build/template_check.sh +++ b/build/template_check.sh @@ -10,6 +10,12 @@ CURRENT_DEPLOY=$(md5sum deploy.yml) make build-template +echo "Checking if deployment template is up to date" +echo "Current deployment template: $CURRENT_DEPLOY" +echo "New deployment template: $(md5sum deploy.yml)" +echo $(md5sum --version) +echo $(kustomize version) + if [[ $CURRENT_DEPLOY != $(md5sum deploy.yml) ]]; then echo "Deployment template not updated. Please run make build-template and recommit" exit 1