Skip to content

Commit

Permalink
nasa-cryo: update k8s versions and ensure 2i2c.org/cluster-name tags …
Browse files Browse the repository at this point in the history
…in eksctl config
  • Loading branch information
sgibson91 committed Oct 3, 2024
1 parent 80d1db2 commit 42787ca
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions eksctl/nasa-cryo.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ local nodeAz = "us-west-2a";
// A `node.kubernetes.io/instance-type label is added, so pods
// can request a particular kind of node with a nodeSelector
local notebookNodes = [
{ instanceType: "r5.xlarge" },
{ instanceType: "r5.4xlarge" },
{ instanceType: "r5.xlarge" }, // FIXME: tainted, to be deleted when empty, replaced by equivalent during k8s upgrade
{ instanceType: "r5.xlarge", nameSuffix: "b" },
{ instanceType: "r5.4xlarge" }, // FIXME: tainted, to be deleted when empty, replaced by equivalent during k8s upgrade
{ instanceType: "r5.4xlarge", nameSuffix: "b" },
{ instanceType: "r5.16xlarge" },
{
instanceType: "g4dn.xlarge",
Expand Down Expand Up @@ -63,7 +65,7 @@ local daskNodes = [
metadata+: {
name: "nasa-cryo",
region: clusterRegion,
version: "1.29",
version: "1.30",
},
availabilityZones: masterAzs,
iam: {
Expand Down Expand Up @@ -94,7 +96,7 @@ local daskNodes = [
[
ng + {
namePrefix: 'core',
nameSuffix: 'a',
nameSuffix: 'b',
nameIncludeInstanceType: false,
availabilityZones: [nodeAz],
ssh: {
Expand Down

0 comments on commit 42787ca

Please sign in to comment.