We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5313eeb commit e540383Copy full SHA for e540383
.evergreen/scripts/oidc_tester.py
@@ -35,6 +35,14 @@ def setup_oidc(sub_test_name: str) -> dict[str, str] | None:
35
if sub_test_name == "azure":
36
env["AZUREOIDC_VMNAME_PREFIX"] = "PYTHON_DRIVER"
37
if "-remote" not in sub_test_name:
38
+ if sub_test_name == "azure":
39
+ os.environ["AZUREKMS_VMNAME_PREFIX"] = "PYTHON_DRIVER"
40
+ # Found using "az vm image list --output table"
41
+ os.environ[
42
+ "AZUREKMS_IMAGE"
43
+ ] = "Canonical:0001-com-ubuntu-server-jammy:22_04-lts-gen2:latest"
44
+ else:
45
+ os.environ["GCPKMS_IMAGEFAMILY"] = "debian-12"
46
run_command(f"bash {target_dir}/setup.sh", env=env)
47
if sub_test_name in K8S_NAMES:
48
run_command(f"bash {target_dir}/setup-pod.sh {sub_test_name}")
0 commit comments