2021-03-15 08:41:04 +00:00
|
|
|
# See: https://developers.upcloud.com/1.3/5-zones/
|
|
|
|
zone = "fi-hel1"
|
|
|
|
username = "ubuntu"
|
|
|
|
|
2021-09-10 20:55:21 +00:00
|
|
|
# Prefix to use for all resources to separate them from other resources
|
|
|
|
prefix = "kubespray"
|
2021-03-15 08:41:04 +00:00
|
|
|
|
2021-09-10 20:55:21 +00:00
|
|
|
inventory_file = "inventory.ini"
|
2021-03-15 08:41:04 +00:00
|
|
|
|
|
|
|
# Set the operating system using UUID or exact name
|
|
|
|
template_name = "Ubuntu Server 20.04 LTS (Focal Fossa)"
|
2021-09-10 20:55:21 +00:00
|
|
|
|
2021-03-15 08:41:04 +00:00
|
|
|
ssh_public_keys = [
|
|
|
|
# Put your public SSH key here
|
|
|
|
"ssh-rsa I-did-not-read-the-docs",
|
|
|
|
"ssh-rsa I-did-not-read-the-docs 2",
|
|
|
|
]
|
|
|
|
|
2021-09-10 20:55:21 +00:00
|
|
|
# check list of available plan https://developers.upcloud.com/1.3/7-plans/
|
2021-03-15 08:41:04 +00:00
|
|
|
machines = {
|
|
|
|
"master-0" : {
|
|
|
|
"node_type" : "master",
|
|
|
|
#number of cpu cores
|
|
|
|
"cpu" : "2",
|
|
|
|
#memory size in MB
|
|
|
|
"mem" : "4096"
|
|
|
|
# The size of the storage in GB
|
|
|
|
"disk_size" : 250
|
2021-09-10 20:55:21 +00:00
|
|
|
"additional_disks": {}
|
2021-03-15 08:41:04 +00:00
|
|
|
},
|
|
|
|
"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" : 250
|
2021-09-10 20:55:21 +00:00
|
|
|
"additional_disks": {
|
|
|
|
# "some-disk-name-1": {
|
|
|
|
# "size": 100,
|
|
|
|
# "tier": "maxiops",
|
|
|
|
# },
|
|
|
|
# "some-disk-name-2": {
|
|
|
|
# "size": 100,
|
|
|
|
# "tier": "maxiops",
|
|
|
|
# }
|
|
|
|
}
|
2021-03-15 08:41:04 +00:00
|
|
|
},
|
|
|
|
"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" : 250
|
2021-09-10 20:55:21 +00:00
|
|
|
"additional_disks": {
|
|
|
|
# "some-disk-name-1": {
|
|
|
|
# "size": 100,
|
|
|
|
# "tier": "maxiops",
|
|
|
|
# },
|
|
|
|
# "some-disk-name-2": {
|
|
|
|
# "size": 100,
|
|
|
|
# "tier": "maxiops",
|
|
|
|
# }
|
|
|
|
}
|
2021-03-15 08:41:04 +00:00
|
|
|
},
|
|
|
|
"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" : 250
|
2021-09-10 20:55:21 +00:00
|
|
|
"additional_disks": {
|
|
|
|
# "some-disk-name-1": {
|
|
|
|
# "size": 100,
|
|
|
|
# "tier": "maxiops",
|
|
|
|
# },
|
|
|
|
# "some-disk-name-2": {
|
|
|
|
# "size": 100,
|
|
|
|
# "tier": "maxiops",
|
|
|
|
# }
|
|
|
|
}
|
2021-03-15 08:41:04 +00:00
|
|
|
}
|
|
|
|
}
|