From da53b31f9aa95318adba5950850cc2b3400623e6 Mon Sep 17 00:00:00 2001 From: Volodymyr Stoiko Date: Tue, 3 Jun 2025 15:15:04 +0300 Subject: [PATCH] Set tap.docker.tag to minor version of release --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c2ff7b26d..37491f670 100644 --- a/Makefile +++ b/Makefile @@ -85,7 +85,8 @@ kubectl-view-kubeshark-resources: ## This command outputs all Kubernetes resourc generate-helm-values: ## Generate the Helm values from config.yaml mv ~/.kubeshark/config.yaml ~/.kubeshark/config.yaml.old; bin/kubeshark__ config>helm-chart/values.yaml;mv ~/.kubeshark/config.yaml.old ~/.kubeshark/config.yaml - sed -i 's/^license:.*/license: ""/' helm-chart/values.yaml && sed -i '1i # find a detailed description here: https://github.com/kubeshark/kubeshark/blob/master/helm-chart/README.md' helm-chart/values.yaml + sed -i 's/^license:.*/license: ""/' helm-chart/values.yaml && sed -i '1i # find a detailed description here: https://github.com/kubeshark/kubeshark/blob/master/helm-chart/README.md' helm-chart/values.yaml + sed -i "s/^ tag:.*/ tag: \"$(shell echo $(VERSION) | sed -E 's/^(v?)([0-9]+\.[0-9]+)\..*/\1\2/')\"/" helm-chart/values.yaml generate-manifests: ## Generate the manifests from the Helm chart using default configuration helm template kubeshark -n default ./helm-chart > ./manifests/complete.yaml