Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
Signed-off-by: Zhonghu Xu <xuzhonghu@huawei.com>
  • Loading branch information
hzxuzhonghu committed Jun 27, 2023
1 parent 1a8bd15 commit 1549d46
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/content/en/boilerplates/install-cluster-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ helm install --create-namespace kurator-cluster-operator cluster-operator-{{< ku
Verify the cluster operator chart installation:

```bash
$ kubectl get pod -n kurator-system
$ kubectl get pod -l app.kubernetes.io/name=kurator-cluster-operator -n kurator-system
NAME READY STATUS RESTARTS AGE
kurator-cluster-operator-84d64c89db-brmv2 1/1 Running 0 14s
kurator-cluster-operator-5977486c8f-7b5rc 1/1 Running 0 21h
```

16 changes: 15 additions & 1 deletion docs/content/en/docs/setup/install-cluster-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,21 @@ helm repo add kurator https://kurator-dev.github.io/helm-charts
helm repo update
```

{{< boilerplate install-cluster-operator >}}
Install cluster operator into the management cluster.

```console
helm install --create-namespace kurator-cluster-operator kurator/cluster-operator --version={{< kurator-version >}} -n kurator-system

```

Verify the cluster operator chart installation:

```bash
$ kubectl get pod -l app.kubernetes.io/name=kurator-cluster-operator -n kurator-system
NAME READY STATUS RESTARTS AGE
kurator-cluster-operator-5977486c8f-7b5rc 1/1 Running 0 21h
```


## Try to deploy a cluster with cluster operator

Expand Down
14 changes: 13 additions & 1 deletion docs/content/en/docs/setup/install-fleet-manager.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,19 @@ helm repo add kurator https://kurator-dev.github.io/helm-charts
helm repo update
```

{{< boilerplate install-fleet-manager >}}
Install fleet manager into the management cluster.

```console
helm install --create-namespace kurator-fleet-manager kurator/fleet-manager --version={{< kurator-version >}} -n kurator-system
```

Verify the fleet manager chart installation:

```bash
kubectl get pod -l app.kubernetes.io/name=kurator-fleet-manager -n kurator-system
NAME READY STATUS RESTARTS AGE
kurator-fleet-manager-d587f54b6-d4ldd 1/1 Running 0 53s
```

## Try to create a fleet with fleet manager

Expand Down

0 comments on commit 1549d46

Please sign in to comment.