-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform.tfvars
66 lines (58 loc) · 1.23 KB
/
terraform.tfvars
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
62
63
64
65
zone = "ZONE_1"
inventory_file = "inventory.ini"
ssh_public_keys = [
# Put your public SSH key here
"/root/.ssh/id_rsa.pub",
# "ssh-rsa public key 2",
]
# image_name = "ubuntu"
# boot_image = "ubuntu-20.04"
ip_block_size = 4
datacenter = "kubespray-default-datacenter"
location = "de/txl"
machines = {
"master-0" : {
"index" : "0",
"name" : "master",
"node_type" : "master",
#number of cpu cores
"cpu" : "2",
#memory size in MB
"mem" : "4096"
# The size of the storage in GB
"disk_size" : 50
},
"worker-0" : {
"index" : "1",
"name" : "worker-0",
"node_type" : "worker",
#number of cpu cores
"cpu" : "2",
#memory size in MB
"mem" : "4096"
# The size of the storage in GB
"disk_size" : 80
},
"worker-1" : {
"index" : "2",
"name" : "worker-1",
"node_type" : "worker",
#number of cpu cores
"cpu" : "2",
#memory size in MB
"mem" : "4096"
# The size of the storage in GB
"disk_size" : 80
},
"worker-2" : {
"index" : "3",
"name" : "worker-2",
"node_type" : "worker",
#number of cpu cores
"cpu" : "2",
#memory size in MB
"mem" : "4096"
# The size of the storage in GB
"disk_size" : 80
}
}