Skip to content
Merged
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
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 @@ -52,25 +52,25 @@ For more information about OpenFunction components compatibility with Kubernetes
- Install all components:
```shell
kubectl create namespace openfunction
helm install openfunction openfunction/openfunction -n openfunction
helm install openfunction openfunction/openfunction -n openfunction --version 0.1.0
```

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

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

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

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