Merge pull request #288 from gyptazy/feature/281-helm-chart-versioning

feature: Add Helm chart support for ProxLB
This commit is contained in:
gyptazy
2025-08-19 06:28:31 +02:00
committed by GitHub

View File

@@ -1,6 +1,12 @@
#!/usr/bin/env bash
VERSION="1.1.4"
# ProxLB
sed -i "s/^__version__ = .*/__version__ = \"$VERSION\"/" "proxlb/utils/version.py"
sed -i "s/version=\"[0-9]*\.[0-9]*\.[0-9]*\"/version=\"$VERSION\"/" setup.py
# Helm Chart
sed -i "s/^version: .*/version: \"$VERSION\"/" helm/proxlb/Chart.yaml
sed -i "s/^appVersion: .*/appVersion: \"v$VERSION\"/" helm/proxlb/Chart.yaml
echo "OK: Versions have been sucessfully set to $VERSION"