Skip to content

Commit b073c80

Browse files
tksh164kpoineal
andauthored
fix: Fix recommended minimum node count for system node pools of AKS (#747)
Co-authored-by: Kyle Poineal <38540295+kpoineal@users.noreply.github.com>
1 parent 7cdcbdb commit b073c80

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

azure-resources/ContainerService/managedClusters/kql/7f7ae535-a5ba-4665-b7e0-c451dbdda01f.kql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ resources
55
| mv-expand agentPoolProfile = properties.agentPoolProfiles
66
| extend taints = tostring(parse_json(agentPoolProfile.nodeTaints))
77
| extend nodePool = tostring(parse_json(agentPoolProfile.name))
8-
| where taints has "CriticalAddonsOnly=true:NoSchedule" and agentPoolProfile.minCount < 2
8+
| where taints has "CriticalAddonsOnly=true:NoSchedule" and agentPoolProfile.minCount < 3
99
| project recommendationId="7f7ae535-a5ba-4665-b7e0-c451dbdda01f", name, id, tags, param1=strcat("nodePoolName: ", nodePool), param2=strcat("nodePoolMinNodeCount: ", agentPoolProfile.minCount)
1010

azure-resources/ContainerService/managedClusters/recommendations.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@
295295
recommendationResourceType: Microsoft.ContainerService/managedClusters
296296
recommendationMetadataState: Active
297297
longDescription: |
298-
The system node pool should be configured with a minimum node count of two to ensure critical system pods are resilient to node outages.
298+
The system node pool should be configured with a minimum node count of three to ensure critical system pods are resilient to node outages.
299299
potentialBenefits: Ensures pod resilience
300300
pgVerified: true
301301
automationAvailable: true

0 commit comments

Comments
 (0)