blob: 132a0a7442187b3ec8d69fa4b213cf70eed730dc [file] [log] [blame]
Jian Lie2a04ce2020-07-01 19:07:02 +09001{
2 "type": "object",
3 "required": [
4 "hosts"
5 ],
6 "properties": {
7 "hosts": {
8 "type": "array",
9 "items": {
10 "type": "object",
11 "required": [
12 "hostIp",
13 "nodeNames"
14 ],
15 "properties": {
16 "hostIp": {
17 "type": "string",
18 "example": "192.168.200.10"
19 },
20 "nodeNames": {
21 "type": "array",
22 "items": {
23 "type": "string",
24 "example": "k8s-master"
25 }
26 }
27 }
28 }
29 }
30 }
31}