Skip to content

Commit 2c7da61

Browse files
Merge pull request #7938 from GeorgianaElena/fix-spot-instances
[smdc] Fix the dask nodepools
2 parents 4df47ab + fae73a4 commit 2c7da61

File tree

4 files changed

+23
-15
lines changed

4 files changed

+23
-15
lines changed

eksctl/disasters.jsonnet

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

eksctl/maap.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/nasa-ghg.jsonnet

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,12 @@ local c = cluster.makeCluster(
1212
'r5.16xlarge',
1313
],
1414
daskInstanceTypes=[
15-
// Allow for a range of spot instance types
16-
'r5.4xlarge',
17-
'r7i.4xlarge',
18-
'r6i.4xlarge',
15+
[
16+
// Allow for a range of spot instance types
17+
'r5.4xlarge',
18+
'r7i.4xlarge',
19+
'r6i.4xlarge',
20+
],
1921
],
2022
hubs=['staging', 'prod', 'binder'],
2123
nodeGroupGenerations=['b']

eksctl/nasa-veda.jsonnet

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

0 commit comments

Comments
 (0)