diff --git a/content/en/docs/faq/installation/telemetry.md b/content/en/docs/faq/installation/telemetry.md index d4fbe38f8..84653cc25 100644 --- a/content/en/docs/faq/installation/telemetry.md +++ b/content/en/docs/faq/installation/telemetry.md @@ -6,7 +6,7 @@ linkTitle: "Telemetry in KubeSphere" Weight: 16300 --- -Telemetry collects aggregate information about the size of KubeSphere clusters installed, KubeSphere and Kubernetes versions, components enabled, cluster running time, error logs, etc. KubeSphere promises that the information is only used by the KubeSphere community to improve products and will not be shared with any third parties. +Telemetry collects aggregate information about the size of KubeSphere clusters installed, KubeSphere and Kubernetes versions, components enabled, cluster running time, error logs and so on. KubeSphere promises that the information is only used by the KubeSphere community to improve products and will not be shared with any third parties. ## What Information Is Collected @@ -29,7 +29,7 @@ Telemetry is enabled by default when you install KubeSphere, while you also have ### Disable Telemetry before installation -When you install KubeSphere on existing Kubernetes clusters, you need to download the file [cluster-configuration.yaml](https://github.com/kubesphere/ks-installer/releases/download/v3.1.0/cluster-configuration.yaml) for cluster setting. If you want to disable Telemetry, do not use `kubectl apply -f` directly for this file. +When you install KubeSphere on an existing Kubernetes cluster, you need to download the file [cluster-configuration.yaml](https://github.com/kubesphere/ks-installer/releases/download/v3.1.0/cluster-configuration.yaml) for cluster settings. If you want to disable Telemetry, do not run `kubectl apply -f` directly for this file. {{< notice note >}} @@ -43,21 +43,22 @@ If you install KubeSphere on Linux, see [Disable Telemetry after Installation](. vi cluster-configuration.yaml ``` -2. In this local cluster-configuration.yaml file, scroll down to the bottom of the file and add the value `telemetry_enabled: false` as follows: +2. In this local `cluster-configuration.yaml` file, scroll down to the bottom of the file and add `telemetry_enabled: false` as follows: ```yaml openpitrix: - enabled: false + store: + enabled: false servicemesh: enabled: false - telemetry_enabled: false # Add this line here to disable Telemetry. + telemetry_enabled: false # Add this line manually to disable Telemetry. ``` -3. Save the file after you finish and execute the following commands to start installation. +3. Save the file and run the following commands to start installation. ```bash kubectl apply -f https://github.com/kubesphere/ks-installer/releases/download/v3.1.0/kubesphere-installer.yaml - + kubectl apply -f cluster-configuration.yaml ``` @@ -73,18 +74,13 @@ If you have enabled [the multi-cluster feature](../../../multicluster-management 3. Enter `clusterconfiguration` in the search bar and click the result to go to its detail page. - ![edit-crd](/images/docs/faq/telemetry-in-kubesphere/edit-crd.jpg) +4. Click on the right of `ks-installer` and select **Edit YAML**. -4. Click the three dots on the right of `ks-installer` and select **Edit YAML**. +5. Scroll down to the bottom of the file, add `telemetry_enabled: false`, and then click **Update**. - ![edit-ks-installer](/images/docs/faq/telemetry-in-kubesphere/edit-ks-installer.jpg) - -5. Scroll down to the bottom of the file and add the value `telemetry_enabled: false`. When you finish, click **Update**. - - ![enable-telemetry](/images/docs/faq/telemetry-in-kubesphere/enable-telemetry.jpg) {{< notice note >}} -If you want to enable Telemetry again, you can update `ks-installer` by deleting the value `telemetry_enabled: false` or changing it to `telemetry_enabled: true`. +If you want to enable Telemetry again, you can update `ks-installer` by deleting `telemetry_enabled: false` or changing it to `telemetry_enabled: true`. {{}} diff --git a/content/zh/docs/faq/installation/telemetry.md b/content/zh/docs/faq/installation/telemetry.md index 827d1f27f..7c9a65a6a 100644 --- a/content/zh/docs/faq/installation/telemetry.md +++ b/content/zh/docs/faq/installation/telemetry.md @@ -25,7 +25,7 @@ Telemetry 收集已安装 KubeSphere 集群的大小、KubeSphere 和 Kubernetes ## 禁用 Telemetry -Telemetry 在安装 KubeSphere 时默认启用。同时,您也可以在安装前或安装后禁用 Telemetry。 +在安装 KubeSphere 时 Telemetry 默认启用。同时,您也可以在安装前或安装后禁用 Telemetry。 ### 安装前禁用 Telemetry @@ -37,7 +37,7 @@ Telemetry 在安装 KubeSphere 时默认启用。同时,您也可以在安装 {{}} -1. 下载 [cluster-configuration.yaml](https://github.com/kubesphere/ks-installer/releases/download/v3.1.0/cluster-configuration.yaml) 文件并打开编辑。 +1. 下载 [cluster-configuration.yaml](https://github.com/kubesphere/ks-installer/releases/download/v3.1.0/cluster-configuration.yaml) 文件并编辑。 ```bash vi cluster-configuration.yaml @@ -47,13 +47,14 @@ Telemetry 在安装 KubeSphere 时默认启用。同时,您也可以在安装 ```yaml openpitrix: - enabled: false + store: + enabled: false servicemesh: enabled: false - telemetry_enabled: false # Add this line here to disable Telemetry. + telemetry_enabled: false # 请手动添加此行以禁用 Telemetry。 ``` -3. 保存文件并执行如下命令开始安装: +3. 保存文件并执行以下命令开始安装: ```bash kubectl apply -f https://github.com/kubesphere/ks-installer/releases/download/v3.1.0/kubesphere-installer.yaml @@ -73,15 +74,10 @@ Telemetry 在安装 KubeSphere 时默认启用。同时,您也可以在安装 3. 在搜索框中输入 `clusterconfiguration`,点击搜索结果打开详情页。 - ![edit-crd](/images/docs/zh-cn/faq/telemetry-in-kubesphere/edit-crd.jpg) - -4. 点击 `ks-installer` 右边的三个点,并选择**编辑配置文件**。 - - ![edit-ks-installer](/images/docs/zh-cn/faq/telemetry-in-kubesphere/edit-ks-installer.jpg) +4. 点击 `ks-installer` 右侧的 ,并选择**编辑配置文件**。 5. 在文件末尾添加 `telemetry_enabled: false` 字段,点击**更新**。 - ![enable-telemetry](/images/docs/zh-cn/faq/telemetry-in-kubesphere/enable-telemetry.jpg) {{< notice note >}} diff --git a/static/images/docs/faq/installation/telemetry-in-kubesphere/three-dots.png b/static/images/docs/faq/installation/telemetry-in-kubesphere/three-dots.png new file mode 100644 index 000000000..4ef8b9b46 Binary files /dev/null and b/static/images/docs/faq/installation/telemetry-in-kubesphere/three-dots.png differ diff --git a/static/images/docs/faq/telemetry-in-kubesphere/edit-crd.jpg b/static/images/docs/faq/telemetry-in-kubesphere/edit-crd.jpg deleted file mode 100644 index db012ee21..000000000 Binary files a/static/images/docs/faq/telemetry-in-kubesphere/edit-crd.jpg and /dev/null differ diff --git a/static/images/docs/faq/telemetry-in-kubesphere/edit-ks-installer.jpg b/static/images/docs/faq/telemetry-in-kubesphere/edit-ks-installer.jpg deleted file mode 100644 index 418ccf293..000000000 Binary files a/static/images/docs/faq/telemetry-in-kubesphere/edit-ks-installer.jpg and /dev/null differ diff --git a/static/images/docs/faq/telemetry-in-kubesphere/enable-telemetry.jpg b/static/images/docs/faq/telemetry-in-kubesphere/enable-telemetry.jpg deleted file mode 100644 index f256a00f0..000000000 Binary files a/static/images/docs/faq/telemetry-in-kubesphere/enable-telemetry.jpg and /dev/null differ diff --git a/static/images/docs/zh-cn/faq/installation/telemetry-in-kubesphere/three-dots.png b/static/images/docs/zh-cn/faq/installation/telemetry-in-kubesphere/three-dots.png new file mode 100644 index 000000000..4ef8b9b46 Binary files /dev/null and b/static/images/docs/zh-cn/faq/installation/telemetry-in-kubesphere/three-dots.png differ diff --git a/static/images/docs/zh-cn/faq/telemetry-in-kubesphere/edit-crd.jpg b/static/images/docs/zh-cn/faq/telemetry-in-kubesphere/edit-crd.jpg deleted file mode 100644 index 6a58713c6..000000000 Binary files a/static/images/docs/zh-cn/faq/telemetry-in-kubesphere/edit-crd.jpg and /dev/null differ diff --git a/static/images/docs/zh-cn/faq/telemetry-in-kubesphere/edit-ks-installer.jpg b/static/images/docs/zh-cn/faq/telemetry-in-kubesphere/edit-ks-installer.jpg deleted file mode 100644 index cb5e41b5d..000000000 Binary files a/static/images/docs/zh-cn/faq/telemetry-in-kubesphere/edit-ks-installer.jpg and /dev/null differ diff --git a/static/images/docs/zh-cn/faq/telemetry-in-kubesphere/enable-telemetry.jpg b/static/images/docs/zh-cn/faq/telemetry-in-kubesphere/enable-telemetry.jpg deleted file mode 100644 index dbf1fa71e..000000000 Binary files a/static/images/docs/zh-cn/faq/telemetry-in-kubesphere/enable-telemetry.jpg and /dev/null differ