From 6f1106c2e47e37c2a08d3ee72bdbd7df0927b7c1 Mon Sep 17 00:00:00 2001 From: Christopher Swenson Date: Mon, 1 Aug 2022 13:20:13 -0700 Subject: [PATCH 1/2] Changelog and schema update for active/standby node port Follow-up to https://github.com/hashicorp/vault-helm/pull/610 --- CHANGELOG.md | 1 + values.schema.json | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93e798f7d..6d6fe395f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ## Unreleased CHANGES: +* Add `server.service.activeNodePort` and `server.service.standbyNodePort` to specify the `nodePort` for active and standby services. [GH-610](https://github.com/hashicorp/vault-helm/pull/610) * Start testing against Kubernetes 1.24. [GH-744](https://github.com/hashicorp/vault-helm/pull/744) * Deprecated `injector.externalVaultAddr`. Added `global.externalVaultAddr`, which applies to both the Injector and the CSI Provider. [GH-745](https://github.com/hashicorp/vault-helm/pull/745) * CSI Provider pods now set the `VAULT_ADDR` environment variable to either the internal Vault service or the configured external address. [GH-745](https://github.com/hashicorp/vault-helm/pull/745) diff --git a/values.schema.json b/values.schema.json index 3b364411f..27e3d7bc6 100644 --- a/values.schema.json +++ b/values.schema.json @@ -828,6 +828,15 @@ }, "targetPort": { "type": "integer" + }, + "nodePort": { + "type": "integer" + }, + "activeNodePort": { + "type": "integer" + }, + "standbyNodePort": { + "type": "integer" } } }, From fff4b4967a0f85585114f836f6b408d03ea3d916 Mon Sep 17 00:00:00 2001 From: Christopher Swenson Date: Tue, 2 Aug 2022 10:04:44 -0700 Subject: [PATCH 2/2] Change to feature --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d6fe395f..2dbcf4dfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,12 @@ ## Unreleased CHANGES: -* Add `server.service.activeNodePort` and `server.service.standbyNodePort` to specify the `nodePort` for active and standby services. [GH-610](https://github.com/hashicorp/vault-helm/pull/610) * Start testing against Kubernetes 1.24. [GH-744](https://github.com/hashicorp/vault-helm/pull/744) * Deprecated `injector.externalVaultAddr`. Added `global.externalVaultAddr`, which applies to both the Injector and the CSI Provider. [GH-745](https://github.com/hashicorp/vault-helm/pull/745) * CSI Provider pods now set the `VAULT_ADDR` environment variable to either the internal Vault service or the configured external address. [GH-745](https://github.com/hashicorp/vault-helm/pull/745) Features: +* Add `server.service.activeNodePort` and `server.service.standbyNodePort` to specify the `nodePort` for active and standby services. [GH-610](https://github.com/hashicorp/vault-helm/pull/610) * Support for setting annotations on the injector's serviceAccount [GH-753](https://github.com/hashicorp/vault-helm/pull/753) ## 0.20.1 (May 25th, 2022)