Skip to content

Commit 73b4faf

Browse files
committed
Update docs to point at v0.3.0
Signed-off-by: Caleb Schoepp <[email protected]>
1 parent 634212c commit 73b4faf

File tree

8 files changed

+30
-30
lines changed

8 files changed

+30
-30
lines changed

content/en/docs/contrib/troubleshooting.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ might assist you with your work.
1212
## No endpoints available for service "spin-operator-webhook-service"
1313

1414
When following the quickstart guide the following error can occur when running the `kubectl apply -f
15-
https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.shim-executor.yaml`
15+
https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.shim-executor.yaml`
1616
command:
1717

1818
```console
19-
Error from server (InternalError): error when creating "https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.shim-executor.yaml": Internal error occurred: failed calling webhook "mspinappexecutor.kb.io": failed to call webhook: Post "https://spin-operator-webhook-service.spin-operator.svc:443/mutate-core-spinoperator-dev-v1alpha1-spinappexecutor?timeout=10s": no endpoints available for service "spin-operator-webhook-service"
19+
Error from server (InternalError): error when creating "https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.shim-executor.yaml": Internal error occurred: failed calling webhook "mspinappexecutor.kb.io": failed to call webhook: Post "https://spin-operator-webhook-service.spin-operator.svc:443/mutate-core-spinoperator-dev-v1alpha1-spinappexecutor?timeout=10s": no endpoints available for service "spin-operator-webhook-service"
2020
```
2121

2222
To address the error above, first look to see if Spin Operator is running:
@@ -62,13 +62,13 @@ To resolve this issue, please try to install the Spin Operator again. Except thi
6262
helm upgrade --install spin-operator \
6363
--namespace spin-operator \
6464
--create-namespace \
65-
--version 0.2.0 \
65+
--version 0.3.0 \
6666
--wait \
6767
oci://ghcr.io/spinkube/charts/spin-operator
6868
```
6969

7070
Once the Spin Operator is installed you can try and run the `kubectl apply -f
71-
https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.shim-executor.yaml`
71+
https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.shim-executor.yaml`
7272
command again. The issue should be resolved now.
7373

7474
## Error Validating Data: Connection Refused

content/en/docs/install/azure-kubernetes-service.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ installed.
8484

8585
```shell
8686
# Install the CRDs
87-
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.crds.yaml
87+
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.crds.yaml
8888

8989
# Install the Runtime Class
90-
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.runtime-class.yaml
90+
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.runtime-class.yaml
9191
```
9292

9393
The following installs [cert-manager](https://github.com/cert-manager/cert-manager) which is
@@ -156,7 +156,7 @@ helm install spin-operator \
156156
Lastly, create the [shim executor]({{< ref "glossary#spin-app-executor-crd" >}})::
157157

158158
```console
159-
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.shim-executor.yaml
159+
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.shim-executor.yaml
160160
```
161161

162162
## Deploying a Spin App to AKS

content/en/docs/install/installing-with-helm.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,23 +62,23 @@ here we install the defaults.
6262
representing Spin applications to be scheduled on the cluster.
6363

6464
```shell
65-
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.crds.yaml
65+
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.crds.yaml
6666
```
6767

6868
- Next we create a [RuntimeClass]({{< ref "glossary#runtime-class" >}}) that points to the `spin`
6969
handler called `wasmtime-spin-v2`. If you are deploying to a production cluster that only has a shim
7070
on a subset of nodes, you'll need to modify the RuntimeClass with a `nodeSelector:`:
7171

7272
```shell
73-
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.runtime-class.yaml
73+
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.runtime-class.yaml
7474
```
7575

7676
- Finally, we create a `containerd-spin-shim` [SpinAppExecutor]({{< ref
7777
"glossary#spin-app-executor-crd" >}}). This tells the Spin Operator to use the RuntimeClass we
7878
just created to run Spin Apps:
7979

8080
```shell
81-
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.shim-executor.yaml
81+
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.shim-executor.yaml
8282
```
8383

8484
### Installing the Spin Operator Chart
@@ -102,7 +102,7 @@ Note that you may also need to upgrade the spin-operator CRDs in tandem with upg
102102
release:
103103

104104
```shell
105-
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.crds.yaml
105+
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.crds.yaml
106106
```
107107

108108
To upgrade the `spin-operator` release, run the following:
@@ -131,7 +131,7 @@ To completely uninstall all resources related to spin-operator, you may want to
131131
corresponding CRD resources and the RuntimeClass:
132132

133133
```shell
134-
kubectl delete -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.shim-executor.yaml
135-
kubectl delete -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.runtime-class.yaml
136-
kubectl delete -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.crds.yaml
134+
kubectl delete -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.shim-executor.yaml
135+
kubectl delete -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.runtime-class.yaml
136+
kubectl delete -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.crds.yaml
137137
```

content/en/docs/install/microk8s.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ before proceeding.
6868
First, we need to apply a runtime class and a CRD for SpinKube:
6969

7070
```console { data-plausible="copy-quick-deploy-sample" }
71-
$ microk8s kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.runtime-class.yaml
72-
$ microk8s kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.crds.yaml
71+
$ microk8s kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.runtime-class.yaml
72+
$ microk8s kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.crds.yaml
7373
```
7474

7575
Both of these should apply immediately.
@@ -97,7 +97,7 @@ Now we have the main operator installed. There is just one more step. We need to
9797
executor, which is a special CRD that allows us to use multiple executors for WebAssembly.
9898

9999
```console { data-plausible="copy-quick-deploy-sample" }
100-
$ microk8s kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.shim-executor.yaml
100+
$ microk8s kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.shim-executor.yaml
101101

102102
```
103103

content/en/docs/install/quickstart.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ kubectl wait --for=condition=available --timeout=300s deployment/cert-manager-we
5555
> every node.
5656
5757
```console { data-plausible="copy-quick-apply-runtime-class" }
58-
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.runtime-class.yaml
58+
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.runtime-class.yaml
5959
```
6060

6161
4. Apply the [Custom Resource Definitions]({{< ref "glossary#custom-resource-definition-crd" >}})
6262
used by the Spin Operator:
6363

6464
```console { data-plausible="copy-quick-apply-crd" }
65-
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.crds.yaml
65+
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.crds.yaml
6666
```
6767

6868
## Deploy the Spin Operator
@@ -77,15 +77,15 @@ and pods are spinning up.
7777
helm install spin-operator \
7878
--namespace spin-operator \
7979
--create-namespace \
80-
--version 0.2.0 \
80+
--version 0.3.0 \
8181
--wait \
8282
oci://ghcr.io/spinkube/charts/spin-operator
8383
```
8484

8585
Lastly, create the [shim executor]({{< ref "glossary#spin-app-executor-crd" >}}):
8686

8787
```console { data-plausible="copy-quick-create-shim-executor" }
88-
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.shim-executor.yaml
88+
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.shim-executor.yaml
8989
```
9090

9191
## Run the Sample Application

content/en/docs/topics/autoscaling/scaling-with-hpa.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ Next, run the following commands to install the Spin [Runtime Class]({{<ref "glo
7474
7575
```console
7676
# Install the RuntimeClass
77-
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.runtime-class.yaml
77+
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.runtime-class.yaml
7878

7979
# Install the CRDs
80-
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.crds.yaml
80+
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.crds.yaml
8181
```
8282

8383
Lastly, install Spin Operator using `helm` and the [shim executor]({{< ref
@@ -88,12 +88,12 @@ Lastly, install Spin Operator using `helm` and the [shim executor]({{< ref
8888
helm install spin-operator \
8989
--namespace spin-operator \
9090
--create-namespace \
91-
--version 0.2.0 \
91+
--version 0.3.0 \
9292
--wait \
9393
oci://ghcr.io/spinkube/charts/spin-operator
9494

9595
# Install the shim executor
96-
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.shim-executor.yaml
96+
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.shim-executor.yaml
9797
```
9898

9999
Great, now you have Spin Operator up and running on your cluster. This means you’re set to create

content/en/docs/topics/autoscaling/scaling-with-keda.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ Next, run the following commands to install the Spin [Runtime Class]({{<ref "glo
7474
7575
```console
7676
# Install the RuntimeClass
77-
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.runtime-class.yaml
77+
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.runtime-class.yaml
7878

7979
# Install the CRDs
80-
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.crds.yaml
80+
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.crds.yaml
8181
```
8282

8383
Lastly, install Spin Operator using `helm` and the [shim executor]({{< ref
@@ -88,12 +88,12 @@ Lastly, install Spin Operator using `helm` and the [shim executor]({{< ref
8888
helm install spin-operator \
8989
--namespace spin-operator \
9090
--create-namespace \
91-
--version 0.2.0 \
91+
--version 0.3.0 \
9292
--wait \
9393
oci://ghcr.io/spinkube/charts/spin-operator
9494

9595
# Install the shim executor
96-
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.2.0/spin-operator.shim-executor.yaml
96+
kubectl apply -f https://github.com/spinkube/spin-operator/releases/download/v0.3.0/spin-operator.shim-executor.yaml
9797
```
9898

9999
Great, now you have Spin Operator up and running on your cluster. This means you’re set to create

crd-reference/generate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ root_dir=$(dirname ${script_dir})
77

88
cd $script_dir
99

10-
SPIN_OPERATOR_RELEASE=${SPIN_OPERATOR_RELEASE:-v0.2.0}
10+
SPIN_OPERATOR_RELEASE=${SPIN_OPERATOR_RELEASE:-v0.3.0}
1111

1212
echo "Installing crdoc"
1313
go install fybrik.io/crdoc@latest

0 commit comments

Comments
 (0)