Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: address AKS ci flakiness #1238

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
1 change: 1 addition & 0 deletions .github/test-infra/azure/aks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,5 @@ resource "azurerm_kubernetes_cluster_node_pool" "worker" {
auto_scaling_enabled = var.enable_autoscaling
min_count = var.enable_autoscaling ? var.autoscaling_min_node_count_worker : null
max_count = var.enable_autoscaling ? var.autoscaling_max_node_count_worker : null
node_count = var.worker_node_pool_count
}
6 changes: 6 additions & 0 deletions .github/test-infra/azure/aks/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ variable "default_node_pool_vm_size" {
type = string
}

variable "worker_node_pool_count" {
description = "Number of nodes to add to the worker nodepool"
default = 3
type = number
}

variable "worker_pool_vm_size" {
description = "Specifies the vm size of the worker node pool"
default = "Standard_F8s_v2"
Expand Down
Loading