diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d6e6a7..4e90086 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ -## Unreleased +## 0.10.0 (March 25th, 2021) Features: -* Add support for Vault CSI provider [GH-461](https://github.com/hashicorp/vault-helm/pull/461) +* Add support for [Vault CSI provider](https://github.com/hashicorp/vault-csi-provider) [GH-461](https://github.com/hashicorp/vault-helm/pull/461) Improvements: * `objectSelector` can now be set on the mutating admission webhook [GH-456](https://github.com/hashicorp/vault-helm/pull/456) diff --git a/Chart.yaml b/Chart.yaml index 3456fa4..0437069 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 name: vault -version: 0.9.1 -appVersion: 1.6.2 +version: 0.10.0 +appVersion: 1.7.0 description: Official HashiCorp Vault Chart home: https://www.vaultproject.io icon: https://github.com/hashicorp/vault/raw/f22d202cde2018f9455dec755118a9b84586e082/Vault_PrimaryLogo_Black.png diff --git a/test/acceptance/server-ha-enterprise-dr.bats b/test/acceptance/server-ha-enterprise-dr.bats index 3698f08..5b04d2c 100644 --- a/test/acceptance/server-ha-enterprise-dr.bats +++ b/test/acceptance/server-ha-enterprise-dr.bats @@ -7,7 +7,7 @@ load _helpers helm install "$(name_prefix)-east" \ --set='server.image.repository=hashicorp/vault-enterprise' \ - --set='server.image.tag=1.6.2_ent' \ + --set='server.image.tag=1.7.0_ent' \ --set='injector.enabled=false' \ --set='server.ha.enabled=true' \ --set='server.ha.raft.enabled=true' . diff --git a/test/acceptance/server-ha-enterprise-perf.bats b/test/acceptance/server-ha-enterprise-perf.bats index 5fcfbce..5c9b0c5 100644 --- a/test/acceptance/server-ha-enterprise-perf.bats +++ b/test/acceptance/server-ha-enterprise-perf.bats @@ -8,7 +8,7 @@ load _helpers helm install "$(name_prefix)-east" \ --set='injector.enabled=false' \ --set='server.image.repository=hashicorp/vault-enterprise' \ - --set='server.image.tag=1.6.2_ent' \ + --set='server.image.tag=1.7.0_ent' \ --set='server.ha.enabled=true' \ --set='server.ha.raft.enabled=true' . wait_for_running "$(name_prefix)-east-0" diff --git a/values.yaml b/values.yaml index c64d3af..fe4f6d1 100644 --- a/values.yaml +++ b/values.yaml @@ -49,7 +49,7 @@ injector: # image sets the repo and tag of the vault-k8s image to use for the injector. image: repository: "hashicorp/vault-k8s" - tag: "0.8.0" + tag: "0.9.0" pullPolicy: IfNotPresent # agentImage sets the repo and tag of the Vault image to use for the Vault Agent @@ -57,7 +57,7 @@ injector: # required. agentImage: repository: "vault" - tag: "1.6.2" + tag: "1.7.0" # Mount Path of the Vault Kubernetes Auth Method. authPath: "auth/kubernetes" @@ -180,7 +180,7 @@ server: image: repository: "vault" - tag: "1.6.2" + tag: "1.7.0" # Overrides the default Image Pull Policy pullPolicy: IfNotPresent @@ -696,18 +696,28 @@ csi: # Used to configure readinessProbe for the pods. readinessProbe: + # When a probe fails, Kubernetes will try failureThreshold times before giving up failureThreshold: 2 + # Number of seconds after the container has started before probe initiates initialDelaySeconds: 5 + # How often (in seconds) to perform the probe periodSeconds: 5 + # Minimum consecutive successes for the probe to be considered successful after having failed successThreshold: 1 + # Number of seconds after which the probe times out. timeoutSeconds: 3 # Used to configure livenessProbe for the pods. livenessProbe: + # When a probe fails, Kubernetes will try failureThreshold times before giving up failureThreshold: 2 + # Number of seconds after the container has started before probe initiates initialDelaySeconds: 5 + # How often (in seconds) to perform the probe periodSeconds: 5 + # Minimum consecutive successes for the probe to be considered successful after having failed successThreshold: 1 + # Number of seconds after which the probe times out. timeoutSeconds: 3 # Enables debug logging. - debug: false \ No newline at end of file + debug: false