Skip to content

Commit

Permalink
Merge pull request #4159 from lzhecheng/limit-max-node-count-aks-pipe…
Browse files Browse the repository at this point in the history
…line

[Pipeline] Limit max node count to 100
  • Loading branch information
k8s-ci-robot authored Jun 25, 2023
2 parents c1f5de4 + ae277d4 commit 89d7bc2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .pipelines/templates/autoscaling-multipool.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"osType": "Linux",
"availabilityProfile": "VirtualMachineScaleSets",
"enableAutoScaling": true,
"maxCount": 1000,
"maxCount": 100,
"minCount": 3
},
{
Expand All @@ -26,7 +26,7 @@
"osType": "Linux",
"availabilityProfile": "VirtualMachineScaleSets",
"enableAutoScaling": true,
"maxCount": 1000,
"maxCount": 100,
"minCount": 3
},
{
Expand All @@ -37,7 +37,7 @@
"osType": "Linux",
"availabilityProfile": "VirtualMachineScaleSets",
"enableAutoScaling": true,
"maxCount": 1000,
"maxCount": 100,
"minCount": 3
}
],
Expand Down
4 changes: 2 additions & 2 deletions .pipelines/templates/autoscaling.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"osType": "Linux",
"availabilityProfile": "VirtualMachineScaleSets",
"enableAutoScaling": true,
"maxCount": 1000,
"maxCount": 100,
"minCount": 3
},
{
Expand All @@ -26,7 +26,7 @@
"osType": "Linux",
"availabilityProfile": "VirtualMachineScaleSets",
"enableAutoScaling": true,
"maxCount": 1000,
"maxCount": 100,
"minCount": 3
}
],
Expand Down

0 comments on commit 89d7bc2

Please sign in to comment.