Skip to content

Commit 4df47ab

Browse files
Merge pull request #7937 from GeorgianaElena/fix-spot-instances
Fix dask nodepools for a few more clusters
2 parents c18d477 + cb963b6 commit 4df47ab

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

eksctl/nasa-cryo.jsonnet

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@ local c = cluster.makeCluster(
1313
],
1414
daskInstanceTypes=[
1515
// Allow for a range of spot instance types
16-
'r5.4xlarge',
17-
'r7i.4xlarge',
18-
'r6i.4xlarge',
16+
[
17+
'r5.4xlarge',
18+
'r7i.4xlarge',
19+
'r6i.4xlarge',
20+
],
1921
],
2022
hubs=['staging', 'prod'],
2123
notebookGPUNodeGroups=[

eksctl/reflective.jsonnet

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@ local c = cluster.makeCluster(
1313
],
1414
daskInstanceTypes=[
1515
// Allow for a range of spot instance types
16-
'r5.4xlarge',
17-
'r7i.4xlarge',
18-
'r6i.4xlarge',
16+
[
17+
'r5.4xlarge',
18+
'r7i.4xlarge',
19+
'r6i.4xlarge',
20+
],
1921
],
2022
hubs=['staging', 'prod', 'workshop'],
2123
nodeGroupGenerations=['a']

eksctl/temple.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ local c = cluster.withNodeGroupConfigOverride(
1818
instanceType: 'g4dn.xlarge',
1919
},
2020
],
21-
nodeGroupGenerations=['a', 'b']
21+
nodeGroupGenerations=['b']
2222
),
2323
kind='core',
2424
overrides={ maxSize: 2 }

0 commit comments

Comments
 (0)