This repository has been archived by the owner on Oct 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 522
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Updating Windows VHD build files to support building for multip…
…le OS versions (#3847) * Updating configure-windows-vhd.ps1 to support multiple Windows OS versions * Updating configured-windows-vhd.ps1 to not use containerd from a personal storage account * Updating windows packer file to take in windows os version specific vars from a file * updating windows build pipeline/packer.mk to pass new vars file to packer * formatting configure-windows-vhd-ps1 * vhd-builder-windows.yaml adding missing WINDOWS_SERVER_VERSION to make run-packer-windows-call and added succeeded condition checks everywher * fixup! updating windows build pipeline/packer.mk to pass new vars file to packer * fixup! Updating windows packer file to take in windows os version specific vars from a file * fixup! Updating windows packer file to take in windows os version specific vars from a file
- Loading branch information
Showing
6 changed files
with
98 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"image_publisher": "MicrosoftWindowsServer", | ||
"image_offer": "WindowsServer", | ||
"image_sku": "datacenter-core-2004-with-containers-smalldisk", | ||
"image_version": "19041.508.2009070256", | ||
"windows_server_version": "2004" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"image_publisher": "MicrosoftWindowsServer", | ||
"image_offer": "WindowsServer", | ||
"image_sku": "2019-Datacenter-Core-smalldisk", | ||
"image_version": "17763.1339.2007101755", | ||
"windows_server_version": "2019" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters