From c91e4f7a710b34f3e66bdee2e34675e9cf6fdf8a Mon Sep 17 00:00:00 2001 From: Theron Voran Date: Wed, 20 Nov 2024 14:03:46 -0800 Subject: [PATCH] docs/vault-helm: updates for v0.29.1 release --- .../docs/configuration/service-registration/kubernetes.mdx | 2 +- website/content/docs/platform/k8s/helm/run.mdx | 4 ++-- website/content/partials/helm/install.mdx | 6 +++--- website/content/partials/helm/repo.mdx | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/website/content/docs/configuration/service-registration/kubernetes.mdx b/website/content/docs/configuration/service-registration/kubernetes.mdx index c5d42b729005..e34742893ebc 100644 --- a/website/content/docs/configuration/service-registration/kubernetes.mdx +++ b/website/content/docs/configuration/service-registration/kubernetes.mdx @@ -118,7 +118,7 @@ metadata: labels: app.kubernetes.io/instance: vault app.kubernetes.io/name: vault - helm.sh/chart: vault-0.29.0 + helm.sh/chart: vault-0.29.1 name: vault-active-us-east namespace: default spec: diff --git a/website/content/docs/platform/k8s/helm/run.mdx b/website/content/docs/platform/k8s/helm/run.mdx index f52a2c2603b8..7bf1a2ec1335 100644 --- a/website/content/docs/platform/k8s/helm/run.mdx +++ b/website/content/docs/platform/k8s/helm/run.mdx @@ -409,14 +409,14 @@ Next, list the Helm versions and choose the desired version to install. ```bash $ helm search repo hashicorp/vault NAME CHART VERSION APP VERSION DESCRIPTION -hashicorp/vault 0.29.0 1.18.1 Official HashiCorp Vault Chart +hashicorp/vault 0.29.1 1.18.1 Official HashiCorp Vault Chart ``` Next, test the upgrade with `--dry-run` first to verify the changes sent to the Kubernetes cluster. ```shell-session -$ helm upgrade vault hashicorp/vault --version=0.29.0 \ +$ helm upgrade vault hashicorp/vault --version=0.29.1 \ --set='server.image.repository=vault' \ --set='server.image.tag=123.456' \ --dry-run diff --git a/website/content/partials/helm/install.mdx b/website/content/partials/helm/install.mdx index 5084bb1d2b83..219ecbb979b3 100644 --- a/website/content/partials/helm/install.mdx +++ b/website/content/partials/helm/install.mdx @@ -2,6 +2,7 @@ # List the available releases $ helm search repo hashicorp/vault -l NAME CHART VERSION APP VERSION DESCRIPTION +hashicorp/vault 0.29.1 1.18.1 Official HashiCorp Vault Chart hashicorp/vault 0.29.0 1.18.1 Official HashiCorp Vault Chart hashicorp/vault 0.28.1 1.17.2 Official HashiCorp Vault Chart hashicorp/vault 0.28.0 1.16.1 Official HashiCorp Vault Chart @@ -9,9 +10,8 @@ hashicorp/vault 0.27.0 1.15.2 Official HashiCorp Vault Chart hashicorp/vault 0.26.1 1.15.1 Official HashiCorp Vault Chart hashicorp/vault 0.26.0 1.15.1 Official HashiCorp Vault Chart hashicorp/vault 0.25.0 1.14.0 Official HashiCorp Vault Chart -hashicorp/vault 0.24.0 1.13.1 Official HashiCorp Vault Chart ... -# Install version 0.29.0 -$ helm install vault hashicorp/vault --version 0.29.0 +# Install version 0.29.1 +$ helm install vault hashicorp/vault --version 0.29.1 ``` diff --git a/website/content/partials/helm/repo.mdx b/website/content/partials/helm/repo.mdx index aafc36dd8b72..0fd539892737 100644 --- a/website/content/partials/helm/repo.mdx +++ b/website/content/partials/helm/repo.mdx @@ -4,5 +4,5 @@ $ helm repo add hashicorp https://helm.releases.hashicorp.com $ helm search repo hashicorp/vault NAME CHART VERSION APP VERSION DESCRIPTION -hashicorp/vault 0.29.0 1.18.1 Official HashiCorp Vault Chart +hashicorp/vault 0.29.1 1.18.1 Official HashiCorp Vault Chart ```