1
+ locals {
2
+ # Virtual Machines
3
+ VMs = {
4
+ k8scpnode = {
5
+ # The host name of the VM
6
+ hostname = " k8scpnode"
7
+
8
+ # The image source of the VM
9
+ # cloud_image = "https://cloud-images.ubuntu.com/jammy/current/focal-server-cloudimg-amd64.img"
10
+ cloud_image = " ../jammy-server-cloudimg-amd64.img"
11
+
12
+ # TimeZone of the VM: /usr/share/zoneinfo/
13
+ timezone = " Europe/Athens"
14
+
15
+ # The sshd port of the VM"
16
+ ssh_port = 22
17
+
18
+ # The default ssh key for user ubuntu
19
+ # https://github.com/<username>.keys
20
+ gh_user = " ebal"
21
+
22
+ # The disk volume size of the VM
23
+ # eg. 20G
24
+ vol_size = 20 * 1024 * 1024 * 1024
25
+
26
+ # How many virtual CPUs the VM
27
+ vcpu = 2
28
+
29
+ # How RAM will VM have will have
30
+ vmem = 2048
31
+
32
+ },
33
+
34
+ k8wrknode1 = {
35
+ # The host name of the VM
36
+ hostname = " k8wrknode1"
37
+
38
+ # The image source of the VM
39
+ # cloud_image = "https://cloud-images.ubuntu.com/jammy/current/focal-server-cloudimg-amd64.img"
40
+ cloud_image = " ../jammy-server-cloudimg-amd64.img"
41
+
42
+ # TimeZone of the VM: /usr/share/zoneinfo/
43
+ timezone = " Europe/Athens"
44
+
45
+ # The sshd port of the VM"
46
+ ssh_port = 22
47
+
48
+ # The default ssh key for user ubuntu
49
+ # https://github.com/<username>.keys
50
+ gh_user = " ebal"
51
+
52
+ # The disk volume size of the VM
53
+ # eg. 40G
54
+ vol_size = 40 * 1024 * 1024 * 1024
55
+
56
+ # How many virtual CPUs the VM
57
+ vcpu = 4
58
+
59
+ # How RAM will VM have will have
60
+ vmem = 4096
61
+
62
+ },
63
+
64
+ k8wrknode2 = {
65
+ # The host name of the VM
66
+ hostname = " k8wrknode2"
67
+
68
+ # The image source of the VM
69
+ # cloud_image = "https://cloud-images.ubuntu.com/jammy/current/focal-server-cloudimg-amd64.img"
70
+ cloud_image = " ../jammy-server-cloudimg-amd64.img"
71
+
72
+ # TimeZone of the VM: /usr/share/zoneinfo/
73
+ timezone = " Europe/Athens"
74
+
75
+ # The sshd port of the VM"
76
+ ssh_port = 22
77
+
78
+ # The default ssh key for user ubuntu
79
+ # https://github.com/<username>.keys
80
+ gh_user = " ebal"
81
+
82
+ # The disk volume size of the VM
83
+ # eg. 40G
84
+ vol_size = 40 * 1024 * 1024 * 1024
85
+
86
+ # How many virtual CPUs the VM
87
+ vcpu = 4
88
+
89
+ # How RAM will VM have will have
90
+ vmem = 4096
91
+
92
+ }
93
+
94
+ }
95
+ }
0 commit comments