-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontainer.config.json
More file actions
28 lines (27 loc) · 947 Bytes
/
container.config.json
File metadata and controls
28 lines (27 loc) · 947 Bytes
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
{
"containerPort": 443,
"minNum": 0,
"maxNum": 5,
"cpu": 1,
"mem": 2,
"policyType": "cpu",
"policyThreshold": 60,
"policyDetails": [
{
"PolicyType": "cpu",
"PolicyThreshold": 60
},
{
"PolicyType": "mem",
"PolicyThreshold": 60
}
],
"envParams": {},
"customLogs": "stdout",
"dataBaseName":"golang_demo",
"executeSQLs":[
"CREATE DATABASE IF NOT EXISTS golang_demo;",
"USE golang_demo;",
"CREATE TABLE IF NOT EXISTS `Counters` (`id` int(11) NOT NULL AUTO_INCREMENT, `count` int(11) NOT NULL DEFAULT 1, `createdAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updatedAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`)) ENGINE = InnoDB DEFAULT CHARSET = utf8;"
]
}