-
Notifications
You must be signed in to change notification settings - Fork 0
/
mysqlkube-aion-deployment.json
52 lines (40 loc) · 1.23 KB
/
mysqlkube-aion-deployment.json
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
{
"connections": {
"default": {
"outputDataPath": "",
"metadata": {
"microserviceName": "mysql-kube",
"projectCommitId": "",
"serviceAccountName": "default",
"dockerTag": "",
"ip": "",
"port": "",
"deviceName": "",
"projectName": "",
"serviceType": "NodePort",
"portConfigList": [
{
"name": "front",
"port": "3306",
"nodePort": "31113"
}
],
"env": {
"MYSQL_ROOT_PASSWORD": "root",
"MYSQL_USER": "latona",
"MYSQL_PASSWORD": "latonalatona"
},
"volumeMounts": {
"mysql-persistent-storage": "/var/lib/mysql"
},
"volumes": {
"mysql-persistent-storage": {
"type": "persistentVolumeClaim",
"path": "/mnt/mysql_data2",
"storage": "1Gi"
}
}
}
}
}
}