Skip to content

Commit 7abfd6f

Browse files
committed
try kms again
1 parent 8dff234 commit 7abfd6f

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.evergreen/generated_configs/variants.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ buildvariants:
358358
- name: test-azurekms-fail
359359
display_name: KMS
360360
run_on:
361-
- debian12-small
361+
- ubuntu2204-small
362362

363363
# Load balancer tests
364364
- name: load-balancer

.evergreen/scripts/generate_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ def create_kms_variants():
434434
tasks.append("test-gcpkms-fail")
435435
tasks.append(EvgTaskRef(name="test-azurekms", batchtime=BATCHTIME_WEEK))
436436
tasks.append("test-azurekms-fail")
437-
return [create_variant(tasks, "KMS", host=HOSTS["debian12"])]
437+
return [create_variant(tasks, "KMS", host=HOSTS["ubuntu22"])]
438438

439439

440440
def create_import_time_variants():

.evergreen/scripts/generate_config_utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ class Host:
6464
HOSTS["rhel7"] = Host("rhel7", "rhel79-small", "RHEL7", dict())
6565
HOSTS["perf"] = Host("perf", "rhel90-dbx-perf-large", "", dict())
6666
HOSTS["debian11"] = Host("debian11", "debian11-small", "Debian11", dict())
67-
HOSTS["debian12"] = Host("debian12", "debian12-small", "Debian12", dict())
6867
DEFAULT_HOST = HOSTS["rhel8"]
6968

7069
# Other hosts

.evergreen/scripts/kms_tester.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ def setup_kms(sub_test_name: str) -> None:
9292
if sub_test_target == "azure":
9393
os.environ["AZUREKMS_VMNAME_PREFIX"] = "PYTHON_DRIVER"
9494
# Found using "az vm image list --output table"
95-
# os.environ[
96-
# "AZUREKMS_IMAGE"
97-
# ] = "Canonical:0001-com-ubuntu-server-jammy:22_04-lts-gen2:latest"
95+
os.environ[
96+
"AZUREKMS_IMAGE"
97+
] = "Canonical:0001-com-ubuntu-server-jammy:22_04-lts-gen2:latest"
9898
else:
9999
os.environ["GCPKMS_IMAGEFAMILY"] = "debian-12"
100100
run_command("./setup.sh", cwd=kms_dir)

0 commit comments

Comments
 (0)