diff --git a/en/TOC.md b/en/TOC.md index 0cadb0c53c..05f4d53075 100644 --- a/en/TOC.md +++ b/en/TOC.md @@ -7,6 +7,7 @@ + Introduction - [Overview](tidb-operator-overview.md) + - [What's New in v1.1](whats-new-in-v1.1.md) - [TiDB Operator v1.1 Notice](notes-tidb-operator-v1.1.md) - [Get Started](get-started.md) + Deploy @@ -14,7 +15,7 @@ - [On AWS EKS](deploy-on-aws-eks.md) - [On GCP GKE](deploy-on-gcp-gke.md) - [On Alibaba Cloud ACK](deploy-on-alibaba-cloud.md) - + On Self-managed Kubernetes + + In Self-managed Kubernetes - [Prerequisites](prerequisites.md) - [Configure Storage Class](configure-storage-class.md) - [Deploy TiDB Operator](deploy-tidb-operator.md) diff --git a/en/whats-new-in-v1.1.md b/en/whats-new-in-v1.1.md new file mode 100644 index 0000000000..7b301a4e08 --- /dev/null +++ b/en/whats-new-in-v1.1.md @@ -0,0 +1,49 @@ +--- +title: What's New in v1.1 +summary: Learn the new features in TiDB Operator v1.1. +category: introduction +--- + +# What's New in v1.1 + +Based on v1.0, TiDB Operator v1.1 has several new features, including TiDB 4.0 support, TiKV data encryption, and TLS certificate configuration. TiDB Operator v1.1 also supports deploying new components such as TiFlash and TiCDC. + +TiDB Operator 1.1 also makes improvements in usability, providing the user experience that is consistent with the Kubernetes native resources. + +## Extensibility + +- TidbCluster CR supports deploying and managing the PD Discovery component, which is fully capable of replacing tidb-cluster chart to manage the TiDB cluster. + +- TidbCluster CR adds support for Pump, TiFlash, TiCDC, and TiDB Dashboard. + +- Add the [Admission Controller](enable-admission-webhook.md) (optional) to improve the user experience of upgrade and scaling, and to provide the canary release feature. + +- `tidb-scheduler` supports high availability (HA) scheduling at any dimension and scheduler preemption. + +- Support using tikv-importer chart to [deploy and manage tikv-importer](restore-data-using-tidb-lightning.md#deploy-tikv-importer). + +## Usability + +- Add TidbMonitor CR to deploy the cluster monitoring. + +- Add TidbInitializer CR to initialize the cluster. + +- Add Backup, BackupSchedule, and Restore CR to back up and restore the cluster, which supports using Amazon S3 or GCS as the remote storage. + +- Support gracefully restart a component in the TiDB cluster. + +## Security + +- Support configuring TLS certificates for the TiDB cluster components and for MySQL clients. + +- Support TiKV data encryption. + +## Experimental features + +- Add `TidbClusterAutoScaler` to implement [auto-scaling](enable-tidb-cluster-auto-scaling.md). You can enable this feature by turning on the `AutoScaling` switch. + +- Add the optional [Advanced StatefulSet Controller](advanced-statefulset.md), which supports deleting a specific Pod. You can enable this feature by turning on the `AdvancedStatefulSet` switch. + +For the full release notes, see [1.1 CHANGE LOG](https://github.com/pingcap/tidb-operator/blob/master/CHANGELOG-1.1.md). + +To deploy TiDB Operator in Kubernetes, see [Deployment](deploy-tidb-operator.md). For CRD documentation, see [API references](https://github.com/pingcap/tidb-operator/blob/master/docs/api-references/docs.md).