Skip to content

Commit

Permalink
Use AzureLinux for stress cluster nodes (#7039)
Browse files Browse the repository at this point in the history
  • Loading branch information
benbp authored Oct 3, 2023
1 parent 8e6561b commit 1ab3b89
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/stress-cluster/cluster/azure/cluster/cluster.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ var kubernetesVersion = '1.26.6'
var nodeResourceGroup = 'rg-nodes-${dnsPrefix}-${clusterName}-${groupSuffix}'

var systemAgentPool = {
name: 'system'
name: 'systemal'
count: 1
minCount: 1
maxCount: 4
mode: 'System'
vmSize: 'Standard_D4ds_v4'
type: 'VirtualMachineScaleSets'
osType: 'Linux'
osType: 'AzureLinux'
enableAutoScaling: true
enableEncryptionAtHost: true
nodeLabels: {
Expand All @@ -33,14 +33,14 @@ var systemAgentPool = {
}

var defaultAgentPool = {
name: 'default'
name: 'defaultal'
count: defaultAgentPoolMinNodes
minCount: defaultAgentPoolMinNodes
maxCount: defaultAgentPoolMaxNodes
mode: 'User'
vmSize: 'Standard_D8a_v4'
type: 'VirtualMachineScaleSets'
osType: 'Linux'
osType: 'AzureLinux'
osDiskType: 'Ephemeral'
enableAutoScaling: true
enableEncryptionAtHost: true
Expand Down

0 comments on commit 1ab3b89

Please sign in to comment.