Skip to content

Commit 7a1f797

Browse files
authored
Merge pull request #297 from wrongerror/main
Adjust installation doc for OpenFunction v0.8.x
2 parents e4e6735 + ff596fc commit 7a1f797

File tree

1 file changed

+16
-9
lines changed

1 file changed

+16
-9
lines changed

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

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,18 @@ This document describes how to install OpenFunction.
1313

1414
- You need to ensure your Kubernetes version meets the requirements described in the following compatibility matrix.
1515

16-
| OpenFunction Version | Kubernetes 1.17 | Kubernetes 1.18 | Kubernetes 1.19 | Kubernetes 1.20+ |
17-
|----------------------| --------------- | --------------- |-----------------| ---------------- |
18-
| HEAD | N/A | N/A | N/A ||
19-
| v0.7.0 | N/A | N/A | N/A ||
20-
| v0.6.0 |* |* |||
16+
| OpenFunction Version | Kubernetes 1.20 | Kubernetes 1.21 | Kubernetes 1.22 | Kubernetes 1.23 | Kubernetes 1.24 | Kubernetes 1.25 |
17+
|----------------------|-----------------|-----------------|-----------------|-----------------|-----------------|-----------------|
18+
| HEAD |||||||
19+
| v0.8.x ||||||* |
20+
| v0.7.0 |||||| N/A |
21+
22+
{{% alert title="Note" color="success" %}}
23+
24+
OpenFunction supports Kubernetes 1.25 starting from v0.8.1
25+
26+
{{% /alert %}}
27+
2128

2229
## Install OpenFunction
2330

@@ -41,25 +48,25 @@ Now you can install OpenFunction and all its dependencies with helm charts.
4148
- Install all components:
4249
```shell
4350
kubectl create namespace openfunction
44-
helm install openfunction openfunction/openfunction -n openfunction --version 0.3.1
51+
helm install openfunction openfunction/openfunction -n openfunction
4552
```
4653

4754
- Install Serving only (without build):
4855
```shell
4956
kubectl create namespace openfunction
50-
helm install openfunction --set global.ShipwrightBuild.enabled=false --set global.TektonPipelines.enabled=false openfunction/openfunction -n openfunction --version 0.3.1
57+
helm install openfunction --set global.ShipwrightBuild.enabled=false --set global.TektonPipelines.enabled=false openfunction/openfunction -n openfunction
5158
```
5259

5360
- Install Knative sync runtime only:
5461
```shell
5562
kubectl create namespace openfunction
56-
helm install openfunction --set global.Keda.enabled=false openfunction/openfunction -n openfunction --version 0.3.1
63+
helm install openfunction --set global.Keda.enabled=false openfunction/openfunction -n openfunction
5764
```
5865

5966
- Install OpenFunction async runtime only:
6067
```shell
6168
kubectl create namespace openfunction
62-
helm install openfunction --set global.Contour.enabled=false --set global.KnativeServing.enabled=false openfunction/openfunction -n openfunction --version 0.3.1
69+
helm install openfunction --set global.Contour.enabled=false --set global.KnativeServing.enabled=false openfunction/openfunction -n openfunction
6370
```
6471

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

0 commit comments

Comments
 (0)