-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcloud-config.json
54 lines (54 loc) · 990 Bytes
/
cloud-config.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"HostName": "cloud-init",
"HDD": [
{
"Capacity": 40,
"DeviceNode": "scsi0:0"
},
{
"Capacity": 10,
"DeviceNode": "scsi1:0",
"Label": "data",
"FileSystem": "ext4",
"MountPoint": "/home"
}
],
"NIC": [
{
"Ip": [
"10.8.2.105/24",
"10.8.2.106/24"
],
"Mac": "00:15:5d:2e:20:16",
"Gw": "10.8.2.1"
},
{
"Ip": [
"10.212.157.10/24"
],
"Mac": "00:50:56:96:1d:28"
}
],
"DNS": {
"DomainSearch": [
"domain.local",
"server.net"
],
"Servers": [
"1.1.1.1"
]
},
"Domain": {
"Name": "local.net"
},
"Users": [
{
"Name": "localadmin",
"Groups": [ "admin" ],
"System": false,
"Password": "encrypted",
"Sudo": "ALL=(ALL) NOPASSWD:ALL",
"SshKey": "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOW9lsiHoqOH9+rO9RAg0JR2R9eYxCcJAfk67PJS1TGM [email protected]"
}
]
}