Documentation
Introduction
- Overview
- Getting Started
- Support for K8s Installers
- Deploying on Kind
- Deploying on Minikube
- Configuration
Cloud Deployment
Reference
- Antrea Network Policy
- Antctl
- Architecture
- Traffic Encryption (Ipsec / WireGuard)
- Securing Control Plane
- Security considerations
- Troubleshooting
- OS-specific Known Issues
- OVS Pipeline
- Feature Gates
- Antrea Proxy
- Network Flow Visibility
- Traceflow Guide
- NoEncap and Hybrid Traffic Modes
- Egress Guide
- NodePortLocal Guide
- Antrea IPAM Guide
- Exposing Services of type LoadBalancer
- Versioning
- Antrea API Groups
- Antrea API Reference
Windows
Integrations
Cookbooks
Multicluster
Developer Guide
Project Information
Updating the OVS Windows Binaries
Antrea ships a zip archive with OVS binaries for Windows. The binaries are hosted on the antrea.io website and updated as needed. This file documents the procedure to upload a new version of the OVS binaries. The archive is served from AWS S3, and therefore access to the Antrea S3 account is required for this procedure.
-
We assume that you have already built the OVS binaries (if a custom built is required), or retrieved them from the official OVS build pipelines. The binaries must be built in Release mode for acceptable performance.
-
Name the zip archive appropriately:
ovs-<OVS VERSION>[-antrea.<BUILD NUM>]-win64.zip- the format for
<OVS VERSION>is<MAJOR>.<MINOR>.<PATCH>, with novprefix. - the
-antrea.<BUILD NUM>component is optional but must be provided if this is not the official build for the referenced OVS version.<BUILD NUM>starts at 1 and is incremented for every new upload corresponding to that OVS version.
- the format for
-
Generate the SHA256 checksum for the archive.
- place yourself in the directory containing the archive.
- run
sha256sum -b <NAME>.zip > <NAME>.zip.sha256, where<NAME>is determined by the previous step.
-
Upload the archive and SHA256 checksum file to the
ovs/folder in thedownloads.antrea.ioS3 bucket. As you upload the files, grant public read access to them (you can also do it after the upload with theMake publicaction). -
Validate both public links:
https://downloads.antrea.io/ovs/<NAME>.ziphttps://downloads.antrea.io/ovs/<NAME>.zip.sha256
-
Update the Antrea Windows documentation and helper scripts as needed, e.g.
hack/windows/Install-OVS.ps1.