diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c38b4ecbf..6145524986 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -284,7 +284,7 @@ The `monitor` section in new `values.yaml`: monitor: create: true initializer: - image: pingcap/tidb-monitor-initializer:v3.0.1 + image: pingcap/tidb-monitor-initializer:v3.0.5 imagePullPolicy: IfNotPresent reloader: create: true diff --git a/charts/tidb-cluster/values.yaml b/charts/tidb-cluster/values.yaml index 166b0407dd..1400bce829 100644 --- a/charts/tidb-cluster/values.yaml +++ b/charts/tidb-cluster/values.yaml @@ -74,7 +74,7 @@ pd: location-labels = ["region", "zone", "rack", "host"] replicas: 3 - image: pingcap/pd:v3.0.4 + image: pingcap/pd:v3.0.5 # storageClassName is a StorageClass provides a way for administrators to describe the "classes" of storage they offer. # different classes might map to quality-of-service levels, or to backup policies, # or to arbitrary policies determined by the cluster administrators. @@ -221,7 +221,7 @@ tikv: # we can only set capacity in tikv.resources.limits.storage. replicas: 3 - image: pingcap/tikv:v3.0.4 + image: pingcap/tikv:v3.0.5 # storageClassName is a StorageClass provides a way for administrators to describe the "classes" of storage they offer. # different classes might map to quality-of-service levels, or to backup policies, # or to arbitrary policies determined by the cluster administrators. @@ -311,7 +311,7 @@ tidb: # initSqlConfigMapName: tidb-initsql # initSql: |- # create database app; - image: pingcap/tidb:v3.0.4 + image: pingcap/tidb:v3.0.5 # Image pull policy. imagePullPolicy: IfNotPresent @@ -323,7 +323,6 @@ tidb: # cpu: 12000m # memory: 12Gi - ## affinity defines tikv scheduling rules,affinity default settings is empty. ## please read the affinity document before set your scheduling rule: ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity @@ -354,7 +353,6 @@ tidb: # # when the kubelet is configured to allow unsafe sysctls # - name: net.core.somaxconn # value: "32768" - # # Load balancers usually have an idle timeout (eg. AWS NLB idle timeout is 350), # # the tcp_keepalive_time must be set to lower than LB idle timeout. # - name: net.ipv4.tcp_keepalive_time @@ -362,7 +360,6 @@ tidb: # - name: net.ipv4.tcp_keepalive_intvl # value: "75" - # Specify the priorityClassName for TiDB Pod. # refer to https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#how-to-use-priority-and-preemption priorityClassName: "" @@ -424,7 +421,7 @@ monitor: storageClassName: local-storage storage: 10Gi initializer: - image: pingcap/tidb-monitor-initializer:v3.0.4 + image: pingcap/tidb-monitor-initializer:v3.0.5 imagePullPolicy: IfNotPresent config: K8S_PROMETHEUS_URL: http://prometheus-k8s.monitoring.svc:9090 @@ -502,7 +499,7 @@ binlog: pump: create: false replicas: 1 - image: pingcap/tidb-binlog:v3.0.4 + image: pingcap/tidb-binlog:v3.0.5 imagePullPolicy: IfNotPresent logLevel: info # storageClassName is a StorageClass provides a way for administrators to describe the "classes" of storage they offer. @@ -544,7 +541,7 @@ binlog: drainer: create: false - image: pingcap/tidb-binlog:v3.0.4 + image: pingcap/tidb-binlog:v3.0.5 imagePullPolicy: IfNotPresent logLevel: info # storageClassName is a StorageClass provides a way for administrators to describe the "classes" of storage they offer. @@ -698,7 +695,7 @@ scheduledBackup: importer: create: false - image: pingcap/tidb-lightning:v3.0.4 + image: pingcap/tidb-lightning:v3.0.5 imagePullPolicy: IfNotPresent storageClassName: local-storage storage: 200Gi diff --git a/charts/tidb-drainer/values.yaml b/charts/tidb-drainer/values.yaml index c6a93d79d6..c832dbcf2f 100644 --- a/charts/tidb-drainer/values.yaml +++ b/charts/tidb-drainer/values.yaml @@ -7,7 +7,7 @@ timezone: UTC # clusterName is the TiDB cluster name that should backup from or restore to. clusterName: demo -clusterVersion: v3.0.4 +clusterVersion: v3.0.5 baseImage: pingcap/tidb-binlog imagePullPolicy: IfNotPresent diff --git a/charts/tidb-lightning/values.yaml b/charts/tidb-lightning/values.yaml index 455a082960..c59e5ee0ea 100644 --- a/charts/tidb-lightning/values.yaml +++ b/charts/tidb-lightning/values.yaml @@ -5,7 +5,7 @@ # timezone is the default system timzone timezone: UTC -image: pingcap/tidb-lightning:v3.0.4 +image: pingcap/tidb-lightning:v3.0.5 imagePullPolicy: IfNotPresent service: type: NodePort diff --git a/deploy/aliyun/variables.tf b/deploy/aliyun/variables.tf index 5920d252e2..852a3ca3b4 100644 --- a/deploy/aliyun/variables.tf +++ b/deploy/aliyun/variables.tf @@ -36,7 +36,7 @@ variable "cluster_name" { variable "tidb_version" { description = "TiDB cluster version" - default = "v3.0.4" + default = "v3.0.5" } variable "tidb_cluster_chart_version" { description = "tidb-cluster chart version" diff --git a/deploy/aws/clusters.tf b/deploy/aws/clusters.tf index 101406a8b8..1da87b0497 100644 --- a/deploy/aws/clusters.tf +++ b/deploy/aws/clusters.tf @@ -24,7 +24,7 @@ provider "helm" { # # # NOTE: cluster_name cannot be changed after creation # cluster_name = "demo-cluster" -# cluster_version = "v3.0.4" +# cluster_version = "v3.0.5" # ssh_key_name = module.key-pair.key_name # pd_count = 1 # pd_instance_type = "t2.xlarge" diff --git a/deploy/aws/variables.tf b/deploy/aws/variables.tf index 6f7f175671..95c0195113 100644 --- a/deploy/aws/variables.tf +++ b/deploy/aws/variables.tf @@ -80,7 +80,7 @@ variable "bastion_instance_type" { # For aws tutorials compatiablity variable "default_cluster_version" { - default = "v3.0.4" + default = "v3.0.5" } variable "default_cluster_pd_count" { diff --git a/deploy/gcp/examples/tidb-customized.tfvars b/deploy/gcp/examples/tidb-customized.tfvars index 25d3e89927..dc86910863 100644 --- a/deploy/gcp/examples/tidb-customized.tfvars +++ b/deploy/gcp/examples/tidb-customized.tfvars @@ -3,7 +3,7 @@ tikv_instance_type = "n1-highmem-4" tidb_instance_type = "n1-standard-8" # specify tidb version -tidb_version = "3.0.4" +tidb_version = "3.0.5" # override tidb cluster values override_values = <