update kube dependencies to v1.24.0 release
Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
This commit is contained in:
127
vendor/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto
generated
vendored
127
vendor/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto
generated
vendored
@@ -25,7 +25,7 @@ import "k8s.io/apimachinery/pkg/runtime/generated.proto";
|
||||
import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
|
||||
|
||||
// Package-wide variables from generator "generated".
|
||||
option go_package = "v1";
|
||||
option go_package = "k8s.io/apimachinery/pkg/apis/meta/v1";
|
||||
|
||||
// APIGroup contains the name, the supported versions, and the preferred version
|
||||
// of a group.
|
||||
@@ -243,16 +243,25 @@ message CreateOptions {
|
||||
// +optional
|
||||
optional string fieldManager = 3;
|
||||
|
||||
// fieldValidation determines how the server should respond to
|
||||
// unknown/duplicate fields in the object in the request.
|
||||
// Introduced as alpha in 1.23, older servers or servers with the
|
||||
// `ServerSideFieldValidation` feature disabled will discard valid values
|
||||
// specified in this param and not perform any server side field validation.
|
||||
// Valid values are:
|
||||
// - Ignore: ignores unknown/duplicate fields.
|
||||
// - Warn: responds with a warning for each
|
||||
// unknown/duplicate field, but successfully serves the request.
|
||||
// - Strict: fails the request on unknown/duplicate fields.
|
||||
// fieldValidation instructs the server on how to handle
|
||||
// objects in the request (POST/PUT/PATCH) containing unknown
|
||||
// or duplicate fields, provided that the `ServerSideFieldValidation`
|
||||
// feature gate is also enabled. Valid values are:
|
||||
// - Ignore: This will ignore any unknown fields that are silently
|
||||
// dropped from the object, and will ignore all but the last duplicate
|
||||
// field that the decoder encounters. This is the default behavior
|
||||
// prior to v1.23 and is the default behavior when the
|
||||
// `ServerSideFieldValidation` feature gate is disabled.
|
||||
// - Warn: This will send a warning via the standard warning response
|
||||
// header for each unknown field that is dropped from the object, and
|
||||
// for each duplicate field that is encountered. The request will
|
||||
// still succeed if there are no other errors, and will only persist
|
||||
// the last of any duplicate fields. This is the default when the
|
||||
// `ServerSideFieldValidation` feature gate is enabled.
|
||||
// - Strict: This will fail the request with a BadRequest error if
|
||||
// any unknown fields would be dropped from the object, or if any
|
||||
// duplicate fields are present. The error returned from the server
|
||||
// will contain all unknown and duplicate fields encountered.
|
||||
// +optional
|
||||
optional string fieldValidation = 4;
|
||||
}
|
||||
@@ -448,13 +457,7 @@ message List {
|
||||
// ListMeta describes metadata that synthetic resources must have, including lists and
|
||||
// various status objects. A resource may have only one of {ObjectMeta, ListMeta}.
|
||||
message ListMeta {
|
||||
// selfLink is a URL representing this object.
|
||||
// Populated by the system.
|
||||
// Read-only.
|
||||
//
|
||||
// DEPRECATED
|
||||
// Kubernetes will stop propagating this field in 1.20 release and the field is planned
|
||||
// to be removed in 1.21 release.
|
||||
// Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.
|
||||
// +optional
|
||||
optional string selfLink = 1;
|
||||
|
||||
@@ -589,7 +592,11 @@ message ManagedFieldsEntry {
|
||||
// set because it cannot be automatically converted.
|
||||
optional string apiVersion = 3;
|
||||
|
||||
// Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'
|
||||
// Time is the timestamp of when the ManagedFields entry was added. The
|
||||
// timestamp will also be updated if a field is added, the manager
|
||||
// changes any of the owned fields value or removes a field. The
|
||||
// timestamp does not update when a field is removed from the entry
|
||||
// because another manager took it over.
|
||||
// +optional
|
||||
optional Time time = 4;
|
||||
|
||||
@@ -649,10 +656,7 @@ message ObjectMeta {
|
||||
// and may be truncated by the length of the suffix required to make the value
|
||||
// unique on the server.
|
||||
//
|
||||
// If this field is specified and the generated name exists, the server will
|
||||
// NOT return a 409 - instead, it will either return 201 Created or 500 with Reason
|
||||
// ServerTimeout indicating a unique name could not be found in the time allotted, and the client
|
||||
// should retry (optionally after the time indicated in the Retry-After header).
|
||||
// If this field is specified and the generated name exists, the server will return a 409.
|
||||
//
|
||||
// Applied only if Name is not specified.
|
||||
// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency
|
||||
@@ -670,13 +674,7 @@ message ObjectMeta {
|
||||
// +optional
|
||||
optional string namespace = 3;
|
||||
|
||||
// SelfLink is a URL representing this object.
|
||||
// Populated by the system.
|
||||
// Read-only.
|
||||
//
|
||||
// DEPRECATED
|
||||
// Kubernetes will stop propagating this field in 1.20 release and the field is planned
|
||||
// to be removed in 1.21 release.
|
||||
// Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.
|
||||
// +optional
|
||||
optional string selfLink = 4;
|
||||
|
||||
@@ -787,9 +785,12 @@ message ObjectMeta {
|
||||
// +patchStrategy=merge
|
||||
repeated string finalizers = 14;
|
||||
|
||||
// The name of the cluster which the object belongs to.
|
||||
// This is used to distinguish resources with same name and namespace in different clusters.
|
||||
// This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.
|
||||
// Deprecated: ClusterName is a legacy field that was always cleared by
|
||||
// the system and never used; it will be removed completely in 1.25.
|
||||
//
|
||||
// The name in the go struct is changed to help clients detect
|
||||
// accidental use.
|
||||
//
|
||||
// +optional
|
||||
optional string clusterName = 15;
|
||||
|
||||
@@ -832,6 +833,8 @@ message OwnerReference {
|
||||
// If true, AND if the owner has the "foregroundDeletion" finalizer, then
|
||||
// the owner cannot be deleted from the key-value store until this
|
||||
// reference is removed.
|
||||
// See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion
|
||||
// for how the garbage collector interacts with this field and enforces the foreground deletion.
|
||||
// Defaults to false.
|
||||
// To set this field, a user needs "delete" permission of the owner,
|
||||
// otherwise 422 (Unprocessable Entity) will be returned.
|
||||
@@ -892,16 +895,25 @@ message PatchOptions {
|
||||
// +optional
|
||||
optional string fieldManager = 3;
|
||||
|
||||
// fieldValidation determines how the server should respond to
|
||||
// unknown/duplicate fields in the object in the request.
|
||||
// Introduced as alpha in 1.23, older servers or servers with the
|
||||
// `ServerSideFieldValidation` feature disabled will discard valid values
|
||||
// specified in this param and not perform any server side field validation.
|
||||
// Valid values are:
|
||||
// - Ignore: ignores unknown/duplicate fields.
|
||||
// - Warn: responds with a warning for each
|
||||
// unknown/duplicate field, but successfully serves the request.
|
||||
// - Strict: fails the request on unknown/duplicate fields.
|
||||
// fieldValidation instructs the server on how to handle
|
||||
// objects in the request (POST/PUT/PATCH) containing unknown
|
||||
// or duplicate fields, provided that the `ServerSideFieldValidation`
|
||||
// feature gate is also enabled. Valid values are:
|
||||
// - Ignore: This will ignore any unknown fields that are silently
|
||||
// dropped from the object, and will ignore all but the last duplicate
|
||||
// field that the decoder encounters. This is the default behavior
|
||||
// prior to v1.23 and is the default behavior when the
|
||||
// `ServerSideFieldValidation` feature gate is disabled.
|
||||
// - Warn: This will send a warning via the standard warning response
|
||||
// header for each unknown field that is dropped from the object, and
|
||||
// for each duplicate field that is encountered. The request will
|
||||
// still succeed if there are no other errors, and will only persist
|
||||
// the last of any duplicate fields. This is the default when the
|
||||
// `ServerSideFieldValidation` feature gate is enabled.
|
||||
// - Strict: This will fail the request with a BadRequest error if
|
||||
// any unknown fields would be dropped from the object, or if any
|
||||
// duplicate fields are present. The error returned from the server
|
||||
// will contain all unknown and duplicate fields encountered.
|
||||
// +optional
|
||||
optional string fieldValidation = 4;
|
||||
}
|
||||
@@ -1122,16 +1134,25 @@ message UpdateOptions {
|
||||
// +optional
|
||||
optional string fieldManager = 2;
|
||||
|
||||
// fieldValidation determines how the server should respond to
|
||||
// unknown/duplicate fields in the object in the request.
|
||||
// Introduced as alpha in 1.23, older servers or servers with the
|
||||
// `ServerSideFieldValidation` feature disabled will discard valid values
|
||||
// specified in this param and not perform any server side field validation.
|
||||
// Valid values are:
|
||||
// - Ignore: ignores unknown/duplicate fields.
|
||||
// - Warn: responds with a warning for each
|
||||
// unknown/duplicate field, but successfully serves the request.
|
||||
// - Strict: fails the request on unknown/duplicate fields.
|
||||
// fieldValidation instructs the server on how to handle
|
||||
// objects in the request (POST/PUT/PATCH) containing unknown
|
||||
// or duplicate fields, provided that the `ServerSideFieldValidation`
|
||||
// feature gate is also enabled. Valid values are:
|
||||
// - Ignore: This will ignore any unknown fields that are silently
|
||||
// dropped from the object, and will ignore all but the last duplicate
|
||||
// field that the decoder encounters. This is the default behavior
|
||||
// prior to v1.23 and is the default behavior when the
|
||||
// `ServerSideFieldValidation` feature gate is disabled.
|
||||
// - Warn: This will send a warning via the standard warning response
|
||||
// header for each unknown field that is dropped from the object, and
|
||||
// for each duplicate field that is encountered. The request will
|
||||
// still succeed if there are no other errors, and will only persist
|
||||
// the last of any duplicate fields. This is the default when the
|
||||
// `ServerSideFieldValidation` feature gate is enabled.
|
||||
// - Strict: This will fail the request with a BadRequest error if
|
||||
// any unknown fields would be dropped from the object, or if any
|
||||
// duplicate fields are present. The error returned from the server
|
||||
// will contain all unknown and duplicate fields encountered.
|
||||
// +optional
|
||||
optional string fieldValidation = 3;
|
||||
}
|
||||
|
Reference in New Issue
Block a user