Bump dependencies to Kubernetes 1.20

This commit is contained in:
xing-yang
2020-12-14 18:01:04 +00:00
parent a9a28d8fc7
commit e22364e1cf
799 changed files with 85231 additions and 28917 deletions

View File

@@ -17,7 +17,7 @@ limitations under the License.
// This file was autogenerated by go-to-protobuf. Do not edit it manually!
syntax = 'proto2';
syntax = "proto2";
package k8s.io.api.events.v1;
@@ -30,8 +30,12 @@ import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
option go_package = "v1";
// Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system.
// Events have a limited retention time and triggers and messages may evolve
// with time. Event consumers should not rely on the timing of an event
// with a given Reason reflecting a consistent underlying trigger, or the
// continued existence of events with that Reason. Events should be
// treated as informative, best-effort, supplemental data.
message Event {
// +optional
optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
// eventTime is the time when this Event was first observed. It is required.
@@ -43,22 +47,18 @@ message Event {
// reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.
// This field cannot be empty for new Events.
// +optional
optional string reportingController = 4;
// reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`.
// This field cannot be empty for new Events and it can have at most 128 characters.
// +optional
optional string reportingInstance = 5;
// action is what action was taken/failed regarding to the regarding object. It is machine-readable.
// This field can have at most 128 characters.
// +optional
// This field cannot be empty for new Events and it can have at most 128 characters.
optional string action = 6;
// reason is why the action was taken. It is human-readable.
// This field can have at most 128 characters.
// +optional
// This field cannot be empty for new Events and it can have at most 128 characters.
optional string reason = 7;
// regarding contains the object this Event is about. In most cases it's an Object reporting controller
@@ -80,7 +80,7 @@ message Event {
// type is the type of this event (Normal, Warning), new types could be added in the future.
// It is machine-readable.
// +optional
// This field cannot be empty for new Events.
optional string type = 11;
// deprecatedSource is the deprecated field assuring backward compatibility with core.v1 Event type.