From 1549d46cd7b97e7289241f2f606fe0b8ecc5d871 Mon Sep 17 00:00:00 2001 From: Zhonghu Xu Date: Tue, 27 Jun 2023 15:36:45 +0800 Subject: [PATCH] update Signed-off-by: Zhonghu Xu --- .../en/boilerplates/install-cluster-operator.md | 4 ++-- .../en/docs/setup/install-cluster-operator.md | 16 +++++++++++++++- .../en/docs/setup/install-fleet-manager.md | 14 +++++++++++++- 3 files changed, 30 insertions(+), 4 deletions(-) diff --git a/docs/content/en/boilerplates/install-cluster-operator.md b/docs/content/en/boilerplates/install-cluster-operator.md index 267095b7b..c336e6c51 100644 --- a/docs/content/en/boilerplates/install-cluster-operator.md +++ b/docs/content/en/boilerplates/install-cluster-operator.md @@ -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 ``` diff --git a/docs/content/en/docs/setup/install-cluster-operator.md b/docs/content/en/docs/setup/install-cluster-operator.md index f623fdb51..8929ac766 100644 --- a/docs/content/en/docs/setup/install-cluster-operator.md +++ b/docs/content/en/docs/setup/install-cluster-operator.md @@ -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 diff --git a/docs/content/en/docs/setup/install-fleet-manager.md b/docs/content/en/docs/setup/install-fleet-manager.md index 369465435..df5a99f5f 100644 --- a/docs/content/en/docs/setup/install-fleet-manager.md +++ b/docs/content/en/docs/setup/install-fleet-manager.md @@ -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