Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version for 2.8.3 #459

Merged
merged 2 commits into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/core/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: core
apiVersion: v1
version: 2.8.2
appVersion: 5.4.0
version: 2.8.3
appVersion: 5.4.1
description: Helm chart for NeuVector's core services
home: https://neuvector.com
icon: https://avatars2.githubusercontent.com/u/19367275?s=200&v=4
Expand Down
2 changes: 1 addition & 1 deletion charts/core/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
openshift: false

registry: docker.io
tag: 5.4.0
tag: 5.4.1
oem:
imagePullSecrets:
psp: false
Expand Down
4 changes: 2 additions & 2 deletions charts/crd/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: crd
apiVersion: v1
version: 2.8.2
appVersion: 5.4.0
version: 2.8.3
appVersion: 5.4.1
description: Helm chart for NeuVector's CRD services
home: https://neuvector.com
icon: https://avatars2.githubusercontent.com/u/19367275?s=200&v=4
Expand Down
2 changes: 1 addition & 1 deletion charts/monitor/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: monitor
apiVersion: v1
version: 2.8.2
version: 2.8.3
appVersion: 1-1.0.0
description: Helm chart for NeuVector monitor services
home: https://neuvector.com
Expand Down
9 changes: 9 additions & 0 deletions scripts/bump_version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Usage
# ./scripts/bump_version.sh <chart version> <app version>

sed -i "s/^version:.*/version: $1/g" charts/core/Chart.yaml
sed -i "s/^appVersion:.*/appVersion: $2/g" charts/core/Chart.yaml
sed -i "s/^version:.*/version: $1/g" charts/crd/Chart.yaml
sed -i "s/^appVersion:.*/appVersion: $2/g" charts/crd/Chart.yaml
sed -i "s/^version:.*/version: $1/g" charts/monitor/Chart.yaml
sed -i "s/^tag:.*/tag: $2/g" charts/core/values.yaml
Loading