From 0895f33fcd64f758d15ed1074320e26e07ea54e8 Mon Sep 17 00:00:00 2001 From: Thorsten Hans Date: Mon, 9 Sep 2024 15:39:43 +0200 Subject: [PATCH] chore: bump spin-operator chart version from 0.2.0 to 0.3.0 Signed-off-by: Thorsten Hans --- content/en/docs/install/azure-kubernetes-service.md | 2 +- content/en/docs/install/installing-with-helm.md | 4 ++-- content/en/docs/install/microk8s.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/en/docs/install/azure-kubernetes-service.md b/content/en/docs/install/azure-kubernetes-service.md index 373e2f6..a839913 100644 --- a/content/en/docs/install/azure-kubernetes-service.md +++ b/content/en/docs/install/azure-kubernetes-service.md @@ -148,7 +148,7 @@ namespace: helm install spin-operator \ --namespace spin-operator \ --create-namespace \ - --version 0.2.0 \ + --version 0.3.0 \ --wait \ oci://ghcr.io/spinkube/charts/spin-operator ``` diff --git a/content/en/docs/install/installing-with-helm.md b/content/en/docs/install/installing-with-helm.md index 8e3e889..4ec8cd2 100644 --- a/content/en/docs/install/installing-with-helm.md +++ b/content/en/docs/install/installing-with-helm.md @@ -91,7 +91,7 @@ The following installs the chart with the release name `spin-operator`: helm install spin-operator \ --namespace spin-operator \ --create-namespace \ - --version 0.2.0 \ + --version 0.3.0 \ --wait \ oci://ghcr.io/spinkube/charts/spin-operator ``` @@ -111,7 +111,7 @@ To upgrade the `spin-operator` release, run the following: # Upgrade Spin Operator using Helm helm upgrade spin-operator \ --namespace spin-operator \ - --version 0.2.0 \ + --version 0.3.0 \ --wait \ oci://ghcr.io/spinkube/charts/spin-operator ``` diff --git a/content/en/docs/install/microk8s.md b/content/en/docs/install/microk8s.md index 1a4b7dc..1907cae 100644 --- a/content/en/docs/install/microk8s.md +++ b/content/en/docs/install/microk8s.md @@ -89,7 +89,7 @@ $ microk8s kubectl annotate node --all kwasm.sh/kwasm-node=true Next, we need to install SpinKube’s operator using Helm (which is included with Microk8s). ```console { data-plausible="copy-quick-deploy-sample" } -$ microk8s helm install spin-operator --namespace spin-operator --create-namespace --version 0.2.0 --wait oci://ghcr.io/spinkube/charts/spin-operator +$ microk8s helm install spin-operator --namespace spin-operator --create-namespace --version 0.3.0 --wait oci://ghcr.io/spinkube/charts/spin-operator ```