mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-13 10:33:35 +00:00
rebase: update kubernetes to v1.21.2
Updated kubernetes packages to latest release. resizefs package has been included into k8s.io/mount-utils package. updated code to use the same. Updates: #1968 Signed-off-by: Rakshith R <rar@redhat.com>
This commit is contained in:
20
vendor/k8s.io/api/discovery/v1beta1/generated.proto
generated
vendored
20
vendor/k8s.io/api/discovery/v1beta1/generated.proto
generated
vendored
@ -76,6 +76,12 @@ message Endpoint {
|
||||
// with the EndpointSliceNodeName feature gate.
|
||||
// +optional
|
||||
optional string nodeName = 6;
|
||||
|
||||
// hints contains information associated with how an endpoint should be
|
||||
// consumed.
|
||||
// +featureGate=TopologyAwareHints
|
||||
// +optional
|
||||
optional EndpointHints hints = 7;
|
||||
}
|
||||
|
||||
// EndpointConditions represents the current condition of an endpoint.
|
||||
@ -104,6 +110,14 @@ message EndpointConditions {
|
||||
optional bool terminating = 3;
|
||||
}
|
||||
|
||||
// EndpointHints provides hints describing how an endpoint should be consumed.
|
||||
message EndpointHints {
|
||||
// forZones indicates the zone(s) this endpoint should be consumed by to
|
||||
// enable topology aware routing. May contain a maximum of 8 entries.
|
||||
// +listType=atomic
|
||||
repeated ForZone forZones = 1;
|
||||
}
|
||||
|
||||
// EndpointPort represents a Port used by an EndpointSlice
|
||||
message EndpointPort {
|
||||
// The name of this port. All ports in an EndpointSlice must have a unique
|
||||
@ -178,3 +192,9 @@ message EndpointSliceList {
|
||||
repeated EndpointSlice items = 2;
|
||||
}
|
||||
|
||||
// ForZone provides information about which zones should consume this endpoint.
|
||||
message ForZone {
|
||||
// name represents the name of the zone.
|
||||
optional string name = 1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user