@@ -77,7 +77,7 @@ func BuildPerArchMachineSetParamsList(ctx context.Context, client runtimeclient.
77
77
var params MachineSetParams
78
78
79
79
for _ , worker := range workers {
80
- if arch , err = getArchitectureFromMachineSetNodes (ctx , client , worker ); err != nil {
80
+ if arch , err = GetArchitectureFromMachineSetNodes (ctx , client , worker ); err != nil {
81
81
klog .Warningf ("unable to get the architecture for the machine set %s: %v" , worker .Name , err )
82
82
continue
83
83
}
@@ -180,7 +180,7 @@ func CreateMachineSet(c runtimeclient.Client, params MachineSetParams) (*machine
180
180
}
181
181
182
182
// BuildMachineSetParamsList creates a list of MachineSetParams based on the given machineSetParams with modified instance type.
183
- func BuildAlternativeMachineSetParams (machineSetParams MachineSetParams , platform configv1.PlatformType ) ([]MachineSetParams , error ) {
183
+ func BuildAlternativeMachineSetParams (machineSetParams MachineSetParams , platform configv1.PlatformType , arch string ) ([]MachineSetParams , error ) {
184
184
baseMachineSetParams := machineSetParams
185
185
baseProviderSpec := baseMachineSetParams .ProviderSpec .DeepCopy ()
186
186
@@ -189,7 +189,15 @@ func BuildAlternativeMachineSetParams(machineSetParams MachineSetParams, platfor
189
189
switch platform {
190
190
case configv1 .AWSPlatformType :
191
191
// Using cheapest compute optimized instances that meet openshift minimum requirements (4 vCPU, 8GiB RAM)
192
- alternativeInstanceTypes := []string {"c5.xlarge" , "c5a.xlarge" , "m5.xlarge" }
192
+ var alternativeInstanceTypes []string
193
+
194
+ switch arch {
195
+ case "arm64" :
196
+ alternativeInstanceTypes = []string {"m6g.large" , "t4g.nano" , "t4g.micro" , "m6gd.xlarge" }
197
+ default :
198
+ alternativeInstanceTypes = []string {"c5.xlarge" , "c5a.xlarge" , "m5.xlarge" }
199
+ }
200
+
193
201
for _ , instanceType := range alternativeInstanceTypes {
194
202
updatedProviderSpec , err := updateProviderSpecAWSInstanceType (baseProviderSpec , instanceType )
195
203
if err != nil {
@@ -200,7 +208,15 @@ func BuildAlternativeMachineSetParams(machineSetParams MachineSetParams, platfor
200
208
output = append (output , baseMachineSetParams )
201
209
}
202
210
case configv1 .AzurePlatformType :
203
- alternativeVMSizes := []string {"Standard_F4s_v2" , "Standard_D4as_v5" , "Standard_D4as_v4" }
211
+ var alternativeVMSizes []string
212
+
213
+ switch arch {
214
+ case "arm64" :
215
+ alternativeVMSizes = []string {"Standard_D2ps_v5" , "Standard_D3ps_v5" , "Standard_D4ps_v5" }
216
+ default :
217
+ alternativeVMSizes = []string {"Standard_F4s_v2" , "Standard_D4as_v5" , "Standard_D4as_v4" }
218
+ }
219
+
204
220
for _ , VMSize := range alternativeVMSizes {
205
221
updatedProviderSpec , err := updateProviderSpecAzureVMSize (baseProviderSpec , VMSize )
206
222
if err != nil {
@@ -338,13 +354,13 @@ func GetWorkerMachineSets(ctx context.Context, client runtimeclient.Client) ([]*
338
354
return result , nil
339
355
}
340
356
341
- // getArchitectureFromMachineSetNodes returns the architecture of the nodes controlled by the given machineSet's machines.
342
- func getArchitectureFromMachineSetNodes (ctx context.Context , client runtimeclient.Client , machineSet * machinev1.MachineSet ) (string , error ) {
357
+ // GetArchitectureFromMachineSetNodes returns the architecture of the nodes controlled by the given machineSet's machines.
358
+ func GetArchitectureFromMachineSetNodes (ctx context.Context , client runtimeclient.Client , machineSet * machinev1.MachineSet ) (string , error ) {
343
359
nodes , err := GetNodesFromMachineSet (ctx , client , machineSet )
344
360
if err != nil || len (nodes ) == 0 {
345
361
klog .Warningf ("error getting the machineSet's nodes or no nodes associated with %s. Using the capacity annotation" , machineSet .Name )
346
362
347
- for _ , kv := range strings .Split (machineSet .Labels [labelsKey ], "," ) {
363
+ for _ , kv := range strings .Split (machineSet .Annotations [labelsKey ], "," ) {
348
364
if strings .Contains (kv , "kubernetes.io/arch" ) {
349
365
return strings .Split (kv , "=" )[1 ], nil
350
366
}
0 commit comments