Skip to content

Commit

Permalink
Merge pull request #103 from renyunkang/release-0.6
Browse files Browse the repository at this point in the history
update install openelb by helm
  • Loading branch information
renyunkang committed Jun 14, 2024
2 parents d5b9ae0 + 63c2abd commit 736417e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ This document describes how to use kubectl and [Helm](https://helm.sh/) to insta
2. Run the following commands to install OpenELB:

```bash
helm repo add stable https://charts.kubesphere.io/stable
helm repo add openelb https://openelb.github.io/openelb
helm repo update
helm install openelb stable/openelb -n openelb-system --create-namespace
helm install openelb openelb/openelb -n openelb-system --create-namespace
```

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.
Expand Down Expand Up @@ -124,7 +124,7 @@ This document describes how to use kubectl and [Helm](https://helm.sh/) to insta
1. To delete OpenELB, run the following command:

```bash
helm delete openelb
helm delete openelb -n openelb-system
```

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

```bash
helm ls
helm ls -n openelb-system
```
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,9 @@ This document describes how to use kubectl and [Helm](https://helm.sh/) to insta
1. Log in to the Kubernetes cluster over SSH and run the following commands:

```bash
helm repo add kubesphere-stable https://charts.kubesphere.io/stable
helm repo add openelb https://openelb.github.io/openelb
helm repo update
kubectl create ns openelb-system
helm install openelb kubesphere-stable/openelb -n openelb-system
helm install openelb openelb/openelb -n openelb-system --create-namespace
```

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.
Expand Down

0 comments on commit 736417e

Please sign in to comment.