From 8f3d0c98ad3335c22fe783be479c423875b2ec08 Mon Sep 17 00:00:00 2001 From: yanghaitao5000 <91644845+yanghaitao5000@users.noreply.github.com> Date: Thu, 19 Oct 2023 15:30:14 +0800 Subject: [PATCH 1/9] Update deploy-MatrixOne-cluster.md Updated operator installation method --- .../Deploy/deploy-MatrixOne-cluster.md | 22 ++++++++++--------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md b/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md index 1b253d2c7f..0bbac81040 100644 --- a/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md +++ b/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md @@ -451,32 +451,34 @@ __Note:__ 本章节均是在 master0 节点操作。 按照以下步骤在 master0 上安装 MatrixOne Operator。我们将为 Operator 创建一个独立的命名空间 `matrixone-operator`。 -1. 下载最新的 MatrixOne Operator 安装包: +1. 添加 matrixone-operator 地址到 helm 仓库: ``` - wget https://github.com/matrixorigin/matrixone-operator/releases/download/chart-0.8.0-alpha.7/matrixone-operator-0.8.0-alpha.7.tgz + helm repo add matrixone-operator https://matrixorigin.github.io/matrixone-operator ``` -2. 解压安装包: +2. 更新仓库: ``` - tar -xvf matrixone-operator-0.8.0-alpha.7.tgz - cd /root/matrixone-operator/ + helm repo update ``` -3. 定义命名空间变量: +3. 查看 MatrixOne Operator 版本: ``` - NS="matrixone-operator" + helm search repo matrixone-operator/matrixone-operator --versions --devel ``` -4. 使用 Helm 安装 MatrixOne Operator,并创建命名空间: +4. 指定发布版本安装 MatrixOne Operator: ``` - helm install --create-namespace --namespace ${NS} matrixone-operator ./ --dependency-update + helm install matrixone-operator matrixone-operator/matrixone-operator --version --create-namespace --namespace matrixone-operator ``` -5. 安装成功后,使用以下命令确认安装状态: + !!! note + 参数 VERSION 为要指定部署 MatrixOne Operator 的版本号,如:1.0.0-alpha.2 + +6. 安装成功后,使用以下命令确认安装状态: ``` kubectl get pod -n matrixone-operator From be3f6f37ec9eef05107e733cc52179ae96a66d67 Mon Sep 17 00:00:00 2001 From: yanghaitao5000 <91644845+yanghaitao5000@users.noreply.github.com> Date: Thu, 19 Oct 2023 18:03:57 +0800 Subject: [PATCH 2/9] Update deploy-MatrixOne-cluster.md --- docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md b/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md index 0bbac81040..e4134bbd32 100644 --- a/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md +++ b/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md @@ -475,9 +475,6 @@ __Note:__ 本章节均是在 master0 节点操作。 helm install matrixone-operator matrixone-operator/matrixone-operator --version --create-namespace --namespace matrixone-operator ``` - !!! note - 参数 VERSION 为要指定部署 MatrixOne Operator 的版本号,如:1.0.0-alpha.2 - 6. 安装成功后,使用以下命令确认安装状态: ``` From c9ff36fb672f04ce2ff047d3c2a2fe65778cd53b Mon Sep 17 00:00:00 2001 From: yanghaitao5000 <91644845+yanghaitao5000@users.noreply.github.com> Date: Thu, 19 Oct 2023 18:06:04 +0800 Subject: [PATCH 3/9] Update deploy-MatrixOne-cluster.md --- docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md b/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md index e4134bbd32..37a48b4b0a 100644 --- a/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md +++ b/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md @@ -474,7 +474,10 @@ __Note:__ 本章节均是在 master0 节点操作。 ``` helm install matrixone-operator matrixone-operator/matrixone-operator --version --create-namespace --namespace matrixone-operator ``` - + + !!! note + 参数 VERSION 为要部署的 MatrixOne Operator 的版本号,如:1.0.0-alpha.2。 + 6. 安装成功后,使用以下命令确认安装状态: ``` From 895bddf7c7f00c64967c5d986abdf0d4e0f14677 Mon Sep 17 00:00:00 2001 From: yanghaitao5000 <91644845+yanghaitao5000@users.noreply.github.com> Date: Thu, 19 Oct 2023 18:25:39 +0800 Subject: [PATCH 4/9] Update deploy-MatrixOne-cluster.md --- docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md b/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md index 37a48b4b0a..c0ca652d68 100644 --- a/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md +++ b/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md @@ -476,7 +476,7 @@ __Note:__ 本章节均是在 master0 节点操作。 ``` !!! note - 参数 VERSION 为要部署的 MatrixOne Operator 的版本号,如:1.0.0-alpha.2。 + 参数 VERSION 为要部署的 MatrixOne Operator 的版本号,如 1.0.0-alpha.2。 6. 安装成功后,使用以下命令确认安装状态: From a6738838b6cf76034ae556cb41a58fcea9baaa12 Mon Sep 17 00:00:00 2001 From: yanghaitao5000 <91644845+yanghaitao5000@users.noreply.github.com> Date: Thu, 19 Oct 2023 18:29:10 +0800 Subject: [PATCH 5/9] Update deploy-MatrixOne-cluster.md --- docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md b/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md index c0ca652d68..5a78672e3b 100644 --- a/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md +++ b/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md @@ -475,8 +475,8 @@ __Note:__ 本章节均是在 master0 节点操作。 helm install matrixone-operator matrixone-operator/matrixone-operator --version --create-namespace --namespace matrixone-operator ``` - !!! note - 参数 VERSION 为要部署的 MatrixOne Operator 的版本号,如 1.0.0-alpha.2。 + !!! note + 参数 VERSION 为要部署的 MatrixOne Operator 的版本号,如 1.0.0-alpha.2。 6. 安装成功后,使用以下命令确认安装状态: From 9cd54ffece8b664b1c7812fbf63ef50ea607cf3a Mon Sep 17 00:00:00 2001 From: yanghaitao Date: Fri, 20 Oct 2023 18:05:52 +0800 Subject: [PATCH 6/9] update system-variables-overview.md --- docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md | 6 ++++-- scripts/mdast-words-count/mdast-words-count | Bin scripts/mdast-words-count/mdast-words-count.exe | Bin .../mdast-words-count_x86_64-unknown-linux-gnu | Bin scripts/upgrade.sh | 0 5 files changed, 4 insertions(+), 2 deletions(-) mode change 100755 => 100644 scripts/mdast-words-count/mdast-words-count mode change 100755 => 100644 scripts/mdast-words-count/mdast-words-count.exe mode change 100755 => 100644 scripts/mdast-words-count/mdast-words-count_x86_64-unknown-linux-gnu mode change 100755 => 100644 scripts/upgrade.sh diff --git a/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md b/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md index 5a78672e3b..c3e27ff275 100644 --- a/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md +++ b/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md @@ -474,10 +474,12 @@ __Note:__ 本章节均是在 master0 节点操作。 ``` helm install matrixone-operator matrixone-operator/matrixone-operator --version --create-namespace --namespace matrixone-operator ``` - + !!! note 参数 VERSION 为要部署的 MatrixOne Operator 的版本号,如 1.0.0-alpha.2。 - + 安装最新版本的话,命名为: + helm install mo matrixone-operator/matrixone-operator + 6. 安装成功后,使用以下命令确认安装状态: ``` diff --git a/scripts/mdast-words-count/mdast-words-count b/scripts/mdast-words-count/mdast-words-count old mode 100755 new mode 100644 diff --git a/scripts/mdast-words-count/mdast-words-count.exe b/scripts/mdast-words-count/mdast-words-count.exe old mode 100755 new mode 100644 diff --git a/scripts/mdast-words-count/mdast-words-count_x86_64-unknown-linux-gnu b/scripts/mdast-words-count/mdast-words-count_x86_64-unknown-linux-gnu old mode 100755 new mode 100644 diff --git a/scripts/upgrade.sh b/scripts/upgrade.sh old mode 100755 new mode 100644 From 4b82037c9ff4a5a93c57250bc7f90b5101f12533 Mon Sep 17 00:00:00 2001 From: yanghaitao Date: Fri, 20 Oct 2023 18:11:17 +0800 Subject: [PATCH 7/9] update system-variables-overview.md --- docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md b/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md index c3e27ff275..417bcee57a 100644 --- a/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md +++ b/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md @@ -477,7 +477,7 @@ __Note:__ 本章节均是在 master0 节点操作。 !!! note 参数 VERSION 为要部署的 MatrixOne Operator 的版本号,如 1.0.0-alpha.2。 - 安装最新版本的话,命名为: + 安装最新版本的话,也可以执行下面命令: helm install mo matrixone-operator/matrixone-operator 6. 安装成功后,使用以下命令确认安装状态: From e57e73c3ca9f2f072488ddfb74d25df3b8d0f524 Mon Sep 17 00:00:00 2001 From: yanghaitao Date: Fri, 20 Oct 2023 18:35:53 +0800 Subject: [PATCH 8/9] update system-variables-overview.md --- docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md b/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md index 417bcee57a..9493b787de 100644 --- a/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md +++ b/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md @@ -477,8 +477,6 @@ __Note:__ 本章节均是在 master0 节点操作。 !!! note 参数 VERSION 为要部署的 MatrixOne Operator 的版本号,如 1.0.0-alpha.2。 - 安装最新版本的话,也可以执行下面命令: - helm install mo matrixone-operator/matrixone-operator 6. 安装成功后,使用以下命令确认安装状态: From 0a43ec38424ce8f5502d329ca0c706419b5e2628 Mon Sep 17 00:00:00 2001 From: yanghaitao Date: Fri, 20 Oct 2023 18:39:09 +0800 Subject: [PATCH 9/9] update system-variables-overview.md --- docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md b/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md index 9493b787de..89cd76aa53 100644 --- a/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md +++ b/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md @@ -478,7 +478,7 @@ __Note:__ 本章节均是在 master0 节点操作。 !!! note 参数 VERSION 为要部署的 MatrixOne Operator 的版本号,如 1.0.0-alpha.2。 -6. 安装成功后,使用以下命令确认安装状态: +5. 安装成功后,使用以下命令确认安装状态: ``` kubectl get pod -n matrixone-operator