From 65020aa233fa87528961c1755d7c80c92ad06d5a Mon Sep 17 00:00:00 2001 From: Wenying Dong Date: Wed, 21 Jun 2023 10:41:15 -0700 Subject: [PATCH] Update Windows OVS version to 3.0.5 (#5120) Signed-off-by: wenyingd --- hack/windows/Install-OVS.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/windows/Install-OVS.ps1 b/hack/windows/Install-OVS.ps1 index 1f4959b00e8..32d6349dbb0 100644 --- a/hack/windows/Install-OVS.ps1 +++ b/hack/windows/Install-OVS.ps1 @@ -32,9 +32,9 @@ Param( ) $ErrorActionPreference = "Stop" -$OVSDownloadURL = "https://downloads.antrea.io/ovs/ovs-2.16.7-antrea.0-win64.zip" +$OVSDownloadURL = "https://downloads.antrea.io/ovs/ovs-3.0.5-antrea.0-win64.zip" # Use a SHA256 hash to ensure that the downloaded archive is correct. -$OVSPublishedHash = '17d23ca0fbf84e1eac9a392f67ee4315edffd1d5233a729655e04e1332a9f565' +$OVSPublishedHash = 'fd27703ef7314b26b98cffb7aea27d569530ebd3ac3c98daa981ca2654373032' $WorkDir = [System.IO.Path]::GetDirectoryName($myInvocation.MyCommand.Definition) $OVSDownloadDir = $WorkDir $PowerShellModuleBase = "C:\Windows\System32\WindowsPowerShell\v1.0\Modules"