Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ version = "0.7"
url_latest_version = "/docs"

[[params.versions]]
version = "v0.7 (latest)"
version = "v0.7"
url = "/docs"

[[params.versions]]
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/_index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "v0.7 (latest)"
title: "v0.7"
linkTitle: "Docs"
weight: 20
---
Expand Down
8 changes: 4 additions & 4 deletions content/en/docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,25 +41,25 @@ Now you can install OpenFunction and all its dependencies with helm charts.
- Install all components:
```shell
kubectl create namespace openfunction
helm install openfunction openfunction/openfunction -n openfunction
helm install openfunction openfunction/openfunction -n openfunction --version 0.2.0
```

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

- Install Knative sync runtime only:
```shell
kubectl create namespace openfunction
helm install openfunction --set global.Keda.enabled=false openfunction/openfunction -n openfunction
helm install openfunction --set global.Keda.enabled=false openfunction/openfunction -n openfunction --version 0.2.0
```

- Install OpenFunction async runtime only:
```shell
kubectl create namespace openfunction
helm install openfunction --set global.Contour.enabled=false --set global.KnativeServing.enabled=false openfunction/openfunction -n openfunction
helm install openfunction --set global.Contour.enabled=false --set global.KnativeServing.enabled=false openfunction/openfunction -n openfunction --version 0.2.0
```

{{% alert title="Note" color="success" %}}
Expand Down