Skip to content

Commit 736417e

Browse files
authored
Merge pull request #103 from renyunkang/release-0.6
update install openelb by helm
2 parents d5b9ae0 + 63c2abd commit 736417e

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

content/en/docs/getting-started/installation/install-openelb-on-k3s.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ This document describes how to use kubectl and [Helm](https://helm.sh/) to insta
9393
2. Run the following commands to install OpenELB:
9494

9595
```bash
96-
helm repo add stable https://charts.kubesphere.io/stable
96+
helm repo add openelb https://openelb.github.io/openelb
9797
helm repo update
98-
helm install openelb stable/openelb -n openelb-system --create-namespace
98+
helm install openelb openelb/openelb -n openelb-system --create-namespace
9999
```
100100

101101
3. Run the following command to check whether the status of `openelb-controller` and `openelb-speaker` is **READY**: **1/1** and **STATUS**: **Running**. If yes, OpenELB has been installed successfully.
@@ -124,7 +124,7 @@ This document describes how to use kubectl and [Helm](https://helm.sh/) to insta
124124
1. To delete OpenELB, run the following command:
125125

126126
```bash
127-
helm delete openelb
127+
helm delete openelb -n openelb-system
128128
```
129129

130130
{{< notice note >}}
@@ -136,5 +136,5 @@ This document describes how to use kubectl and [Helm](https://helm.sh/) to insta
136136
2. Run the following command to check the result. If the OpenELB application does not exist, OpenELB has been deleted successfully.
137137

138138
```bash
139-
helm ls
139+
helm ls -n openelb-system
140140
```

content/en/docs/getting-started/installation/install-openelb-on-kubernetes.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,9 @@ This document describes how to use kubectl and [Helm](https://helm.sh/) to insta
8989
1. Log in to the Kubernetes cluster over SSH and run the following commands:
9090

9191
```bash
92-
helm repo add kubesphere-stable https://charts.kubesphere.io/stable
92+
helm repo add openelb https://openelb.github.io/openelb
9393
helm repo update
94-
kubectl create ns openelb-system
95-
helm install openelb kubesphere-stable/openelb -n openelb-system
94+
helm install openelb openelb/openelb -n openelb-system --create-namespace
9695
```
9796

9897
2. Run the following command to check whether the status of `openelb-controller` and `openelb-speaker` is **READY**: **1/1** and **STATUS**: **Running**. If yes, OpenELB has been installed successfully.

0 commit comments

Comments
 (0)