OKR/qa-upgrade/mysql/mysql.yaml

75 lines
1.9 KiB
YAML
Raw Normal View History

2024-11-04 12:40:42 +08:00
apiVersion: apps/v1
kind: StatefulSet
2023-08-28 17:28:57 +08:00
metadata:
name: mysql
spec:
replicas: 1
2024-11-04 12:40:42 +08:00
serviceName: mysql
2023-08-28 17:28:57 +08:00
selector:
2024-11-04 12:40:42 +08:00
matchLabels:
app: mysql
2023-08-28 17:28:57 +08:00
template:
metadata:
labels:
2024-11-04 12:40:42 +08:00
app: mysql
2023-08-28 17:28:57 +08:00
spec:
2023-09-15 14:08:02 +08:00
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
2023-08-28 17:28:57 +08:00
containers:
- name: mysql
image: mysql:8.0.33
2023-08-28 22:44:28 +08:00
args: ["--character-set-server=utf8mb4", "--collation-server=utf8mb4_unicode_ci", "--max_connections=2000", "--binlog_expire_logs_seconds=432000","--sql_mode=STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION"]
2023-08-28 17:28:57 +08:00
ports:
- containerPort: 3306
volumeMounts:
- name: mysql-data-qa
mountPath: /var/lib/mysql
env:
- name: MYSQL_ROOT_PASSWORD
2023-08-28 18:40:18 +08:00
value: "Beaconfire@2099"
2023-08-28 17:28:57 +08:00
- name: MYSQL_DATABASE
value: "devops"
- name: MYSQL_USER
value: "devops"
- name: MYSQL_PASSWORD
value: "devops"
volumes:
- name: mysql-data-qa
hostPath:
path: /data/qa/mysql
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "kubernetes.io/hostname"
operator: In
values:
- bfs-k8snode-10-2-0-9.hetzner.base.beaconfireinc.com
---
apiVersion: v1
kind: Service
metadata:
name: mysql
labels:
2024-11-04 12:54:31 +08:00
app: mysql
2023-08-28 17:28:57 +08:00
spec:
selector:
2024-11-04 12:54:31 +08:00
app: mysql
2023-08-28 17:28:57 +08:00
ports:
- protocol: TCP
port: 3306
targetPort: 3306
# nodePort: 30026
2024-11-04 12:40:42 +08:00
type: NodePort