Jian Li | e2a04ce | 2020-07-01 19:07:02 +0900 | [diff] [blame] | 1 | { |
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 | } |