OKR/prod-upgrade/mysql/mysql-0.yaml

128 lines
3.0 KiB
YAML
Raw Normal View History

2024-04-02 13:35:15 +08:00
apiVersion: v1
kind: ConfigMap
metadata:
name: mysql-m-cnf
data:
config: |-
[mysqld]
bind-address=0.0.0.0
port=3306
skip-name-resolve
datadir=/var/lib/mysql/data
log-bin=/var/lib/mysql/logs
plugin_dir=/var/lib/mysql/plugin
socket=/var/lib/mysql/mysql.sock
pid-file=/var/lib/mysql/mysqld.pid
log-error=/var/lib/mysql/logs/mysqld.log
max_allowed_packet=16M
character-set-server=utf8mb4
collation-server=utf8mb4_unicode_ci
# Extended
2024-04-02 15:29:03 +08:00
max_connections=5000
2024-04-02 13:35:15 +08:00
binlog_format=row
2024-04-02 15:02:21 +08:00
binlog_expire_logs_seconds=2592000
2024-04-02 15:29:03 +08:00
sql_mode=STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION
2024-04-02 13:35:15 +08:00
innodb_buffer_pool_size=4G
innodb_log_file_size=1G
innodb_flush_log_at_trx_commit=2
sync_binlog=0
[client]
port=3306
socket=/var/lib/mysql/mysql.sock
default-character-set=utf8mb4
plugin_dir=/var/lib/mysql/plugin
[manager]
port=3306
socket=/var/lib/mysql/mysql.sock
pid-file=/var/lib/mysql/mysqld.pid
---
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: mysql-m
spec:
replicas: 1
serviceName: mysql
selector:
matchLabels:
app: mysql-m
template:
metadata:
labels:
app: mysql-m
spec:
initContainers:
- name: init
image: busybox
imagePullPolicy: IfNotPresent
command:
- sh
- -c
- |
sysctl -w net.ipv4.tcp_keepalive_time=300
sysctl -w net.ipv4.tcp_keepalive_intvl=10
sysctl -w net.ipv4.tcp_keepalive_probes=3
securityContext:
privileged: true
containers:
- name: mysql
image: mysql:8.0.33
env:
- name: MYSQL_ROOT_PASSWORD
value: "Beaconfire@2099"
- name: MYSQL_DATABASE
value: "test"
- name: MYSQL_USER
value: "app"
- name: MYSQL_PASSWORD
value: "HelloBeaconfire!"
2024-04-02 14:18:34 +08:00
volumeMounts:
2024-04-02 13:35:15 +08:00
- name: mysql-m
mountPath: /var/lib/mysql
- name: mysql-m-cnf
mountPath: /etc/my.cnf
subPath: my.cnf
readOnly: true
volumes:
- name: mysql-m
hostPath:
path: /data/prod/mysql-m
- name: mysql-m-cnf
configMap:
name: mysql-m-cnf
items:
- key: config
path: my.cnf
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "kubernetes.io/hostname"
operator: In
values:
- bfs-k8snode-10-2-2-90.hetzner.base.beaconfireinc.com
2024-04-02 14:55:32 +08:00
tolerations:
2024-04-02 14:58:38 +08:00
- key: "app.kubernetes.io/component"
2024-04-02 14:55:32 +08:00
operator: "Equal"
value: "mysql"
effect: "NoSchedule"
2024-04-02 13:35:15 +08:00
---
apiVersion: v1
kind: Service
metadata:
name: mysql-m
labels:
app: mysql-m
spec:
ports:
- protocol: TCP
port: 3306
targetPort: 3306
selector:
app: mysql-m
type: ClusterIP