Skip to content

Commit 70bf1d8

Browse files
committed
Add fixed version to install guide
Signed-off-by: Benjamin Huo <benjamin@kubesphere.io>
1 parent 6cc6a82 commit 70bf1d8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ version = "0.7"
108108
url_latest_version = "/docs"
109109

110110
[[params.versions]]
111-
version = "v0.7 (latest)"
111+
version = "v0.7"
112112
url = "/docs"
113113

114114
[[params.versions]]

content/en/docs/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "v0.7 (latest)"
2+
title: "v0.7"
33
linkTitle: "Docs"
44
weight: 20
55
---

content/en/docs/getting-started/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,25 +41,25 @@ Now you can install OpenFunction and all its dependencies with helm charts.
4141
- Install all components:
4242
```shell
4343
kubectl create namespace openfunction
44-
helm install openfunction openfunction/openfunction -n openfunction
44+
helm install openfunction openfunction/openfunction -n openfunction --version 0.2.0
4545
```
4646

4747
- Install Serving only (without build):
4848
```shell
4949
kubectl create namespace openfunction
50-
helm install openfunction --set global.ShipwrightBuild.enabled=false --set global.TektonPipelines.enabled=false openfunction/openfunction -n openfunction
50+
helm install openfunction --set global.ShipwrightBuild.enabled=false --set global.TektonPipelines.enabled=false openfunction/openfunction -n openfunction --version 0.2.0
5151
```
5252

5353
- Install Knative sync runtime only:
5454
```shell
5555
kubectl create namespace openfunction
56-
helm install openfunction --set global.Keda.enabled=false openfunction/openfunction -n openfunction
56+
helm install openfunction --set global.Keda.enabled=false openfunction/openfunction -n openfunction --version 0.2.0
5757
```
5858

5959
- Install OpenFunction async runtime only:
6060
```shell
6161
kubectl create namespace openfunction
62-
helm install openfunction --set global.Contour.enabled=false --set global.KnativeServing.enabled=false openfunction/openfunction -n openfunction
62+
helm install openfunction --set global.Contour.enabled=false --set global.KnativeServing.enabled=false openfunction/openfunction -n openfunction --version 0.2.0
6363
```
6464

6565
{{% alert title="Note" color="success" %}}

0 commit comments

Comments
 (0)