Update to v0.12.0 (#532)

* Update to v0.12.0

* Update values.schema.json

* Fix schema types

* revert image repo
This commit is contained in:
Jason O'Donnell 2021-05-25 13:46:48 -04:00 committed by GitHub
parent d53b011ae9
commit b21b37b07a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 141 additions and 40 deletions

View file

@ -1,5 +1,7 @@
## Unreleased ## Unreleased
## 0.12.0 (May 25th, 2021)
Features: Features:
* Pass additional arguments to `vault-csi-provider` using `csi.extraArgs` [GH-526](https://github.com/hashicorp/vault-helm/pull/526) * Pass additional arguments to `vault-csi-provider` using `csi.extraArgs` [GH-526](https://github.com/hashicorp/vault-helm/pull/526)

View file

@ -1,7 +1,7 @@
apiVersion: v2 apiVersion: v2
name: vault name: vault
version: 0.11.0 version: 0.12.0
appVersion: 1.7.0 appVersion: 1.7.2
kubeVersion: ">= 1.14.0-0" kubeVersion: ">= 1.14.0-0"
description: Official HashiCorp Vault Chart description: Official HashiCorp Vault Chart
home: https://www.vaultproject.io home: https://www.vaultproject.io

View file

@ -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.7.0_ent' \ --set='server.image.tag=1.7.2_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' .
@ -76,7 +76,7 @@ load _helpers
helm install "$(name_prefix)-west" \ helm install "$(name_prefix)-west" \
--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.2_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)-west-0" wait_for_running "$(name_prefix)-west-0"

View file

@ -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.7.0_ent' \ --set='server.image.tag=1.7.2_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"
@ -76,7 +76,7 @@ load _helpers
helm install "$(name_prefix)-west" \ helm install "$(name_prefix)-west" \
--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.2_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)-west-0" wait_for_running "$(name_prefix)-west-0"

View file

@ -9,7 +9,10 @@
"type": "object", "type": "object",
"properties": { "properties": {
"annotations": { "annotations": {
"type": ["object", "string"] "type": [
"object",
"string"
]
}, },
"updateStrategy": { "updateStrategy": {
"type": "object", "type": "object",
@ -71,7 +74,13 @@
"type": "object", "type": "object",
"properties": { "properties": {
"annotations": { "annotations": {
"type": ["object", "string"] "type": [
"object",
"string"
]
},
"tolerations": {
"type": ["null", "string"]
} }
} }
}, },
@ -102,15 +111,24 @@
"type": "object", "type": "object",
"properties": { "properties": {
"annotations": { "annotations": {
"type": ["object", "string"] "type": [
"object",
"string"
]
} }
} }
}, },
"volumeMounts": { "volumeMounts": {
"type": ["null", "array"] "type": [
"null",
"array"
]
}, },
"volumes": { "volumes": {
"type": ["null", "array"] "type": [
"null",
"array"
]
} }
} }
}, },
@ -130,7 +148,10 @@
"type": "object", "type": "object",
"properties": { "properties": {
"annotations": { "annotations": {
"type": ["object", "string"] "type": [
"object",
"string"
]
}, },
"enable": { "enable": {
"type": "boolean" "type": "boolean"
@ -180,7 +201,10 @@
} }
}, },
"annotations": { "annotations": {
"type": ["object", "string"] "type": [
"object",
"string"
]
}, },
"authPath": { "authPath": {
"type": "string" "type": "string"
@ -198,7 +222,10 @@
"type": "string" "type": "string"
}, },
"secretName": { "secretName": {
"type": ["null", "string"] "type": [
"null",
"string"
]
} }
} }
}, },
@ -298,12 +325,18 @@
"type": "object", "type": "object",
"properties": { "properties": {
"annotations": { "annotations": {
"type": ["object", "string"] "type": [
"object",
"string"
]
} }
} }
}, },
"tolerations": { "tolerations": {
"type": ["null", "string"] "type": [
"null",
"string"
]
} }
} }
}, },
@ -314,7 +347,10 @@
"type": "string" "type": "string"
}, },
"annotations": { "annotations": {
"type": ["object", "string"] "type": [
"object",
"string"
]
}, },
"auditStorage": { "auditStorage": {
"type": "object", "type": "object",
@ -323,10 +359,16 @@
"type": "string" "type": "string"
}, },
"annotations": { "annotations": {
"type": ["object", "string"] "type": [
"object",
"string"
]
}, },
"enabled": { "enabled": {
"type": ["boolean", "string"] "type": [
"boolean",
"string"
]
}, },
"mountPath": { "mountPath": {
"type": "string" "type": "string"
@ -335,7 +377,10 @@
"type": "string" "type": "string"
}, },
"storageClass": { "storageClass": {
"type": ["null", "string"] "type": [
"null",
"string"
]
} }
} }
}, },
@ -354,10 +399,16 @@
"type": "string" "type": "string"
}, },
"annotations": { "annotations": {
"type": ["object", "string"] "type": [
"object",
"string"
]
}, },
"enabled": { "enabled": {
"type": ["boolean", "string"] "type": [
"boolean",
"string"
]
}, },
"mountPath": { "mountPath": {
"type": "string" "type": "string"
@ -366,7 +417,10 @@
"type": "string" "type": "string"
}, },
"storageClass": { "storageClass": {
"type": ["null", "string"] "type": [
"null",
"string"
]
} }
} }
}, },
@ -388,13 +442,19 @@
"type": "string" "type": "string"
}, },
"extraContainers": { "extraContainers": {
"type": ["null", "array"] "type": [
"null",
"array"
]
}, },
"extraEnvironmentVars": { "extraEnvironmentVars": {
"type": "object" "type": "object"
}, },
"extraInitContainers": { "extraInitContainers": {
"type": ["null", "array"] "type": [
"null",
"array"
]
}, },
"extraLabels": { "extraLabels": {
"type": "object" "type": "object"
@ -409,7 +469,10 @@
"type": "object", "type": "object",
"properties": { "properties": {
"apiAddr": { "apiAddr": {
"type": ["null", "string"] "type": [
"null",
"string"
]
}, },
"config": { "config": {
"type": "string" "type": "string"
@ -465,7 +528,10 @@
"type": "object", "type": "object",
"properties": { "properties": {
"annotations": { "annotations": {
"type": ["object", "string"] "type": [
"object",
"string"
]
}, },
"enabled": { "enabled": {
"type": "boolean" "type": "boolean"
@ -539,7 +605,10 @@
} }
}, },
"nodeSelector": { "nodeSelector": {
"type": ["null", "string"] "type": [
"null",
"string"
]
}, },
"postStart": { "postStart": {
"type": "array" "type": "array"
@ -580,7 +649,10 @@
"type": "object", "type": "object",
"properties": { "properties": {
"annotations": { "annotations": {
"type": ["object", "string"] "type": [
"object",
"string"
]
}, },
"enabled": { "enabled": {
"type": "boolean" "type": "boolean"
@ -597,7 +669,10 @@
"type": "object", "type": "object",
"properties": { "properties": {
"annotations": { "annotations": {
"type": ["object", "string"] "type": [
"object",
"string"
]
}, },
"enabled": { "enabled": {
"type": "boolean" "type": "boolean"
@ -614,7 +689,10 @@
"type": "object", "type": "object",
"properties": { "properties": {
"annotations": { "annotations": {
"type": ["object", "string"] "type": [
"object",
"string"
]
}, },
"create": { "create": {
"type": "boolean" "type": "boolean"
@ -634,7 +712,10 @@
"type": "string" "type": "string"
}, },
"enabled": { "enabled": {
"type": ["string", "boolean"] "type": [
"string",
"boolean"
]
} }
} }
}, },
@ -642,21 +723,33 @@
"type": "object", "type": "object",
"properties": { "properties": {
"annotations": { "annotations": {
"type": ["object", "string"] "type": [
"object",
"string"
]
} }
} }
}, },
"tolerations": { "tolerations": {
"type": ["null", "string"] "type": [
"null",
"string"
]
}, },
"updateStrategyType": { "updateStrategyType": {
"type": "string" "type": "string"
}, },
"volumeMounts": { "volumeMounts": {
"type": ["null", "array"] "type": [
"null",
"array"
]
}, },
"volumes": { "volumes": {
"type": ["null", "array"] "type": [
"null",
"array"
]
} }
} }
}, },
@ -667,7 +760,10 @@
"type": "boolean" "type": "boolean"
}, },
"annotations": { "annotations": {
"type": ["object", "string"] "type": [
"object",
"string"
]
}, },
"enabled": { "enabled": {
"type": "boolean" "type": "boolean"
@ -683,6 +779,9 @@
}, },
"serviceType": { "serviceType": {
"type": "string" "type": "string"
},
"targetPort": {
"type": "integer"
} }
} }
} }

View file

@ -52,7 +52,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.10.0" tag: "0.10.1"
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
@ -60,7 +60,7 @@ injector:
# required. # required.
agentImage: agentImage:
repository: "vault" repository: "vault"
tag: "1.7.0" tag: "1.7.2"
# The default values for the injected Vault Agent containers. # The default values for the injected Vault Agent containers.
agentDefaults: agentDefaults:
@ -204,7 +204,7 @@ server:
image: image:
repository: "vault" repository: "vault"
tag: "1.7.0" tag: "1.7.2"
# Overrides the default Image Pull Policy # Overrides the default Image Pull Policy
pullPolicy: IfNotPresent pullPolicy: IfNotPresent