Skip to content

Commit 53dc147

Browse files
committed
en,zh: remove TidbClusterAutoScaler references as it is deprecated
1 parent a006893 commit 53dc147

File tree

8 files changed

+2
-40
lines changed

8 files changed

+2
-40
lines changed

en/architecture.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,14 @@ The following diagram is an overview of the architecture of TiDB Operator.
1414

1515
![TiDB Operator Overview](/media/tidb-operator-overview-1.2.png)
1616

17-
`TidbCluster`, `TidbMonitor`, `TidbInitializer`, `Backup`, `Restore`, `BackupSchedule`, and `TidbClusterAutoScaler` are custom resources defined by CRD (`CustomResourceDefinition`).
17+
`TidbCluster`, `TidbMonitor`, `TidbInitializer`, `Backup`, `Restore`, and `BackupSchedule` are custom resources defined by CRD (`CustomResourceDefinition`).
1818

1919
* `TidbCluster` describes the desired state of the TiDB cluster.
2020
* `TidbMonitor` describes the monitoring components of the TiDB cluster.
2121
* `TidbInitializer` describes the desired initialization Job of the TiDB cluster.
2222
* `Backup` describes the desired backup of the TiDB cluster.
2323
* `Restore` describes the desired restoration of the TiDB cluster.
2424
* `BackupSchedule` describes the scheduled backup of the TiDB cluster.
25-
* `TidbClusterAutoScaler` describes the automatic scaling of the TiDB cluster.
2625

2726
The following components are responsible for the orchestration and scheduling logic in a TiDB cluster:
2827

en/cheat-sheet.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,6 @@ This document is an overview of the commands used for TiDB cluster management.
6060
kubectl -n ${namespace} get restore ${name}
6161
```
6262

63-
* View TidbClusterAutoScaler:
64-
65-
{{< copyable "shell-regular" >}}
66-
67-
```shell
68-
kubectl -n ${namespace} get tidbclusterautoscaler ${name}
69-
```
70-
7163
* View TidbInitializer:
7264

7365
{{< copyable "shell-regular" >}}
@@ -416,14 +408,6 @@ This document is an overview of the commands used for TiDB cluster management.
416408
kubectl delete -n ${namespace} tidbmonitor ${tidb_monitor_name}
417409
```
418410

419-
* Delete TidbClusterAutoScaler:
420-
421-
{{< copyable "shell-regular" >}}
422-
423-
```shell
424-
kubectl -n ${namespace} delete tidbclusterautoscaler ${name}
425-
```
426-
427411
### More
428412

429413
See [kubectl Cheat Sheet](https://kubernetes.io/docs/reference/kubectl/cheatsheet/) for more kubectl usage.

en/deploy-tidb-operator.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ NAME CREATED AT
6969
backups.pingcap.com 2020-06-11T07:59:40Z
7070
backupschedules.pingcap.com 2020-06-11T07:59:41Z
7171
restores.pingcap.com 2020-06-11T07:59:40Z
72-
tidbclusterautoscalers.pingcap.com 2020-06-11T07:59:42Z
7372
tidbclusters.pingcap.com 2020-06-11T07:59:38Z
7473
tidbinitializers.pingcap.com 2020-06-11T07:59:42Z
7574
tidbmonitors.pingcap.com 2020-06-11T07:59:41Z

en/get-started.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ customresourcedefinition.apiextensions.k8s.io/restores.pingcap.com created
163163
customresourcedefinition.apiextensions.k8s.io/backupschedules.pingcap.com created
164164
customresourcedefinition.apiextensions.k8s.io/tidbmonitors.pingcap.com created
165165
customresourcedefinition.apiextensions.k8s.io/tidbinitializers.pingcap.com created
166-
customresourcedefinition.apiextensions.k8s.io/tidbclusterautoscalers.pingcap.com created
167166
```
168167

169168
</details>

zh/architecture.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,14 @@ aliases: ['/docs-cn/tidb-in-kubernetes/dev/architecture/']
1414

1515
![TiDB Operator Overview](/media/tidb-operator-overview-1.2.png)
1616

17-
其中,`TidbCluster``TidbMonitor``TidbInitializer``Backup``Restore``BackupSchedule``TidbClusterAutoScaler` 是由 CRD(`CustomResourceDefinition`)定义的自定义资源:
17+
其中,`TidbCluster``TidbMonitor``TidbInitializer``Backup``Restore``BackupSchedule` 是由 CRD(`CustomResourceDefinition`)定义的自定义资源:
1818

1919
* `TidbCluster` 用于描述用户期望的 TiDB 集群
2020
* `TidbMonitor` 用于描述用户期望的 TiDB 集群监控组件
2121
* `TidbInitializer` 用于描述用户期望的 TiDB 集群初始化 Job
2222
* `Backup` 用于描述用户期望的 TiDB 集群备份
2323
* `Restore` 用于描述用户期望的 TiDB 集群恢复
2424
* `BackupSchedule` 用于描述用户期望的 TiDB 集群周期性备份
25-
* `TidbClusterAutoScaler` 用于描述用户期望的 TiDB 集群自动伸缩
2625

2726
TiDB 集群的编排和调度逻辑则由下列组件负责:
2827

zh/cheat-sheet.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,6 @@ aliases: ['/docs-cn/tidb-in-kubernetes/dev/cheat-sheet/']
6060
kubectl -n ${namespace} get restore ${name}
6161
```
6262

63-
* 查看 TidbClusterAutoScaler:
64-
65-
{{< copyable "shell-regular" >}}
66-
67-
```shell
68-
kubectl -n ${namespace} get tidbclusterautoscaler ${name}
69-
```
70-
7163
* 查看 TidbInitializer:
7264

7365
{{< copyable "shell-regular" >}}
@@ -416,14 +408,6 @@ aliases: ['/docs-cn/tidb-in-kubernetes/dev/cheat-sheet/']
416408
kubectl delete -n ${namespace} tidbmonitor ${tidb_monitor_name}
417409
```
418410

419-
* 删除 TidbClusterAutoScaler:
420-
421-
{{< copyable "shell-regular" >}}
422-
423-
```shell
424-
kubectl -n ${namespace} delete tidbclusterautoscaler ${name}
425-
```
426-
427411
### 更多
428412

429413
其他更多 kubectl 的使用,请参考 [Kubectl Cheat Sheet](https://kubernetes.io/docs/reference/kubectl/cheatsheet/)。

zh/deploy-tidb-operator.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ NAME CREATED AT
6969
backups.pingcap.com 2020-06-11T07:59:40Z
7070
backupschedules.pingcap.com 2020-06-11T07:59:41Z
7171
restores.pingcap.com 2020-06-11T07:59:40Z
72-
tidbclusterautoscalers.pingcap.com 2020-06-11T07:59:42Z
7372
tidbclusters.pingcap.com 2020-06-11T07:59:38Z
7473
tidbinitializers.pingcap.com 2020-06-11T07:59:42Z
7574
tidbmonitors.pingcap.com 2020-06-11T07:59:41Z

zh/get-started.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,6 @@ customresourcedefinition.apiextensions.k8s.io/restores.pingcap.com created
184184
customresourcedefinition.apiextensions.k8s.io/backupschedules.pingcap.com created
185185
customresourcedefinition.apiextensions.k8s.io/tidbmonitors.pingcap.com created
186186
customresourcedefinition.apiextensions.k8s.io/tidbinitializers.pingcap.com created
187-
customresourcedefinition.apiextensions.k8s.io/tidbclusterautoscalers.pingcap.com created
188187
```
189188

190189
</details>

0 commit comments

Comments
 (0)