1
0
mirror of https://github.com/kubeshark/kubeshark.git synced 2025-05-06 15:49:08 +00:00

🔖 Bump the Helm chart version to 51.0.27

This commit is contained in:
M. Mert Yildiran 2023-11-16 21:31:23 +03:00
parent c94a399bc3
commit a028211f0a
No known key found for this signature in database
GPG Key ID: DA5D6DCBB758A461

View File

@ -154,11 +154,11 @@ port-forward-worker:
kubectl port-forward $$(kubectl get pods | awk '$$1 ~ /^$(LOGS_POD_PREFIX)/' | awk 'END {print $$1}') $(LOGS_FOLLOW) 8897:8897
release:
@cd ../worker && git tag -d v$(VERSION); git tag v$(VERSION) && git push origin --tags
@cd ../hub && git tag -d v$(VERSION); git tag v$(VERSION) && git push origin --tags
@cd ../front && git tag -d v$(VERSION); git tag v$(VERSION) && git push origin --tags
@cd ../worker && git checkout master && git pull && git tag -d v$(VERSION); git tag v$(VERSION) && git push origin --tags
@cd ../hub && git checkout master && git pull && git tag -d v$(VERSION); git tag v$(VERSION) && git push origin --tags
@cd ../front && git checkout master && git pull && git tag -d v$(VERSION); git tag v$(VERSION) && git push origin --tags
@cd ../kubeshark && sed -i 's/^version:.*/version: "$(VERSION)"/' helm-chart/Chart.yaml
@git add -A . && git commit -m ":bookmark: Bump the Helm chart version to `$(VERSION)`" && git push
@git add -A . && git commit -m ":bookmark: Bump the Helm chart version to $(VERSION)" && git push
@git tag v$(VERSION) && git push origin --tags
@cd helm-chart && cp -r . ../../kubeshark.github.io/charts/chart
@cd ../../kubeshark.github.io/ && git add -A . && git commit -m ":sparkles: Update the Helm chart" && git push