Skip to content

Commit

Permalink
[Windows] Resolve OVS dependency for VC 2010 runtime (#1099) (#1099)
Browse files Browse the repository at this point in the history
The latest OVS pacakge provided by Antrea depends on VC 2010 and
VC 2013 runtime. However the OVS package only contains VC 2013.
Which will cause customer need to install VC 2010 before install
or run OVS.

So we update the OVS package to:
- Remove dependency for VC 2013.
- Add VC 2010 redistribution which will be installed during the OVS
  installation progress.

This patch updates the OVS package information.

Signed-off-by: Rui Cao <rcao@vmware.com>
  • Loading branch information
ruicao93 authored and antoninbas committed Aug 21, 2020
1 parent eb4bbc3 commit 0e2f32a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/windows/Install-OVS.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ $ErrorActionPreference = "Stop"
# TODO: set up HTTPS so that the archive can be downloaded securely. In the
# meantime, we use a SHA256 hash to ensure that the downloaded archive is
# correct.
$OVSDownloadURL = "http://downloads.antrea.io/ovs/ovs-2.13.1-win64.zip"
$OVSPublishedHash = '7E8364D684CC37417D70281354AA55987F52F143BF2DA162B6728A24E6B67546'
$OVSDownloadURL = "http://downloads.antrea.io/ovs/ovs-2.13.1-antrea.1-win64.zip"
$OVSPublishedHash = '83AA08526D947B08A952339B849441D4896AAB7437B4101CFBCE1130888FF459'
$OVSDownloadDir = [System.IO.Path]::GetDirectoryName($myInvocation.MyCommand.Definition)
$InstallLog = "$OVSDownloadDir\install.log"
$OVSZip = "$OVSDownloadDir\ovs-win64.zip"
Expand Down

0 comments on commit 0e2f32a

Please sign in to comment.