Skip to content

Commit 12b93c1

Browse files
authored
Merge pull request #34527 from def-/pr-scratch
bin/scratch: Update to Ubuntu 24.04 LTS
2 parents 1defc78 + 1f05612 commit 12b93c1

File tree

11 files changed

+22
-19
lines changed

11 files changed

+22
-19
lines changed

misc/python/materialize/cli/scratch/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,6 @@ def check_required_vars() -> None:
1717
os.environ["AWS_PROFILE"] = "mz-scratch-admin"
1818
if not os.environ.get("AWS_DEFAULT_REGION"):
1919
os.environ["AWS_DEFAULT_REGION"] = "us-east-1"
20+
# Can't run with those set, use SSO instead
21+
os.environ.pop("AWS_ACCESS_KEY_ID", None)
22+
os.environ.pop("AWS_SECRET_ACCESS_KEY", None)

misc/scratch/big-dev-box.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "one-off load testing",
33
"launch_script": "true",
44
"instance_type": "r5a.4xlarge",
5-
"ami": "ami-09d56f8956ab235b3",
5+
"ami": "ami-0ecb62995f68bb549",
66
"size_gb": 200,
77
"tags": {}
88
}

misc/scratch/ci-aarch64-large.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "c7g.12xlarge as used by CI, when a large box is needed (aarch64-large)",
2+
"name": "c8g.12xlarge as used by CI, when a large box is needed (aarch64-large)",
33
"launch_script": "true",
4-
"instance_type": "c7g.12xlarge",
5-
"ami": "ami-0568072f574d822a4",
4+
"instance_type": "c8g.12xlarge",
5+
"ami": "ami-01b9f1e7dc427266e",
66
"size_gb": 128,
77
"tags": {}
88
}
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "c7g.4xlarge as used by CI, when a medium box is needed (aarch64-medium)",
2+
"name": "c8g.4xlarge as used by CI, when a medium box is needed (aarch64-medium)",
33
"launch_script": "true",
4-
"instance_type": "c7g.4xlarge",
5-
"ami": "ami-0568072f574d822a4",
4+
"instance_type": "c8g.4xlarge",
5+
"ami": "ami-01b9f1e7dc427266e",
66
"size_gb": 128,
77
"tags": {}
88
}

misc/scratch/ci-aarch64.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "c7g.2xlarge as used by the CI (aarch64)",
2+
"name": "c8g.2xlarge as used by the CI (aarch64)",
33
"launch_script": "true",
4-
"instance_type": "c7g.2xlarge",
5-
"ami": "ami-0568072f574d822a4",
4+
"instance_type": "c8g.2xlarge",
5+
"ami": "ami-01b9f1e7dc427266e",
66
"size_gb": 128,
77
"tags": {}
88
}

misc/scratch/ci-x86_64-large.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "m7a.8xlarge as used by CI",
33
"launch_script": "true",
44
"instance_type": "m7a.8xlarge",
5-
"ami": "ami-09d56f8956ab235b3",
5+
"ami": "ami-0ecb62995f68bb549",
66
"size_gb": 250,
77
"tags": {}
88
}

misc/scratch/ci.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "c6a.2xlarge as used by the CI",
2+
"name": "c7a.2xlarge as used by the CI",
33
"launch_script": "true",
4-
"instance_type": "c6a.2xlarge",
5-
"ami": "ami-09d56f8956ab235b3",
4+
"instance_type": "c7a.2xlarge",
5+
"ami": "ami-0ecb62995f68bb549",
66
"size_gb": 128,
77
"tags": {}
88
}

misc/scratch/dev-box.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "one-off testing",
33
"launch_script": "true",
44
"instance_type": "t3.2xlarge",
5-
"ami": "ami-09d56f8956ab235b3",
5+
"ami": "ami-0ecb62995f68bb549",
66
"size_gb": 50,
77
"tags": {}
88
}

misc/scratch/persist-benchmarking.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "persist benchmarking",
33
"launch_script": "true",
44
"instance_type": "m6i.8xlarge",
5-
"ami": "ami-09d56f8956ab235b3",
5+
"ami": "ami-0ecb62995f68bb549",
66
"size_gb": 200,
77
"tags": {}
88
}

misc/scratch/remote-dev.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "vs code remote dev",
33
"launch_script": "true",
4-
"instance_type": "c6a.4xlarge",
5-
"ami": "ami-09d56f8956ab235b3",
4+
"instance_type": "c7a.4xlarge",
5+
"ami": "ami-0ecb62995f68bb549",
66
"size_gb": 100,
77
"tags": {}
88
}

0 commit comments

Comments
 (0)