File tree Expand file tree Collapse file tree 5 files changed +18
-7
lines changed
Expand file tree Collapse file tree 5 files changed +18
-7
lines changed Original file line number Diff line number Diff line change 11## Unreleased
22
3+ ## 0.30.0 (March 27, 2025)
4+
35Changes:
46
57* Default ` vault ` version updated to 1.19.0
@@ -10,6 +12,15 @@ Features:
1012
1113* server: Support setting custom preStop commands [ GH-1099 ] ( https://github.com/hashicorp/vault-helm/pull/1099 )
1214
15+ Improvements:
16+
17+ * server: Add pod labels to server-test.yaml [ GH-1094 ] ( https://github.com/hashicorp/vault-helm/pull/1094 )
18+
19+ Bugs:
20+
21+ * server: Fix invalid yaml in server test when volumeMounts or volumes are empty [ GH-855 ] ( https://github.com/hashicorp/vault-helm/pull/855 )
22+ * injector: Add RBAC for deleting configmaps [ GH-1100 ] ( https://github.com/hashicorp/vault-helm/pull/1100 )
23+
1324## 0.29.1 (November 20, 2024)
1425
1526Bugs:
Original file line number Diff line number Diff line change 33
44apiVersion : v2
55name : vault
6- version : 0.29.1
7- appVersion : 1.18.1
6+ version : 0.30.0
7+ appVersion : 1.19.0
88kubeVersion : " >= 1.20.0-0"
99description : Official HashiCorp Vault Chart
1010home : https://www.vaultproject.io
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ this README. Please refer to the Kubernetes and Helm documentation.
2121The versions required are:
2222
2323 * ** Helm 3.6+**
24- * ** Kubernetes 1.27 +** - This is the earliest version of Kubernetes tested.
24+ * ** Kubernetes 1.28 +** - This is the earliest version of Kubernetes tested.
2525 It is possible that this chart works with earlier versions but it is
2626 untested.
2727
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ setup_file() {
66 cd ` chart_dir`
77 export VERIFY_OUTPUT=" /$BATS_RUN_TMPDIR /verify.json"
88 export CHART_VOLUME=vault-helm-chart-src
9- local IMAGE=" quay.io/redhat-certification/chart-verifier:1.13.8 "
9+ local IMAGE=" quay.io/redhat-certification/chart-verifier:1.13.10 "
1010 # chart-verifier requires an openshift version if a cluster isn't available
11- local OPENSHIFT_VERSION=" 4.17 "
11+ local OPENSHIFT_VERSION=" 4.18 "
1212 local DISABLED_TESTS=" chart-testing"
1313
1414 local run_cmd=" chart-verifier"
Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ load _helpers
220220@test " server/standalone-server-test-Pod: no server.volumes adds no volumes" {
221221 cd ` chart_dir`
222222
223- # Test that it defines it
223+ # Test that it is not defined
224224 local actual=$( helm template \
225225 --show-only templates/tests/server-test.yaml \
226226 . | tee /dev/stderr |
@@ -256,7 +256,7 @@ load _helpers
256256@test " server/standalone-server-test-Pod: no server.volumeMounts adds no volumeMounts" {
257257 cd ` chart_dir`
258258
259- # Test that it defines it
259+ # Test that it is not defined
260260 local actual=$( helm template \
261261 --show-only templates/tests/server-test.yaml \
262262 . | tee /dev/stderr |
You can’t perform that action at this time.
0 commit comments