-
Notifications
You must be signed in to change notification settings - Fork 3
/
mysql.yaml
138 lines (138 loc) · 3.24 KB
/
mysql.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
apiVersion: v1
kind: Service
metadata:
name: mysql
namespace: cloud
spec:
clusterIP: None
ports:
- name: mysql
port: 3306
targetPort: mysql
- name: vttablet
port: 3380
targetPort: vttablet
- name: vttablet-grpc
port: 14999
targetPort: vttablet-grpc
selector:
app: mysql
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: mysql
namespace: cloud
spec:
selector:
matchLabels:
app: mysql
strategy:
type: Recreate
template:
metadata:
labels:
app: mysql
spec:
hostname: mysql
containers:
- env:
- name: MYSQL_ROOT_PASSWORD
value: passw0rd
- name: MYSQL_DATABASE
value: peak
image: percona/percona-server:5.7
name: mysql
ports:
- containerPort: 3306
name: mysql
args:
- --log_bin=ON
- --server-id=1126369102
- --gtid-mode=ON
- --enforce-gtid-consistency=ON
- name: vttablet
image: serhatcetinkaya/vitess:60322344f-lite
imagePullPolicy: IfNotPresent
command:
- /vt/bin/vttablet
- -topo_implementation
- consul
- -topo_global_server_address
- localhost:8500
- -topo_global_root
- vitess/global
- -tablet-path
- us_east_1-1126369102
- -db_host
- mysql
- -db_port
- "3306"
- -client-found-rows-pool-size
- "400"
- -queryserver-config-pool-size
- "400"
- -queryserver-config-transaction-cap
- "400"
- -db_dba_user
- root
- -db_dba_password
- passw0rd
- -db_app_user
- root
- -db_app_password
- passw0rd
- -db_filtered_user
- root
- -db_filtered_password
- passw0rd
- -db_repl_user
- root
- -db_repl_password
- passw0rd
- -enforce_strict_trans_tables=True
- -init_keyspace
- peak-test
- -init_shard
- "0"
- -init_tablet_type
- replica
- -init_db_name_override
- peak
- -vtctld_addr
- vtctld:15999
- -enable_replication_reporter
- -health_check_interval
- 5s
- -service_map
- grpc-queryservice,grpc-tabletmanager,grpc-updatestream
- -grpc_port
- "14999"
- -port
- "3380"
- -disable_active_reparents
- -unhealthy_threshold
- 86400s
- -db_charset
- utf8mb4
- -grpc_max_message_size
- "37754432"
- -queryserver-config-max-result-size
- "10000"
- -init_populate_metadata
ports:
- containerPort: 3380
name: vttablet
- containerPort: 14999
name: vttablet-grpc
- image: nginx:1.17.7
imagePullPolicy: IfNotPresent
name: nginx
volumeMounts:
- mountPath: /etc/nginx/conf.d/consul.conf
name: nginx-config-vol
subPath: consul.conf
volumes:
- configMap:
name: nginx-config
name: nginx-config-vol