From d9a3403c942c61d52243d21ec9ec6c73676b0091 Mon Sep 17 00:00:00 2001 From: Christopher Swenson Date: Thu, 6 Apr 2023 14:40:13 -0700 Subject: [PATCH 1/2] Prepare for 0.24.0 release --- CHANGELOG.md | 2 ++ Chart.yaml | 2 +- values.openshift.yaml | 2 +- values.yaml | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 823fb5640..d1c2f32b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## Unreleased +## 0.24.0 (April 6, 2023) + Changes: * Earliest Kubernetes version tested is now 1.22 * `vault` updated to 1.13.1 diff --git a/Chart.yaml b/Chart.yaml index d74782ba1..a4f7485d5 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 name: vault -version: 0.23.0 +version: 0.24.0 appVersion: 1.13.1 kubeVersion: ">= 1.22.0-0" description: Official HashiCorp Vault Chart diff --git a/values.openshift.yaml b/values.openshift.yaml index 88521a16b..da71dcfb9 100644 --- a/values.openshift.yaml +++ b/values.openshift.yaml @@ -9,7 +9,7 @@ global: injector: image: repository: "registry.connect.redhat.com/hashicorp/vault-k8s" - tag: "1.1.0-ubi" + tag: "1.2.1-ubi" agentImage: repository: "registry.connect.redhat.com/hashicorp/vault" diff --git a/values.yaml b/values.yaml index 75da40b28..9df0ffa1a 100644 --- a/values.yaml +++ b/values.yaml @@ -65,7 +65,7 @@ injector: # image sets the repo and tag of the vault-k8s image to use for the injector. image: repository: "hashicorp/vault-k8s" - tag: "1.1.0" + tag: "1.2.1" pullPolicy: IfNotPresent # agentImage sets the repo and tag of the Vault image to use for the Vault Agent From bd3dc86d5f34791b08e33f08334c0cdd0ddaf367 Mon Sep 17 00:00:00 2001 From: Christopher Swenson Date: Thu, 6 Apr 2023 15:00:14 -0700 Subject: [PATCH 2/2] Fix typo in CSI tests --- test/acceptance/csi.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/acceptance/csi.bats b/test/acceptance/csi.bats index 2d7ba8de9..d45436419 100644 --- a/test/acceptance/csi.bats +++ b/test/acceptance/csi.bats @@ -14,7 +14,7 @@ load _helpers CSI_DRIVER_VERSION=1.3.2 helm install secrets-store-csi-driver secrets-store-csi-driver \ --repo https://kubernetes-sigs.github.io/secrets-store-csi-driver/charts \ - --version=$(CSI_DRIVER_VERSION) \ + --version=$CSI_DRIVER_VERSION \ --wait --timeout=5m \ --namespace=acceptance \ --set linux.image.pullPolicy="IfNotPresent" \