-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform-onlymasters.yaml
61 lines (55 loc) · 1.39 KB
/
terraform-onlymasters.yaml
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
55
56
57
58
59
60
61
libvirt_uri = "qemu+ssh://[email protected]/system"
coreos_image = "fedora-coreos-35.20220327.3.0-qemu.x86_64.qcow2"
utility_hosts = {
utility = {
mac = "12:22:33:44:55:30"
vcpus = 2
memory = 4096
vnc_address = "172.16.1.10"
disk_size = 21474836480
network = "newlabnet"
ssh_key = "<enter ssh public key here>"
}
}
okd_hosts = {
bootstrap = {
mac = "12:22:33:44:55:50"
vcpus = 4
memory = 16384
ignition = "bootstrap.ign"
ip_address = "172.16.2.50"
vnc_address = "172.16.1.10"
network = "newlabnet"
disk_size = 107374182400
}
master1 = {
mac = "12:22:33:44:55:51"
vcpus = 4
memory = 16384
ignition = "master.ign"
ip_address = "172.16.2.51"
vnc_address = "172.16.1.10"
network = "newlabnet"
disk_size = 107374182400
}
master2 = {
mac = "12:22:33:44:55:52"
vcpus = 4
memory = 16384
ignition = "master.ign"
ip_address = "172.16.2.52"
vnc_address = "172.16.1.10"
network = "newlabnet"
disk_size = 107374182400
}
master3 = {
mac = "12:22:33:44:55:53"
vcpus = 4
memory = 16384
ignition = "master.ign"
ip_address = "172.16.2.53"
vnc_address = "172.16.1.10"
network = "newlabnet"
disk_size = 107374182400
}
}