-
Notifications
You must be signed in to change notification settings - Fork 499
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploy TiDB Cluster with CR via TiDB Operator v1.1 on GKE (#2027)
- Loading branch information
Showing
9 changed files
with
223 additions
and
78 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
apiVersion: pingcap.com/v1alpha1 | ||
kind: TidbMonitor | ||
metadata: | ||
name: CLUSTER_NAME | ||
spec: | ||
alertmanagerURL: "" | ||
annotations: {} | ||
clusters: | ||
- name: CLUSTER_NAME | ||
grafana: | ||
baseImage: grafana/grafana | ||
envs: | ||
# Configure Grafana using environment variables except GF_PATHS_DATA, GF_SECURITY_ADMIN_USER and GF_SECURITY_ADMIN_PASSWORD | ||
# Ref https://grafana.com/docs/installation/configuration/#using-environment-variables | ||
GF_AUTH_ANONYMOUS_ENABLED: "true" | ||
GF_AUTH_ANONYMOUS_ORG_NAME: "Main Org." | ||
GF_AUTH_ANONYMOUS_ORG_ROLE: "Viewer" | ||
# if grafana is running behind a reverse proxy with subpath http://foo.bar/grafana | ||
# GF_SERVER_DOMAIN: foo.bar | ||
# GF_SERVER_ROOT_URL: "%(protocol)s://%(domain)s/grafana/" | ||
imagePullPolicy: IfNotPresent | ||
logLevel: info | ||
password: admin | ||
resources: {} | ||
# limits: | ||
# cpu: 8000m | ||
# memory: 8Gi | ||
# requests: | ||
# cpu: 4000m | ||
# memory: 4Gi | ||
service: | ||
portName: http-grafana | ||
type: LoadBalancer | ||
username: admin | ||
version: 6.0.1 | ||
imagePullPolicy: IfNotPresent | ||
initializer: | ||
baseImage: pingcap/tidb-monitor-initializer | ||
imagePullPolicy: IfNotPresent | ||
resources: {} | ||
# limits: | ||
# cpu: 50m | ||
# memory: 64Mi | ||
# requests: | ||
# cpu: 50m | ||
# memory: 64Mi | ||
version: v3.0.12 | ||
kubePrometheusURL: "" | ||
nodeSelector: {} | ||
persistent: true | ||
prometheus: | ||
baseImage: prom/prometheus | ||
imagePullPolicy: IfNotPresent | ||
logLevel: info | ||
reserveDays: 12 | ||
resources: {} | ||
# limits: | ||
# cpu: 8000m | ||
# memory: 8Gi | ||
# requests: | ||
# cpu: 4000m | ||
# memory: 4Gi | ||
service: | ||
portName: http-prometheus | ||
type: NodePort | ||
version: v2.11.1 | ||
reloader: | ||
baseImage: pingcap/tidb-monitor-reloader | ||
imagePullPolicy: IfNotPresent | ||
resources: {} | ||
# limits: | ||
# cpu: 50m | ||
# memory: 64Mi | ||
# requests: | ||
# cpu: 50m | ||
# memory: 64Mi | ||
service: | ||
portName: tcp-reloader | ||
type: NodePort | ||
version: v1.0.1 | ||
storage: 100Gi | ||
storageClassName: pd-ssd | ||
tolerations: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
apiVersion: pingcap.com/v1alpha1 | ||
kind: TidbCluster | ||
metadata: | ||
name: CLUSTER_NAME | ||
spec: | ||
version: v3.0.12 | ||
timezone: UTC | ||
pvReclaimPolicy: Retain | ||
schedulerName: tidb-scheduler | ||
pd: | ||
config: {} | ||
nodeSelector: | ||
dedicated: CLUSTER_NAME-pd | ||
replicas: 3 | ||
requests: | ||
cpu: "1" | ||
memory: 400Mi | ||
storage: 1Gi | ||
tolerations: | ||
- effect: NoSchedule | ||
key: dedicated | ||
operator: Equal | ||
value: CLUSTER_NAME-pd | ||
storageClassName: pd-ssd | ||
tidb: | ||
config: {} | ||
annotations: | ||
tidb.pingcap.com/sysctl-init: "true" | ||
podSecurityContext: | ||
sysctls: | ||
- name: net.core.somaxconn | ||
value: "32768" | ||
- name: net.ipv4.tcp_keepalive_intvl | ||
value: "75" | ||
- name: net.ipv4.tcp_keepalive_time | ||
value: "300" | ||
nodeSelector: | ||
dedicated: CLUSTER_NAME-tidb | ||
replicas: 2 | ||
requests: | ||
cpu: "1" | ||
memory: 400Mi | ||
separateSlowLog: true | ||
service: | ||
type: LoadBalancer | ||
externalTrafficPolicy: Local | ||
annotations: | ||
cloud.google.com/load-balancer-type: Internal | ||
slowLogTailer: | ||
limits: | ||
cpu: 100m | ||
memory: 50Mi | ||
requests: | ||
cpu: 20m | ||
memory: 5Mi | ||
tolerations: | ||
- effect: NoSchedule | ||
key: dedicated | ||
operator: Equal | ||
value: CLUSTER_NAME-tidb | ||
tikv: | ||
config: | ||
log-level: info | ||
annotations: | ||
tidb.pingcap.com/sysctl-init: "true" | ||
podSecurityContext: | ||
sysctls: | ||
- name: net.core.somaxconn | ||
value: "32768" | ||
nodeSelector: | ||
dedicated: CLUSTER_NAME-tikv | ||
replicas: 3 | ||
requests: | ||
cpu: "1" | ||
memory: 2Gi | ||
storage: 45Gi | ||
storageClassName: local-storage | ||
tolerations: | ||
- effect: NoSchedule | ||
key: dedicated | ||
operator: Equal | ||
value: CLUSTER_NAME-tikv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,7 @@ | ||
output "region" { | ||
value = var.GCP_REGION | ||
} | ||
|
||
output "kubeconfig_file" { | ||
value = local.kubeconfig | ||
} | ||
|
||
output "tidb_version" { | ||
value = var.tidb_version | ||
} | ||
|
||
output "monitor_ilb_ip" { | ||
value = module.default-tidb-cluster.monitor_lb_ip | ||
} | ||
|
||
output "monitor_port" { | ||
value = module.default-tidb-cluster.monitor_port | ||
} | ||
|
||
output "how_to_ssh_to_bastion" { | ||
value = module.bastion.how_to_ssh_to_bastion | ||
} | ||
|
||
output "how_to_connect_to_default_cluster_tidb_from_bastion" { | ||
value = module.default-tidb-cluster.how_to_connect_to_tidb_from_bastion | ||
} | ||
|
||
output "how_to_set_reclaim_policy_of_pv_for_default_tidb_cluster_to_delete" { | ||
description = "The kubectl command for changing the ReclaimPolicy for persistent volumes claimed by the default TiDB cluster to Delete to avoid orphaned disks. Run this command before terraform destroy." | ||
value = module.default-tidb-cluster.how_to_set_reclaim_policy_to_delete | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters