Skip to content

Commit eecd049

Browse files
authored
Preparing release v0.30.0 (#1102)
1 parent 2ca14e5 commit eecd049

File tree

5 files changed

+18
-7
lines changed

5 files changed

+18
-7
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Unreleased
22

3+
## 0.30.0 (March 27, 2025)
4+
35
Changes:
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

1526
Bugs:

Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
apiVersion: v2
55
name: vault
6-
version: 0.29.1
7-
appVersion: 1.18.1
6+
version: 0.30.0
7+
appVersion: 1.19.0
88
kubeVersion: ">= 1.20.0-0"
99
description: Official HashiCorp Vault Chart
1010
home: https://www.vaultproject.io

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ this README. Please refer to the Kubernetes and Helm documentation.
2121
The 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

test/chart/verifier.bats

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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"

test/unit/server-test.bats

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 |

0 commit comments

Comments
 (0)