rebase: update replaced k8s.io modules to v0.33.0

Signed-off-by: Niels de Vos <ndevos@ibm.com>
This commit is contained in:
Niels de Vos
2025-05-07 13:13:33 +02:00
committed by mergify[bot]
parent dd77e72800
commit 107407b44b
1723 changed files with 65035 additions and 175239 deletions

View File

@ -114,6 +114,13 @@ message EndpointHints {
// enable topology aware routing. May contain a maximum of 8 entries.
// +listType=atomic
repeated ForZone forZones = 1;
// forNodes indicates the node(s) this endpoint should be consumed by when
// using topology aware routing. May contain a maximum of 8 entries.
// This is an Alpha feature and is only used when the PreferSameTrafficDistribution
// feature gate is enabled.
// +listType=atomic
repeated ForNode forNodes = 2;
}
// EndpointPort represents a Port used by an EndpointSlice
@ -189,6 +196,12 @@ message EndpointSliceList {
repeated EndpointSlice items = 2;
}
// ForNode provides information about which nodes should consume this endpoint.
message ForNode {
// name represents the name of the node.
optional string name = 1;
}
// ForZone provides information about which zones should consume this endpoint.
message ForZone {
// name represents the name of the zone.