-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tf
40 lines (38 loc) · 930 Bytes
/
main.tf
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
module "kind_cluster" {
source = "../../"
cluster_name = "kubernetes-problems"
enable_metrics_server = true
enable_loadbalancer = false
nodes = [
{
role = "control-plan"
kubeadm_config_patches = []
extra_port_mappings = null
},
{
role = "control-plan"
kubeadm_config_patches = []
extra_port_mappings = null
},
{
role = "control-plan"
kubeadm_config_patches = []
extra_port_mappings = null
},
{
role = "worker"
kubeadm_config_patches = []
extra_port_mappings = null
},
{
role = "worker"
kubeadm_config_patches = []
extra_port_mappings = null
},
{
role = "worker"
kubeadm_config_patches = []
extra_port_mappings = null
}
]
}