Skip to content

Commit

Permalink
apply patch for Update CIDR range for CRI test
Browse files Browse the repository at this point in the history
  • Loading branch information
dallasd1 committed Jan 17, 2025
1 parent 7f0dfd1 commit 821ebfc
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ network_config_list = [
subnet = [
{
name = "client-subnet"
cidr_block = "10.0.0.0/24"
cidr_block = "10.0.0.0/17"
zone_suffix = "a"
map_public_ip_on_launch = true
},
{
name = "client-subnet-2"
cidr_block = "10.0.1.0/24"
cidr_block = "10.0.128.0/17"
zone_suffix = "b"
map_public_ip_on_launch = true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,36 @@ scenario_name = "azurelinux-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 = "cl2"
subnet_name = "aks-network"
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"
Expand All @@ -35,6 +55,7 @@ aks_config_list = [
{
name = "userpool0"
node_count = 10
auto_scaling_enabled = false
vm_size = "Standard_D16s_v3"
os_sku = "AzureLinux"
node_taints = ["cri-resource-consume=true:NoSchedule"]
Expand Down

0 comments on commit 821ebfc

Please sign in to comment.