-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathazure.tfvars
63 lines (61 loc) · 1.75 KB
/
azure.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
scenario_type = "perf-eval"
scenario_name = "cri-resource-consume"
deletion_delay = "2h"
owner = "aks"
network_config_list = [
{
role = "client"
vnet_name = "cri-vnet"
vnet_address_space = "10.0.0.0/9"
subnet = [
{
name = "cri-subnet-1"
address_prefix = "10.0.0.0/16"
}
]
network_security_group_name = ""
nic_public_ip_associations = []
nsr_rules = []
}
]
aks_config_list = [
{
role = "client"
aks_name = "cri-resource-consume"
dns_prefix = "cri"
subnet_name = "cri-vnet"
sku_tier = "Standard"
network_profile = {
network_plugin = "azure"
network_plugin_mode = "overlay"
pod_cidr = "10.0.0.0/9"
service_cidr = "192.168.0.0/16"
dns_service_ip = "192.168.0.10"
}
default_node_pool = {
name = "default"
node_count = 3
vm_size = "Standard_D16_v3"
os_disk_type = "Managed"
only_critical_addons_enabled = true
temporary_name_for_rotation = "defaulttmp"
}
extra_node_pool = [
{
name = "prompool"
node_count = 1
auto_scaling_enabled = false
vm_size = "Standard_D16_v3"
node_labels = { "prometheus" = "true" }
},
{
name = "userpool0"
node_count = 10
auto_scaling_enabled = false
vm_size = "Standard_D16_v3"
node_taints = ["cri-resource-consume=true:NoSchedule"]
node_labels = { "cri-resource-consume" = "true" }
}
]
}
]