Updating Windows Default Image from RS5-Pro to 20H2-Pro (#469)

RS5-Pro is no longer updated in the Azure Marketplace. In order to ensure the Windows 10 VMs are regularly updated, we need to switch the default image to 20H2-Pro, which is regularly maintained.
This commit is contained in:
nharper285
2021-01-27 05:46:46 -08:00
committed by GitHub
parent cfcf493a23
commit 24685ca8df
4 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@ bundles a Python interpreter.
OneFuzz deploys targets into Azure Virtual Machine Scale Sets for fuzzing (and
supporting tasks). OneFuzz permits arbitrary choice of VM SKU and OS Image,
including custom images. We continuously test on Window 10 Pro x64 (using the
Azure OS image URN `MicrosoftWindowsDesktop:Windows-10:rs5-pro:latest`)
Azure OS image URN `MicrosoftWindowsDesktop:Windows-10:20h2-pro:latest`)
and Ubuntu 18.04 LTS x64 (using the Azure OS image URN
`Canonical:UbuntuServer:18.04-LTS:latest`).

View File

@ -27,7 +27,7 @@ from .tasks.main import Task
DEFAULT_OS = {
OS.linux: "Canonical:UbuntuServer:18.04-LTS:latest",
OS.windows: "MicrosoftWindowsDesktop:Windows-10:rs5-pro:latest",
OS.windows: "MicrosoftWindowsDesktop:Windows-10:20h2-pro:latest",
}
DEFAULT_SKU = "Standard_DS1_v2"

View File

@ -46,7 +46,7 @@ ONEFUZZ_GUID_NAMESPACE = uuid.UUID("27f25e3f-6544-4b69-b309-9b096c5a9cbc")
ONE_HOUR_IN_SECONDS = 3600
DEFAULT_LINUX_IMAGE = "Canonical:UbuntuServer:18.04-LTS:latest"
DEFAULT_WINDOWS_IMAGE = "MicrosoftWindowsDesktop:Windows-10:rs5-pro:latest"
DEFAULT_WINDOWS_IMAGE = "MicrosoftWindowsDesktop:Windows-10:20h2-pro:latest"
REPRO_SSH_FORWARD = "1337:127.0.0.1:1337"

View File

@ -17,7 +17,7 @@ from onefuzz.backend import wait
ELF_MAGIC = b"\x7fELF"
DEFAULT_LINUX_IMAGE = "Canonical:UbuntuServer:18.04-LTS:latest"
DEFAULT_WINDOWS_IMAGE = "MicrosoftWindowsDesktop:Windows-10:rs5-pro:latest"
DEFAULT_WINDOWS_IMAGE = "MicrosoftWindowsDesktop:Windows-10:20h2-pro:latest"
class StoppedEarly(Exception):