You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Evolve AntreaProxy with framework and feature updates
This commit brings AntreaProxy:
- Add `serviceProxyHealthy` field to Service health check response in AntreaProxy.
- Add healthz server serving on port 10352 to AntreaProxy, which is a replacement
of kube-proxy health server serving on 10256.
- Add support of feature gate PreferSameTrafficDistribution in AntreaProxy. Refer
to this https://github.com/kubernetes/enhancements/tree/master/keps/sig-network/3015-prefer-same-node.
- Remove Endpoints API support in AntreaProxy.
- Align the code `third_party/proxy` with K8s 1.33.1.
Signed-off-by: Hongliang Liu <[email protected]>
Copy file name to clipboardExpand all lines: build/charts/antrea/README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,7 @@ Kubernetes: `>= 1.19.0-0`
61
61
| antreaProxy.nodePortAddresses | list |`[]`| String array of values which specifies the host IPv4/IPv6 addresses for NodePort. By default, all host addresses are used. |
62
62
| antreaProxy.proxyAll | bool |`false`| Proxy all Service traffic, for all Service types, regardless of where it comes from. |
63
63
| antreaProxy.proxyLoadBalancerIPs | bool |`true`| When set to false, AntreaProxy no longer load-balances traffic destined to the External IPs of LoadBalancer Services. |
64
+
| antreaProxy.serviceHealthCheckServerBindAddress | string |`""`| The value of the IP address and the port that the AntreaProxy health server binds to. If it is not specified, it will be automatically set to "0.0.0.0:10352" for IPv4-only clusters, or "[::]:10352" for IPv6-only and dual-stack clusters. Note that "[::]:10352" may act as either IPv6-only or dual-stack depending on the system setting of IPV6_V6ONLY (sysctl: net.ipv6.bindv6only). |
64
65
| antreaProxy.serviceProxyName | string |`""`| The value of the "service.kubernetes.io/service-proxy-name" label for AntreaProxy to match. If it is set, then AntreaProxy will only handle Services with the label that equals the provided value. If it is not set, then AntreaProxy will only handle Services without the "service.kubernetes.io/service-proxy-name" label, but ignore Services with the label no matter what is the value. |
65
66
| antreaProxy.skipServices | list |`[]`| List of Services which should be ignored by AntreaProxy. |
Copy file name to clipboardExpand all lines: build/charts/flow-aggregator/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ Kubernetes: `>= 1.19.0-0`
77
77
| s3Uploader.bucketPrefix | string |`""`| BucketPrefix is the prefix ("folder") under which flow records will be uploaded. |
78
78
| s3Uploader.compress | bool |`true`| Compress enables gzip compression when uploading files to S3. |
79
79
| s3Uploader.enable | bool |`false`| Determine whether to enable exporting flow records to AWS S3. |
80
-
| s3Uploader.maxRecordsPerFile | int |`1000000`| MaxRecordsPerFile is the maximum number of records per file uploaded. It is not recommended to change this value. |
80
+
| s3Uploader.maxRecordsPerFile | int |`12.5.0-dev0`| MaxRecordsPerFile is the maximum number of records per file uploaded. It is not recommended to change this value. |
81
81
| s3Uploader.recordFormat | string |`"CSV"`| RecordFormat defines the format of the flow records uploaded to S3. Only "CSV" is supported at the moment. |
82
82
| s3Uploader.region | string |`"us-west-2"`| Region is used as a "hint" to get the region in which the provided bucket is located. An error will occur if the bucket does not exist in the AWS partition the region hint belongs to. |
83
83
| s3Uploader.uploadInterval | string |`"60s"`| UploadInterval is the duration between each file upload to S3. |
0 commit comments