From 90920143c5570e7b0cb3a6bb453de742cfc1076f Mon Sep 17 00:00:00 2001 From: Zhecheng Li Date: Mon, 8 Nov 2021 09:36:35 +0800 Subject: [PATCH] [Windows] Upgrade OVS version to 2.15.2 It includes AntreaProxy related fixes. https://github.com/openvswitch/ovs-issues/issues/229 https://github.com/openvswitch/ovs-issues/issues/231 Signed-off-by: Zhecheng Li --- 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 d6853387cf0..9241e8f465d 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.14.2-antrea.1-win64.zip" +$OVSDownloadURL = "https://downloads.antrea.io/ovs/ovs-2.15.2-antrea.0-win64.zip" # Use a SHA256 hash to ensure that the downloaded archive is correct. -$OVSPublishedHash = '98f0b1cf051b8ad46d736b5b493a750c14db97ec031bde8f5193ad114b765b39' +$OVSPublishedHash = '969703a11c980bc2752948d5707074c83bc2778351b81554edcef9e6d220bb7f' $WorkDir = [System.IO.Path]::GetDirectoryName($myInvocation.MyCommand.Definition) $OVSDownloadDir = $WorkDir $PowerShellModuleBase = "C:\Windows\System32\WindowsPowerShell\v1.0\Modules"