Skip to content
Open
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
11 changes: 9 additions & 2 deletions docs/start/one-step-install.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ When using this script to upgrade Kube-OVN, please pay attention to the followin

## Helm Chart Installation

Since the installation of Kube-OVN requires setting some parameters, to install Kube-OVN using Helm, you need to follow the steps below.
You do not need to run the installation script before using Helm. The Helm chart provides a complete installation method for Kube-OVN. Before installing, review and configure the required Helm values for your cluster, then follow the steps below.

### View the node IP address

Expand Down Expand Up @@ -102,14 +102,21 @@ Update Complete. ⎈Happy Helming!⎈
# helm search repo kubeovn
NAME CHART VERSION APP VERSION DESCRIPTION
kubeovn/kube-ovn {{ variables.version }} {{ variables.version }} Helm chart for Kube-OVN
kubeovn/kube-ovn-v2 {{ variables.version }} {{ variables.version }} Helm chart for Kube-OVN
```

> Notice: The `kube-ovn` Helm chart has been deprecated. Please use the `kube-ovn-v2` Helm chart instead.

### Install Kube-OVN with Helm

You can refer to the variable definitions in the `values.yaml` file for available parameters.

```bash
# helm install kube-ovn kubeovn/kube-ovn --wait -n kube-system --version {{ variables.version }}
# helm install kube-ovn oci://ghcr.io/kubeovn/charts/kube-ovn-v2 \
--wait \
--namespace kube-system \
--version {{ variables.version }}

NAME: kube-ovn
LAST DEPLOYED: Thu Apr 24 08:30:13 2025
NAMESPACE: kube-system
Expand Down