* Add changelog for #831 * fixes bats test
This commit is contained in:
parent
9f189801a6
commit
fc7d4326fc
2 changed files with 2 additions and 0 deletions
|
@ -6,6 +6,7 @@ Changes:
|
||||||
|
|
||||||
Features:
|
Features:
|
||||||
* server: New `extraPorts` option for adding ports to the Vault server statefulset [GH-841](https://github.com/hashicorp/vault-helm/pull/841)
|
* server: New `extraPorts` option for adding ports to the Vault server statefulset [GH-841](https://github.com/hashicorp/vault-helm/pull/841)
|
||||||
|
* server: Add configurable Port Number in readinessProbe and livenessProbe for the server-statefulset [GH-831](https://github.com/hashicorp/vault-helm/pull/831)
|
||||||
* injector: Make livenessProbe and readinessProbe configurable and add configurable startupProbe [GH-852](https://github.com/hashicorp/vault-helm/pull/852)
|
* injector: Make livenessProbe and readinessProbe configurable and add configurable startupProbe [GH-852](https://github.com/hashicorp/vault-helm/pull/852)
|
||||||
|
|
||||||
## 0.23.0 (November 28th, 2022)
|
## 0.23.0 (November 28th, 2022)
|
||||||
|
|
|
@ -1838,6 +1838,7 @@ load _helpers
|
||||||
local actual=$(helm template \
|
local actual=$(helm template \
|
||||||
--show-only templates/server-statefulset.yaml \
|
--show-only templates/server-statefulset.yaml \
|
||||||
--set 'server.readinessProbe.enabled=true' \
|
--set 'server.readinessProbe.enabled=true' \
|
||||||
|
--set 'server.readinessProbe.path=foo' \
|
||||||
. | tee /dev/stderr |
|
. | tee /dev/stderr |
|
||||||
yq -r '.spec.template.spec.containers[0].readinessProbe.httpGet.port' | tee /dev/stderr)
|
yq -r '.spec.template.spec.containers[0].readinessProbe.httpGet.port' | tee /dev/stderr)
|
||||||
[ "${actual}" = "8200" ]
|
[ "${actual}" = "8200" ]
|
||||||
|
|
Loading…
Reference in a new issue