From 76da574eea9f19d849dd1845f13b741e988918cf Mon Sep 17 00:00:00 2001 From: Shuyang Xin Date: Thu, 4 Jan 2024 11:16:02 +0800 Subject: [PATCH] Update windows ovs download link to remove the redundant certificate Fixes #5805 Signed-off-by: Shuyang Xin --- 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 0f64d6051c5..bc62f2e32a5 100644 --- a/hack/windows/Install-OVS.ps1 +++ b/hack/windows/Install-OVS.ps1 @@ -41,9 +41,9 @@ Param( ) $ErrorActionPreference = "Stop" -$OVSDownloadURL = "https://downloads.antrea.io/ovs/ovs-3.0.5-antrea.0-win64.zip" +$OVSDownloadURL = "https://downloads.antrea.io/ovs/ovs-3.0.5-antrea.1-win64.zip" # Use a SHA256 hash to ensure that the downloaded archive is correct. -$OVSPublishedHash = 'fd27703ef7314b26b98cffb7aea27d569530ebd3ac3c98daa981ca2654373032' +$OVSPublishedHash = '813a0c32067f40ce4aca9ceb7cd745a120e26906e9266d13cc8bf75b147bb6a5' $WorkDir = [System.IO.Path]::GetDirectoryName($myInvocation.MyCommand.Definition) $OVSDownloadDir = $WorkDir $PowerShellModuleBase = "C:\Windows\System32\WindowsPowerShell\v1.0\Modules"