Update to 0.10.0 (#477)
* Update to v0.10.0 * Fix typo * Add csi link in changelog
This commit is contained in:
parent
102f9e49e2
commit
f75b19f068
5 changed files with 20 additions and 10 deletions
|
@ -1,7 +1,7 @@
|
||||||
## Unreleased
|
## 0.10.0 (March 25th, 2021)
|
||||||
|
|
||||||
Features:
|
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:
|
Improvements:
|
||||||
* `objectSelector` can now be set on the mutating admission webhook [GH-456](https://github.com/hashicorp/vault-helm/pull/456)
|
* `objectSelector` can now be set on the mutating admission webhook [GH-456](https://github.com/hashicorp/vault-helm/pull/456)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: vault
|
name: vault
|
||||||
version: 0.9.1
|
version: 0.10.0
|
||||||
appVersion: 1.6.2
|
appVersion: 1.7.0
|
||||||
description: Official HashiCorp Vault Chart
|
description: Official HashiCorp Vault Chart
|
||||||
home: https://www.vaultproject.io
|
home: https://www.vaultproject.io
|
||||||
icon: https://github.com/hashicorp/vault/raw/f22d202cde2018f9455dec755118a9b84586e082/Vault_PrimaryLogo_Black.png
|
icon: https://github.com/hashicorp/vault/raw/f22d202cde2018f9455dec755118a9b84586e082/Vault_PrimaryLogo_Black.png
|
||||||
|
|
|
@ -7,7 +7,7 @@ load _helpers
|
||||||
|
|
||||||
helm install "$(name_prefix)-east" \
|
helm install "$(name_prefix)-east" \
|
||||||
--set='server.image.repository=hashicorp/vault-enterprise' \
|
--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='injector.enabled=false' \
|
||||||
--set='server.ha.enabled=true' \
|
--set='server.ha.enabled=true' \
|
||||||
--set='server.ha.raft.enabled=true' .
|
--set='server.ha.raft.enabled=true' .
|
||||||
|
|
|
@ -8,7 +8,7 @@ load _helpers
|
||||||
helm install "$(name_prefix)-east" \
|
helm install "$(name_prefix)-east" \
|
||||||
--set='injector.enabled=false' \
|
--set='injector.enabled=false' \
|
||||||
--set='server.image.repository=hashicorp/vault-enterprise' \
|
--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.enabled=true' \
|
||||||
--set='server.ha.raft.enabled=true' .
|
--set='server.ha.raft.enabled=true' .
|
||||||
wait_for_running "$(name_prefix)-east-0"
|
wait_for_running "$(name_prefix)-east-0"
|
||||||
|
|
16
values.yaml
16
values.yaml
|
@ -49,7 +49,7 @@ injector:
|
||||||
# image sets the repo and tag of the vault-k8s image to use for the injector.
|
# image sets the repo and tag of the vault-k8s image to use for the injector.
|
||||||
image:
|
image:
|
||||||
repository: "hashicorp/vault-k8s"
|
repository: "hashicorp/vault-k8s"
|
||||||
tag: "0.8.0"
|
tag: "0.9.0"
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
# agentImage sets the repo and tag of the Vault image to use for the Vault Agent
|
# agentImage sets the repo and tag of the Vault image to use for the Vault Agent
|
||||||
|
@ -57,7 +57,7 @@ injector:
|
||||||
# required.
|
# required.
|
||||||
agentImage:
|
agentImage:
|
||||||
repository: "vault"
|
repository: "vault"
|
||||||
tag: "1.6.2"
|
tag: "1.7.0"
|
||||||
|
|
||||||
# Mount Path of the Vault Kubernetes Auth Method.
|
# Mount Path of the Vault Kubernetes Auth Method.
|
||||||
authPath: "auth/kubernetes"
|
authPath: "auth/kubernetes"
|
||||||
|
@ -180,7 +180,7 @@ server:
|
||||||
|
|
||||||
image:
|
image:
|
||||||
repository: "vault"
|
repository: "vault"
|
||||||
tag: "1.6.2"
|
tag: "1.7.0"
|
||||||
# Overrides the default Image Pull Policy
|
# Overrides the default Image Pull Policy
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
|
@ -696,17 +696,27 @@ csi:
|
||||||
|
|
||||||
# Used to configure readinessProbe for the pods.
|
# Used to configure readinessProbe for the pods.
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
|
# When a probe fails, Kubernetes will try failureThreshold times before giving up
|
||||||
failureThreshold: 2
|
failureThreshold: 2
|
||||||
|
# Number of seconds after the container has started before probe initiates
|
||||||
initialDelaySeconds: 5
|
initialDelaySeconds: 5
|
||||||
|
# How often (in seconds) to perform the probe
|
||||||
periodSeconds: 5
|
periodSeconds: 5
|
||||||
|
# Minimum consecutive successes for the probe to be considered successful after having failed
|
||||||
successThreshold: 1
|
successThreshold: 1
|
||||||
|
# Number of seconds after which the probe times out.
|
||||||
timeoutSeconds: 3
|
timeoutSeconds: 3
|
||||||
# Used to configure livenessProbe for the pods.
|
# Used to configure livenessProbe for the pods.
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
|
# When a probe fails, Kubernetes will try failureThreshold times before giving up
|
||||||
failureThreshold: 2
|
failureThreshold: 2
|
||||||
|
# Number of seconds after the container has started before probe initiates
|
||||||
initialDelaySeconds: 5
|
initialDelaySeconds: 5
|
||||||
|
# How often (in seconds) to perform the probe
|
||||||
periodSeconds: 5
|
periodSeconds: 5
|
||||||
|
# Minimum consecutive successes for the probe to be considered successful after having failed
|
||||||
successThreshold: 1
|
successThreshold: 1
|
||||||
|
# Number of seconds after which the probe times out.
|
||||||
timeoutSeconds: 3
|
timeoutSeconds: 3
|
||||||
|
|
||||||
# Enables debug logging.
|
# Enables debug logging.
|
||||||
|
|
Loading…
Reference in a new issue