From a9065452236818173f6cbcaf84ec00c371298f10 Mon Sep 17 00:00:00 2001 From: oilbeater Date: Wed, 21 Feb 2024 06:27:27 +0000 Subject: [PATCH] modify chart.yaml version Signed-off-by: oilbeater --- charts/kube-ovn/Chart.yaml | 2 +- hack/release.sh | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/charts/kube-ovn/Chart.yaml b/charts/kube-ovn/Chart.yaml index 7204c988693..53397c9b3d8 100644 --- a/charts/kube-ovn/Chart.yaml +++ b/charts/kube-ovn/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.12.4 +version: v1.12.5 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/hack/release.sh b/hack/release.sh index 8f9677bd26b..a05d7d78732 100755 --- a/hack/release.sh +++ b/hack/release.sh @@ -31,10 +31,12 @@ docker manifest push kubeovn/vpc-nat-gateway:${VERSION} echo "modify tag in install.sh and values.yaml" sed -i '/^VERSION=/c\VERSION="'"${VERSION}"'"' dist/images/install.sh sed -i 's/tag:\ .*/tag:\ '"${VERSION}"'/' charts/kube-ovn/values.yaml +sed -i 's/version:\ .*/version:\ '"${VERSION}"'/' charts/kube-ovn/Chart.yaml echo "commit, tag and push" git add dist/images/install.sh git add charts/kube-ovn/values.yaml +git add charts/kube-ovn/Chart.yaml git commit -m "release ${VERSION}" git tag ${VERSION} git push