scenarios/perf-eval/pod-diff-node-vnet/terraform-inputs/azure.tfvars (142 lines of code) (raw):

scenario_type = "perf-eval" scenario_name = "pod-diff-node-vnet" deletion_delay = "2h" owner = "aks" network_config_list = [ { role = "pod2pod" vnet_name = "pod2pod-vnet" vnet_address_space = "10.30.0.0/16" subnet = [ { name = "pod2pod-subnet-1" address_prefix = "10.30.1.0/24" } ] network_security_group_name = "same-nsg" nic_public_ip_associations = [] nsr_rules = [ { name = "Allow-Port-5201" priority = 100 direction = "Inbound" access = "Allow" protocol = "Tcp" source_port_range = "*" destination_port_range = "5201" source_address_prefix = "0.0.0.0/0" destination_address_prefix = "*" }, { name = "Allow-Port-20000" priority = 101 direction = "Inbound" access = "Allow" protocol = "Tcp" source_port_range = "*" destination_port_range = "20000" source_address_prefix = "0.0.0.0/0" destination_address_prefix = "*" }, { name = "Allow-Port-20003" priority = 102 direction = "Inbound" access = "Allow" protocol = "Tcp" source_port_range = "*" destination_port_range = "20003" source_address_prefix = "0.0.0.0/0" destination_address_prefix = "*" }, { name = "Allow-Port-20005" priority = 103 direction = "Inbound" access = "Allow" protocol = "Tcp" source_port_range = "*" destination_port_range = "20005" source_address_prefix = "0.0.0.0/0" destination_address_prefix = "*" }, { name = "Allow-Port-80" priority = 104 direction = "Inbound" access = "Allow" protocol = "Tcp" source_port_range = "*" destination_port_range = "80" source_address_prefix = "0.0.0.0/0" destination_address_prefix = "*" }, { name = "Allow-API-Server" priority = 105 direction = "Outbound" access = "Allow" protocol = "Tcp" source_port_range = "*" destination_port_range = "443" source_address_prefix = "*" destination_address_prefix = "*" }, { name = "Allow-WebSocket" priority = 106 direction = "Inbound" access = "Allow" protocol = "Tcp" source_port_range = "*" destination_port_range = "443" source_address_prefix = "*" destination_address_prefix = "*" } ] } ] aks_config_list = [ { role = "pod2pod" aks_name = "pod-diff-node" dns_prefix = "pod2pod" subnet_name = "pod2pod-subnet-1" sku_tier = "Standard" network_profile = { network_plugin = "azure" network_plugin_mode = "overlay" pod_cidr = "10.128.0.0/9" service_cidr = "192.168.0.0/16" dns_service_ip = "192.168.0.10" } default_node_pool = { name = "default" node_count = 1 auto_scaling_enabled = false vm_size = "Standard_D16_v3" os_disk_type = "Managed" only_critical_addons_enabled = true temporary_name_for_rotation = "defaulttmp" } extra_node_pool = [ { name = "client" vm_size = "Standard_D16_v3" node_count = 1 node_labels = { "app" = "client", "test" = "true" } node_taints = ["dedicated-test=true:NoSchedule", "dedicated-test=true:NoExecute"] zones = ["1"] }, { name = "server" vm_size = "Standard_D16_v3" node_count = 1 node_labels = { "app" = "server", "test" = "true" } node_taints = ["dedicated-test=true:NoSchedule", "dedicated-test=true:NoExecute"] zones = ["1"] } ] kubernetes_version = "1.30" } ]