From 2dbd7ced35996174f874facd1d7599b14c7abfa9 Mon Sep 17 00:00:00 2001 From: Taahir Ahmed Date: Fri, 30 Aug 2024 07:47:15 +0000 Subject: [PATCH 001/100] Pod Certificates: Basic implementation * Define feature gate * Define and serve PodCertificateRequest * Implement Kubelet projected volume source * kube-controller-manager GCs PodCertificateRequests * Add agnhost subcommand that implements a toy signer for testing Change-Id: Id7ed030d449806410a4fa28aab0f2ce4e01d3b10 Kubernetes-commit: 4624cb9bb92186358e001be392e50e5d23b5cdd9 --- certificates/v1alpha1/register.go | 2 + certificates/v1alpha1/types.go | 231 ++++++++++++++++++++++++++++++ core/v1/types.go | 111 ++++++++++++++ 3 files changed, 344 insertions(+) diff --git a/certificates/v1alpha1/register.go b/certificates/v1alpha1/register.go index 7288ed9a3e..ae541e15c1 100644 --- a/certificates/v1alpha1/register.go +++ b/certificates/v1alpha1/register.go @@ -53,6 +53,8 @@ func addKnownTypes(scheme *runtime.Scheme) error { scheme.AddKnownTypes(SchemeGroupVersion, &ClusterTrustBundle{}, &ClusterTrustBundleList{}, + &PodCertificateRequest{}, + &PodCertificateRequestList{}, ) // Add the watch version that applies diff --git a/certificates/v1alpha1/types.go b/certificates/v1alpha1/types.go index beef02599d..98e4c68d43 100644 --- a/certificates/v1alpha1/types.go +++ b/certificates/v1alpha1/types.go @@ -18,6 +18,7 @@ package v1alpha1 import ( metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + "k8s.io/apimachinery/pkg/types" ) // +genclient @@ -106,3 +107,233 @@ type ClusterTrustBundleList struct { // items is a collection of ClusterTrustBundle objects Items []ClusterTrustBundle `json:"items" protobuf:"bytes,2,rep,name=items"` } + +// +genclient +// +k8s:prerelease-lifecycle-gen:introduced=1.32 +// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object + +// PodCertificateRequest encodes a pod requesting a certificate from a given +// signer. +// +// Kubelets use this API to implement podCertificate projected volumes +type PodCertificateRequest struct { + metav1.TypeMeta `json:",inline"` + + // metadata contains the object metadata. + // + // +optional + metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"` + + // spec contains the details about the certificate being requested. + Spec PodCertificateRequestSpec `json:"spec" protobuf:"bytes,2,opt,name=spec"` + + // status contains the issued certificate, and a standard set of conditions. + // +optional + Status PodCertificateRequestStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"` +} + +// PodCertificateRequestSpec describes the certificate request. All fields are +// immutable after creation. +type PodCertificateRequestSpec struct { + // signerName indicates the requested signer. + // + // All signer names beginning with `kubernetes.io` are reserved for use by + // the Kubernetes project. There is currently one well-known signer + // documented by the Kubernetes project, + // `kubernetes.io/kube-apiserver-client-pod`, which will issue client + // certificates understood by kube-apiserver. It is currently + // unimplemented. + // + // +required + SignerName string `json:"signerName" protobuf:"bytes,1,opt,name=signerName"` + + // podName is the name of the pod into which the certificate will be mounted. + // + // +required + PodName string `json:"podName" protobuf:"bytes,2,opt,name=podName"` + // podUID is the UID of the pod into which the certificate will be mounted. + // + // +required + PodUID types.UID `json:"podUID" protobuf:"bytes,3,opt,name=podUID"` + + // serviceAccountName is the name of the service account the pod is running as. + // + // +required + ServiceAccountName string `json:"serviceAccountName" protobuf:"bytes,4,opt,name=serviceAccountName"` + // serviceAccountUID is the UID of the service account the pod is running as. + // + // +required + ServiceAccountUID types.UID `json:"serviceAccountUID" protobuf:"bytes,5,opt,name=serviceAccountUID"` + + // nodeName is the name of the node the pod is assigned to. + // + // +required + NodeName types.NodeName `json:"nodeName" protobuf:"bytes,6,opt,name=nodeName"` + // nodeUID is the UID of the node the pod is assigned to. + // + // +required + NodeUID types.UID `json:"nodeUID" protobuf:"bytes,7,opt,name=nodeUID"` + + // maxExpirationSeconds is the maximum lifetime permitted for the + // certificate. + // + // If omitted, kube-apiserver will set it to 86400(24 hours). kube-apiserver + // will reject values shorter than 3600 (1 hour). The maximum allowable + // value is 7862400 (91 days). + // + // The signer implementation is then free to issue a certificate with any + // lifetime *shorter* than MaxExpirationSeconds, but no shorter than 3600 + // seconds (1 hour). This constraint is enforced by kube-apiserver. + // `kubernetes.io` signers will never issue certificates with a lifetime + // longer than 24 hours. + // + // +optional + // +default=86400 + MaxExpirationSeconds *int32 `json:"maxExpirationSeconds,omitempty" protobuf:"varint,8,opt,name=maxExpirationSeconds"` + + // pkixPublicKey is the PKIX-serialized public key the signer will issue the + // certificate to. + // + // The key must be one of RSA3072, RSA4096, ECDSAP256, ECDSAP384, ECDSAP521, + // or ED25519. Note that this list may be expanded in the future. + // + // Signer implementations do not need to support all key types supported by + // kube-apiserver and kubelet. If a signer does not support the key type + // used for a given PodCertificateRequest, it must deny the request by + // setting a status.conditions entry with a type of "Denied" and a reason of + // "UnsupportedKeyType". It may also suggest a key type that it does support + // in the message field. + // + // +required + PKIXPublicKey []byte `json:"pkixPublicKey" protobuf:"bytes,9,opt,name=pkixPublicKey"` + + // proofOfPossession proves that the requesting kubelet holds the private + // key corresponding to pkixPublicKey. + // + // It is contructed by signing the ASCII bytes of the pod's UID using + // `pkixPublicKey`. + // + // kube-apiserver validates the proof of possession during creation of the + // PodCertificateRequest. + // + // If the key is an RSA key, then the signature is over the ASCII bytes of + // the pod UID, using RSASSA-PSS from RFC 8017 (as implemented by the golang + // function crypto/rsa.SignPSS with nil options). + // + // If the key is an ECDSA key, then the signature is as described by [SEC 1, + // Version 2.0](https://www.secg.org/sec1-v2.pdf) (as implemented by the + // golang library function crypto/ecdsa.SignASN1) + // + // If the key is an ED25519 key, the the signature is as described by the + // [ED25519 Specification](https://ed25519.cr.yp.to/) (as implemented by + // the golang library crypto/ed25519.Sign). + // + // +required + ProofOfPossession []byte `json:"proofOfPossession" protobuf:"bytes,10,opt,name=proofOfPossession"` +} + +// PodCertificateRequestStatus describes the status of the request, and holds +// the certificate data if the request is issued. +type PodCertificateRequestStatus struct { + // conditions applied to the request. + // + // The types "Issued", "Denied", and "Failed" have special handling. At + // most one of these conditions may be present, and they must have status + // "True". + // + // If the request is denied with `Reason=UnsupportedKeyType`, the signer may + // suggest a key type that will work in the message field. + // + // +patchMergeKey=type + // +patchStrategy=merge + // +listType=map + // +listMapKey=type + // +optional + Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"` + + // certificateChain is populated with an issued certificate by the signer. + // This field is set via the /status subresource. Once populated, this field + // is immutable. + // + // If the certificate signing request is denied, a condition of type + // "Denied" is added and this field remains empty. If the signer cannot + // issue the certificate, a condition of type "Failed" is added and this + // field remains empty. + // + // Validation requirements: + // 1. certificateChain must consist of one or more PEM-formatted certificates. + // 2. Each entry must be a valid PEM-wrapped, DER-encoded ASN.1 Certificate as + // described in section 4 of RFC5280. + // + // If more than one block is present, and the definition of the requested + // spec.signerName does not indicate otherwise, the first block is the + // issued certificate, and subsequent blocks should be treated as + // intermediate certificates and presented in TLS handshakes. When + // projecting the chain into a pod volume, kubelet will drop any data + // in-between the PEM blocks, as well as any PEM block headers. + // + // +optional + CertificateChain string `json:"certificateChain,omitempty" protobuf:"bytes,2,opt,name=certificateChain"` + + // notBefore is the time at which the certificate becomes valid. The value + // must be the same as the notBefore value in the leaf certificate in + // certificateChain. This field is set via the /status subresource. Once + // populated, it is immutable. The signer must set this field at the same + // time it sets certificateChain. + // + // +optional + NotBefore *metav1.Time `json:"notBefore,omitempty" protobuf:"bytes,4,opt,name=notBefore"` + + // beginRefreshAt is the time at which the kubelet should begin trying to + // refresh the certificate. This field is set via the /status subresource, + // and must be set at the same time as certificateChain. Once populated, + // this field is immutable. + // + // This field is only a hint. Kubelet may start refreshing before or after + // this time if necessary. + // + // +optional + BeginRefreshAt *metav1.Time `json:"beginRefreshAt,omitempty" protobuf:"bytes,5,opt,name=beginRefreshAt"` + + // notAfter is the time at which the certificate expires. The value must be + // the same as the notAfter value in the leaf certificate in + // certificateChain. This field is set via the /status subresource. Once + // populated, it is immutable. The signer must set this field at the same + // time it sets certificateChain. + // + // +optional + NotAfter *metav1.Time `json:"notAfter,omitempty" protobuf:"bytes,6,opt,name=notAfter"` +} + +// Well-known condition types for PodCertificateRequests +const ( + // Denied indicates the request was denied by the signer. + PodCertificateRequestConditionTypeDenied string = "Denied" + // Failed indicates the signer failed to issue the certificate. + PodCertificateRequestConditionTypeFailed string = "Failed" + // Issued indicates the certificate has been issued. + PodCertificateRequestConditionTypeIssued string = "Issued" +) + +// Well-known condition reasons for PodCertificateRequests +const ( + // UnsupportedKeyType should be set on "Denied" conditions when the signer + // doesn't support the key type of publicKey. + PodCertificateRequestConditionUnsupportedKeyType string = "UnsupportedKeyType" +) + +// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object +// +k8s:prerelease-lifecycle-gen:introduced=1.32 + +// PodCertificateRequestList is a collection of PodCertificateRequest objects +type PodCertificateRequestList struct { + metav1.TypeMeta `json:",inline"` + + // metadata contains the list metadata. + // + // +optional + metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"` + + // items is a collection of PodCertificateRequest objects + Items []PodCertificateRequest `json:"items" protobuf:"bytes,2,rep,name=items"` +} diff --git a/core/v1/types.go b/core/v1/types.go index d10bf12974..84ed2db0ac 100644 --- a/core/v1/types.go +++ b/core/v1/types.go @@ -1989,6 +1989,79 @@ type ClusterTrustBundleProjection struct { Path string `json:"path" protobuf:"bytes,4,rep,name=path"` } +// PodCertificateProjection provides a private key and X.509 certificate in the +// pod filesystem. +type PodCertificateProjection struct { + // Kubelet's generated CSRs will be addressed to this signer. + // + // +required + SignerName string `json:"signerName,omitempty" protobuf:"bytes,1,rep,name=signerName"` + + // The type of keypair Kubelet will generate for the pod. + // + // Valid values are "RSA3072", "RSA4096", "ECDSAP256", "ECDSAP384", + // "ECDSAP521", and "ED25519". + // + // +required + KeyType string `json:"keyType,omitempty" protobuf:"bytes,2,rep,name=keyType"` + + // maxExpirationSeconds is the maximum lifetime permitted for the + // certificate. + // + // Kubelet copies this value verbatim into the PodCertificateRequests it + // generates for this projection. + // + // If omitted, kube-apiserver will set it to 86400(24 hours). kube-apiserver + // will reject values shorter than 3600 (1 hour). The maximum allowable + // value is 7862400 (91 days). + // + // The signer implementation is then free to issue a certificate with any + // lifetime *shorter* than MaxExpirationSeconds, but no shorter than 3600 + // seconds (1 hour). This constraint is enforced by kube-apiserver. + // `kubernetes.io` signers will never issue certificates with a lifetime + // longer than 24 hours. + // + // +optional + MaxExpirationSeconds *int32 `json:"maxExpirationSeconds,omitempty" protobuf:"varint,3,opt,name=maxExpirationSeconds"` + + // Write the credential bundle at this path in the projected volume. + // + // The credential bundle is a single file that contains multiple PEM blocks. + // The first PEM block is a PRIVATE KEY block, containing a PKCS#8 private + // key. + // + // The remaining blocks are CERTIFICATE blocks, containing the issued + // certificate chain from the signer (leaf and any intermediates). + // + // Using credentialBundlePath lets your Pod's application code make a single + // atomic read that retrieves a consistent key and certificate chain. If you + // project them to separate files, your application code will need to + // additionally check that the leaf certificate was issued to the key. + // + // +optional + CredentialBundlePath string `json:"credentialBundlePath,omitempty" protobuf:"bytes,4,rep,name=credentialBundlePath"` + + // Write the key at this path in the projected volume. + // + // Most applications should use credentialBundlePath. When using keyPath + // and certificateChainPath, your application needs to check that the key + // and leaf certificate are consistent, because it is possible to read the + // files mid-rotation. + // + // +optional + KeyPath string `json:"keyPath,omitempty" protobuf:"bytes,5,rep,name=keyPath"` + + // Write the certificate chain at this path in the projected volume. + // + // Most applications should use credentialBundlePath. When using keyPath + // and certificateChainPath, your application needs to check that the key + // and leaf certificate are consistent, because it is possible to read the + // files mid-rotation. + // + // +optional + CertificateChainPath string `json:"certificateChainPath,omitempty" protobuf:"bytes,6,rep,name=certificateChainPath"` +} + // Represents a projected volume source type ProjectedVolumeSource struct { // sources is the list of volume projections. Each entry in this list @@ -2039,6 +2112,44 @@ type VolumeProjection struct { // +featureGate=ClusterTrustBundleProjection // +optional ClusterTrustBundle *ClusterTrustBundleProjection `json:"clusterTrustBundle,omitempty" protobuf:"bytes,5,opt,name=clusterTrustBundle"` + + // Projects an auto-rotating credential bundle (private key and certificate + // chain) that the pod can use either as a TLS client or server. + // + // Kubelet generates a private key and uses it to send a + // PodCertificateRequest to the named signer. Once the signer approves the + // request and issues a certificate chain, Kubelet writes the key and + // certificate chain to the pod filesystem. The pod does not start until + // certificates have been issued for each podCertificate projected volume + // source in its spec. + // + // Kubelet will begin trying to rotate the certificate at the time indicated + // by the signer using the PodCertificateRequest.Status.BeginRefreshAt + // timestamp. + // + // Kubelet can write a single file, indicated by the credentialBundlePath + // field, or separate files, indicated by the keyPath and + // certificateChainPath fields. + // + // The credential bundle is a single file in PEM format. The first PEM + // entry is the private key (in PKCS#8 format), and the remaining PEM + // entries are the certificate chain issued by the signer (typically, + // signers will return their certificate chain in leaf-to-root order). + // + // Prefer using the credential bundle format, since your application code + // can read it atomically. If you use keyPath and certificateChainPath, + // your application must make two separate file reads. If these coincide + // with a certificate rotation, it is possible that the private key and leaf + // certificate you read may not correspond to each other. Your application + // will need to check for this condition, and re-read until they are + // consistent. + // + // The named signer controls chooses the format of the certificate it + // issues; consult the signer implementation's documentation to learn how to + // use the certificates it issues. + // + // +featureGate=PodCertificateProjection +optional + PodCertificate *PodCertificateProjection `json:"podCertificate,omitempty" protobuf:"bytes,6,opt,name=podCertificate"` } const ( From f87f362af0f497d233bac35587f933ccaf6ea86c Mon Sep 17 00:00:00 2001 From: Dejan Zele Pejchev Date: Thu, 13 Feb 2025 01:49:59 +0100 Subject: [PATCH 002/100] KEP-3939: Job Pod Replacement Policy; promote to GA Signed-off-by: Dejan Zele Pejchev Kubernetes-commit: bccc9fe470fadd7bf10c32d99366b054f878964a --- batch/v1/generated.proto | 2 -- batch/v1/types.go | 2 -- batch/v1/types_swagger_doc_generated.go | 2 +- 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/batch/v1/generated.proto b/batch/v1/generated.proto index 5583b358f8..c0ce8cef26 100644 --- a/batch/v1/generated.proto +++ b/batch/v1/generated.proto @@ -330,8 +330,6 @@ message JobSpec { // // When using podFailurePolicy, Failed is the the only allowed value. // TerminatingOrFailed and Failed are allowed values when podFailurePolicy is not in use. - // This is an beta field. To use this, enable the JobPodReplacementPolicy feature toggle. - // This is on by default. // +optional optional string podReplacementPolicy = 14; diff --git a/batch/v1/types.go b/batch/v1/types.go index 09b7125c3d..9183c073d2 100644 --- a/batch/v1/types.go +++ b/batch/v1/types.go @@ -456,8 +456,6 @@ type JobSpec struct { // // When using podFailurePolicy, Failed is the the only allowed value. // TerminatingOrFailed and Failed are allowed values when podFailurePolicy is not in use. - // This is an beta field. To use this, enable the JobPodReplacementPolicy feature toggle. - // This is on by default. // +optional PodReplacementPolicy *PodReplacementPolicy `json:"podReplacementPolicy,omitempty" protobuf:"bytes,14,opt,name=podReplacementPolicy,casttype=podReplacementPolicy"` diff --git a/batch/v1/types_swagger_doc_generated.go b/batch/v1/types_swagger_doc_generated.go index 5ec3d7fec6..451f4609f2 100644 --- a/batch/v1/types_swagger_doc_generated.go +++ b/batch/v1/types_swagger_doc_generated.go @@ -126,7 +126,7 @@ var map_JobSpec = map[string]string{ "ttlSecondsAfterFinished": "ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed). If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted. When the Job is being deleted, its lifecycle guarantees (e.g. finalizers) will be honored. If this field is unset, the Job won't be automatically deleted. If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes.", "completionMode": "completionMode specifies how Pod completions are tracked. It can be `NonIndexed` (default) or `Indexed`.\n\n`NonIndexed` means that the Job is considered complete when there have been .spec.completions successfully completed Pods. Each Pod completion is homologous to each other.\n\n`Indexed` means that the Pods of a Job get an associated completion index from 0 to (.spec.completions - 1), available in the annotation batch.kubernetes.io/job-completion-index. The Job is considered complete when there is one successfully completed Pod for each index. When value is `Indexed`, .spec.completions must be specified and `.spec.parallelism` must be less than or equal to 10^5. In addition, The Pod name takes the form `$(job-name)-$(index)-$(random-string)`, the Pod hostname takes the form `$(job-name)-$(index)`.\n\nMore completion modes can be added in the future. If the Job controller observes a mode that it doesn't recognize, which is possible during upgrades due to version skew, the controller skips updates for the Job.", "suspend": "suspend specifies whether the Job controller should create Pods or not. If a Job is created with suspend set to true, no Pods are created by the Job controller. If a Job is suspended after creation (i.e. the flag goes from false to true), the Job controller will delete all active Pods associated with this Job. Users must design their workload to gracefully handle this. Suspending a Job will reset the StartTime field of the Job, effectively resetting the ActiveDeadlineSeconds timer too. Defaults to false.", - "podReplacementPolicy": "podReplacementPolicy specifies when to create replacement Pods. Possible values are: - TerminatingOrFailed means that we recreate pods\n when they are terminating (has a metadata.deletionTimestamp) or failed.\n- Failed means to wait until a previously created Pod is fully terminated (has phase\n Failed or Succeeded) before creating a replacement Pod.\n\nWhen using podFailurePolicy, Failed is the the only allowed value. TerminatingOrFailed and Failed are allowed values when podFailurePolicy is not in use. This is an beta field. To use this, enable the JobPodReplacementPolicy feature toggle. This is on by default.", + "podReplacementPolicy": "podReplacementPolicy specifies when to create replacement Pods. Possible values are: - TerminatingOrFailed means that we recreate pods\n when they are terminating (has a metadata.deletionTimestamp) or failed.\n- Failed means to wait until a previously created Pod is fully terminated (has phase\n Failed or Succeeded) before creating a replacement Pod.\n\nWhen using podFailurePolicy, Failed is the the only allowed value. TerminatingOrFailed and Failed are allowed values when podFailurePolicy is not in use.", "managedBy": "ManagedBy field indicates the controller that manages a Job. The k8s Job controller reconciles jobs which don't have this field at all or the field value is the reserved string `kubernetes.io/job-controller`, but skips reconciling Jobs with a custom value for this field. The value must be a valid domain-prefixed path (e.g. acme.io/foo) - all characters before the first \"/\" must be a valid subdomain as defined by RFC 1123. All characters trailing the first \"/\" must be valid HTTP Path characters as defined by RFC 3986. The value cannot exceed 63 characters. This field is immutable.\n\nThis field is beta-level. The job controller accepts setting the field when the feature gate JobManagedBy is enabled (enabled by default).", } From d1fff2cf067845d3ed56863b2b8f2fc89316ee62 Mon Sep 17 00:00:00 2001 From: carlory Date: Tue, 18 Feb 2025 16:04:40 +0800 Subject: [PATCH 003/100] clean up CSIDriverRegistry Kubernetes-commit: 21f7026c25c5879e326171480e099af136308104 --- storage/v1/types.go | 3 +-- storage/v1beta1/types.go | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/storage/v1/types.go b/storage/v1/types.go index 16ceca9044..5e5f16cb1a 100644 --- a/storage/v1/types.go +++ b/storage/v1/types.go @@ -288,8 +288,7 @@ type CSIDriverSpec struct { // and waits until the volume is attached before proceeding to mounting. // The CSI external-attacher coordinates with CSI volume driver and updates // the volumeattachment status when the attach operation is complete. - // If the CSIDriverRegistry feature gate is enabled and the value is - // specified to false, the attach operation will be skipped. + // If the value is specified to false, the attach operation will be skipped. // Otherwise the attach operation will be called. // // This field is immutable. diff --git a/storage/v1beta1/types.go b/storage/v1beta1/types.go index 2b7f6b78a5..e8a42170f1 100644 --- a/storage/v1beta1/types.go +++ b/storage/v1beta1/types.go @@ -302,8 +302,7 @@ type CSIDriverSpec struct { // and waits until the volume is attached before proceeding to mounting. // The CSI external-attacher coordinates with CSI volume driver and updates // the volumeattachment status when the attach operation is complete. - // If the CSIDriverRegistry feature gate is enabled and the value is - // specified to false, the attach operation will be skipped. + // If the value is specified to false, the attach operation will be skipped. // Otherwise the attach operation will be called. // // This field is immutable. From 2c44ab0bfeb3c4e9739d8a0e456e8a8b9132bd9f Mon Sep 17 00:00:00 2001 From: carlory Date: Tue, 18 Feb 2025 16:52:16 +0800 Subject: [PATCH 004/100] make update Kubernetes-commit: a2624f9c64bb7d0bdea3663cc8ccf2321fe372bd --- storage/v1/generated.proto | 3 +-- storage/v1/types_swagger_doc_generated.go | 2 +- storage/v1beta1/generated.proto | 3 +-- storage/v1beta1/types_swagger_doc_generated.go | 2 +- 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/storage/v1/generated.proto b/storage/v1/generated.proto index 0e8ce7587e..ab5104053d 100644 --- a/storage/v1/generated.proto +++ b/storage/v1/generated.proto @@ -70,8 +70,7 @@ message CSIDriverSpec { // and waits until the volume is attached before proceeding to mounting. // The CSI external-attacher coordinates with CSI volume driver and updates // the volumeattachment status when the attach operation is complete. - // If the CSIDriverRegistry feature gate is enabled and the value is - // specified to false, the attach operation will be skipped. + // If the value is specified to false, the attach operation will be skipped. // Otherwise the attach operation will be called. // // This field is immutable. diff --git a/storage/v1/types_swagger_doc_generated.go b/storage/v1/types_swagger_doc_generated.go index 80c84edd2e..d0c9ae27cf 100644 --- a/storage/v1/types_swagger_doc_generated.go +++ b/storage/v1/types_swagger_doc_generated.go @@ -49,7 +49,7 @@ func (CSIDriverList) SwaggerDoc() map[string]string { var map_CSIDriverSpec = map[string]string{ "": "CSIDriverSpec is the specification of a CSIDriver.", - "attachRequired": "attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting. The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete. If the CSIDriverRegistry feature gate is enabled and the value is specified to false, the attach operation will be skipped. Otherwise the attach operation will be called.\n\nThis field is immutable.", + "attachRequired": "attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting. The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete. If the value is specified to false, the attach operation will be skipped. Otherwise the attach operation will be called.\n\nThis field is immutable.", "podInfoOnMount": "podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount operations, if set to true. If set to false, pod information will not be passed on mount. Default is false.\n\nThe CSI driver specifies podInfoOnMount as part of driver deployment. If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls. The CSI driver is responsible for parsing and validating the information passed in as VolumeContext.\n\nThe following VolumeContext will be passed if podInfoOnMount is set to true. This list might grow, but the prefix will be used. \"csi.storage.k8s.io/pod.name\": pod.Name \"csi.storage.k8s.io/pod.namespace\": pod.Namespace \"csi.storage.k8s.io/pod.uid\": string(pod.UID) \"csi.storage.k8s.io/ephemeral\": \"true\" if the volume is an ephemeral inline volume\n defined by a CSIVolumeSource, otherwise \"false\"\n\n\"csi.storage.k8s.io/ephemeral\" is a new feature in Kubernetes 1.16. It is only required for drivers which support both the \"Persistent\" and \"Ephemeral\" VolumeLifecycleMode. Other drivers can leave pod info disabled and/or ignore this field. As Kubernetes 1.15 doesn't support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driver.\n\nThis field was immutable in Kubernetes < 1.29 and now is mutable.", "volumeLifecycleModes": "volumeLifecycleModes defines what kind of volumes this CSI volume driver supports. The default if the list is empty is \"Persistent\", which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanism.\n\nThe other mode is \"Ephemeral\". In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod. A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume.\n\nFor more information about implementing this mode, see https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html A driver can support one or more of these modes and more modes may be added in the future.\n\nThis field is beta. This field is immutable.", "storageCapacity": "storageCapacity indicates that the CSI volume driver wants pod scheduling to consider the storage capacity that the driver deployment will report by creating CSIStorageCapacity objects with capacity information, if set to true.\n\nThe check can be enabled immediately when deploying a driver. In that case, provisioning new volumes with late binding will pause until the driver deployment has published some suitable CSIStorageCapacity object.\n\nAlternatively, the driver can be deployed with the field unset or false and it can be flipped later when storage capacity information has been published.\n\nThis field was immutable in Kubernetes <= 1.22 and now is mutable.", diff --git a/storage/v1beta1/generated.proto b/storage/v1beta1/generated.proto index 38e600570e..ea25bd21c2 100644 --- a/storage/v1beta1/generated.proto +++ b/storage/v1beta1/generated.proto @@ -73,8 +73,7 @@ message CSIDriverSpec { // and waits until the volume is attached before proceeding to mounting. // The CSI external-attacher coordinates with CSI volume driver and updates // the volumeattachment status when the attach operation is complete. - // If the CSIDriverRegistry feature gate is enabled and the value is - // specified to false, the attach operation will be skipped. + // If the value is specified to false, the attach operation will be skipped. // Otherwise the attach operation will be called. // // This field is immutable. diff --git a/storage/v1beta1/types_swagger_doc_generated.go b/storage/v1beta1/types_swagger_doc_generated.go index 8f685f196d..e7ca66f92d 100644 --- a/storage/v1beta1/types_swagger_doc_generated.go +++ b/storage/v1beta1/types_swagger_doc_generated.go @@ -49,7 +49,7 @@ func (CSIDriverList) SwaggerDoc() map[string]string { var map_CSIDriverSpec = map[string]string{ "": "CSIDriverSpec is the specification of a CSIDriver.", - "attachRequired": "attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting. The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete. If the CSIDriverRegistry feature gate is enabled and the value is specified to false, the attach operation will be skipped. Otherwise the attach operation will be called.\n\nThis field is immutable.", + "attachRequired": "attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting. The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete. If the value is specified to false, the attach operation will be skipped. Otherwise the attach operation will be called.\n\nThis field is immutable.", "podInfoOnMount": "podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount operations, if set to true. If set to false, pod information will not be passed on mount. Default is false.\n\nThe CSI driver specifies podInfoOnMount as part of driver deployment. If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls. The CSI driver is responsible for parsing and validating the information passed in as VolumeContext.\n\nThe following VolumeContext will be passed if podInfoOnMount is set to true. This list might grow, but the prefix will be used. \"csi.storage.k8s.io/pod.name\": pod.Name \"csi.storage.k8s.io/pod.namespace\": pod.Namespace \"csi.storage.k8s.io/pod.uid\": string(pod.UID) \"csi.storage.k8s.io/ephemeral\": \"true\" if the volume is an ephemeral inline volume\n defined by a CSIVolumeSource, otherwise \"false\"\n\n\"csi.storage.k8s.io/ephemeral\" is a new feature in Kubernetes 1.16. It is only required for drivers which support both the \"Persistent\" and \"Ephemeral\" VolumeLifecycleMode. Other drivers can leave pod info disabled and/or ignore this field. As Kubernetes 1.15 doesn't support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driver.\n\nThis field is immutable.", "volumeLifecycleModes": "volumeLifecycleModes defines what kind of volumes this CSI volume driver supports. The default if the list is empty is \"Persistent\", which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanism.\n\nThe other mode is \"Ephemeral\". In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod. A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume.\n\nFor more information about implementing this mode, see https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html A driver can support one or more of these modes and more modes may be added in the future.\n\nThis field is immutable.", "storageCapacity": "storageCapacity indicates that the CSI volume driver wants pod scheduling to consider the storage capacity that the driver deployment will report by creating CSIStorageCapacity objects with capacity information, if set to true.\n\nThe check can be enabled immediately when deploying a driver. In that case, provisioning new volumes with late binding will pause until the driver deployment has published some suitable CSIStorageCapacity object.\n\nAlternatively, the driver can be deployed with the field unset or false and it can be flipped later when storage capacity information has been published.\n\nThis field was immutable in Kubernetes <= 1.22 and now is mutable.", From 4ef3c65776f150c09b7878ada6a915a6b22451bd Mon Sep 17 00:00:00 2001 From: Jingyuan Liang Date: Wed, 19 Mar 2025 15:46:30 +0000 Subject: [PATCH 005/100] fix: comment on preferred PodAntiAffinity Kubernetes-commit: 356e148045eb2c1ae102a43f1f9c043d757fcc82 --- core/v1/types.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/v1/types.go b/core/v1/types.go index eaf5d8d200..f6283b828d 100644 --- a/core/v1/types.go +++ b/core/v1/types.go @@ -3678,8 +3678,8 @@ type PodAntiAffinity struct { // most preferred is the one with the greatest sum of weights, i.e. // for each node that meets all of the scheduling requirements (resource // request, requiredDuringScheduling anti-affinity expressions, etc.), - // compute a sum by iterating through the elements of this field and adding - // "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the + // compute a sum by iterating through the elements of this field and subtracting + // "weight" from the sum if the node has pods which matches the corresponding podAffinityTerm; the // node(s) with the highest sum are the most preferred. // +optional // +listType=atomic From 32054dc0ed007c94feb49a5902b07783c31a097c Mon Sep 17 00:00:00 2001 From: Jingyuan Liang Date: Wed, 19 Mar 2025 15:47:13 +0000 Subject: [PATCH 006/100] chore: `make update` for doc changes Kubernetes-commit: 4120ed1df05352b5fc66e9ef068b9fad31f1c998 --- core/v1/generated.proto | 4 ++-- core/v1/types_swagger_doc_generated.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/v1/generated.proto b/core/v1/generated.proto index 57ef565876..85a7c0f1ba 100644 --- a/core/v1/generated.proto +++ b/core/v1/generated.proto @@ -3684,8 +3684,8 @@ message PodAntiAffinity { // most preferred is the one with the greatest sum of weights, i.e. // for each node that meets all of the scheduling requirements (resource // request, requiredDuringScheduling anti-affinity expressions, etc.), - // compute a sum by iterating through the elements of this field and adding - // "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the + // compute a sum by iterating through the elements of this field and subtracting + // "weight" from the sum if the node has pods which matches the corresponding podAffinityTerm; the // node(s) with the highest sum are the most preferred. // +optional // +listType=atomic diff --git a/core/v1/types_swagger_doc_generated.go b/core/v1/types_swagger_doc_generated.go index c35247c3ae..ce1241775d 100644 --- a/core/v1/types_swagger_doc_generated.go +++ b/core/v1/types_swagger_doc_generated.go @@ -1606,7 +1606,7 @@ func (PodAffinityTerm) SwaggerDoc() map[string]string { var map_PodAntiAffinity = map[string]string{ "": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", "requiredDuringSchedulingIgnoredDuringExecution": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", - "preferredDuringSchedulingIgnoredDuringExecution": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", + "preferredDuringSchedulingIgnoredDuringExecution": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and subtracting \"weight\" from the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", } func (PodAntiAffinity) SwaggerDoc() map[string]string { From e832ef92319499a68af3115ef28fd50e83975b69 Mon Sep 17 00:00:00 2001 From: Benjamin Elder Date: Fri, 21 Mar 2025 18:19:29 -0700 Subject: [PATCH 007/100] remove inaccurate hostNetwork doc comment also remove from copies in example / test APIs Kubernetes-commit: 8af1629f7aeeabeaec21f3fbcee5bc60d9ad2015 --- core/v1/types.go | 1 - 1 file changed, 1 deletion(-) diff --git a/core/v1/types.go b/core/v1/types.go index f7641e485a..eaf5d8d200 100644 --- a/core/v1/types.go +++ b/core/v1/types.go @@ -3983,7 +3983,6 @@ type PodSpec struct { // +optional NodeName string `json:"nodeName,omitempty" protobuf:"bytes,10,opt,name=nodeName"` // Host networking requested for this pod. Use the host's network namespace. - // If this option is set, the ports that will be used must be specified. // Default to false. // +k8s:conversion-gen=false // +optional From 2d25876a3a6ca0ac3533ea11c913670eec09f5e5 Mon Sep 17 00:00:00 2001 From: Benjamin Elder Date: Fri, 21 Mar 2025 18:19:43 -0700 Subject: [PATCH 008/100] make update Kubernetes-commit: 1c3dc397ae137cc8b1d2095ea33217a239b81b55 --- core/v1/generated.proto | 1 - core/v1/types_swagger_doc_generated.go | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/core/v1/generated.proto b/core/v1/generated.proto index 9b48fb1c39..57ef565876 100644 --- a/core/v1/generated.proto +++ b/core/v1/generated.proto @@ -4269,7 +4269,6 @@ message PodSpec { optional string nodeName = 10; // Host networking requested for this pod. Use the host's network namespace. - // If this option is set, the ports that will be used must be specified. // Default to false. // +k8s:conversion-gen=false // +optional diff --git a/core/v1/types_swagger_doc_generated.go b/core/v1/types_swagger_doc_generated.go index 9e987eefdd..c35247c3ae 100644 --- a/core/v1/types_swagger_doc_generated.go +++ b/core/v1/types_swagger_doc_generated.go @@ -1824,7 +1824,7 @@ var map_PodSpec = map[string]string{ "serviceAccount": "DeprecatedServiceAccount is a deprecated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.", "automountServiceAccountToken": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.", "nodeName": "NodeName indicates in which node this pod is scheduled. If empty, this pod is a candidate for scheduling by the scheduler defined in schedulerName. Once this field is set, the kubelet for this node becomes responsible for the lifecycle of this pod. This field should not be used to express a desire for the pod to be scheduled on a specific node. https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodename", - "hostNetwork": "Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.", + "hostNetwork": "Host networking requested for this pod. Use the host's network namespace. Default to false.", "hostPID": "Use the host's pid namespace. Optional: Default to false.", "hostIPC": "Use the host's ipc namespace. Optional: Default to false.", "shareProcessNamespace": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.", From fb0e0191c8a9e2f9904eee366eb3d43ede206be4 Mon Sep 17 00:00:00 2001 From: xigang Date: Sat, 22 Mar 2025 10:14:01 +0800 Subject: [PATCH 009/100] bump k8s.io/utils Kubernetes-commit: fe14689f221a968806b771b226581efb834654cd --- go.mod | 10 ++++++---- go.sum | 37 +++++++++++++++++++++++++++++-------- 2 files changed, 35 insertions(+), 12 deletions(-) diff --git a/go.mod b/go.mod index 5885c501cc..05567697db 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ godebug default=go1.24 require ( github.com/gogo/protobuf v1.3.2 - k8s.io/apimachinery v0.0.0-20250423231522-27a82ebc8b72 + k8s.io/apimachinery v0.0.0 ) require ( @@ -22,14 +22,16 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/spf13/pflag v1.0.5 // indirect github.com/x448/float16 v0.8.4 // indirect - golang.org/x/net v0.38.0 // indirect - golang.org/x/text v0.23.0 // indirect + golang.org/x/net v0.33.0 // indirect + golang.org/x/text v0.22.0 // indirect gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect gopkg.in/inf.v0 v0.9.1 // indirect k8s.io/klog/v2 v2.130.1 // indirect - k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect + k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e // indirect sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect sigs.k8s.io/randfill v1.0.0 // indirect sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect sigs.k8s.io/yaml v1.4.0 // indirect ) + +replace k8s.io/apimachinery => ../apimachinery diff --git a/go.sum b/go.sum index 9ec0faaa69..fa8ea4dcd9 100644 --- a/go.sum +++ b/go.sum @@ -1,3 +1,4 @@ +github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= @@ -6,12 +7,18 @@ github.com/fxamacker/cbor/v2 v2.7.0 h1:iM5WgngdRBanHcxugY4JySA0nk1wZorNOpTgCMedv github.com/fxamacker/cbor/v2 v2.7.0/go.mod h1:pxXPTn3joSm21Gbwsv0w9OSA2y1HFR9qXEeXQVeNoDQ= github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY= github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= +github.com/go-openapi/jsonpointer v0.21.0/go.mod h1:IUyH9l/+uyhIYQ/PXVA41Rexl+kOkAPDdXEYns6fzUY= +github.com/go-openapi/jsonreference v0.20.2/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k= +github.com/go-openapi/swag v0.23.0/go.mod h1:esZ8ITTYEsH1V2trKHjAN8Ai7xHb8RV+YSZ577vPjgQ= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= +github.com/google/gnostic-models v0.6.9/go.mod h1:CiWsm0s6BSQd1hRn8/QmxqB6BesYcbSZxsz9b0KuDBw= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= @@ -23,12 +30,18 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= +github.com/moby/spdystream v0.5.0/go.mod h1:xBAYlnt/ay+11ShkdFKNAG7LsyK/tmNBVvVOwrfMgdI= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= +github.com/onsi/ginkgo/v2 v2.21.0/go.mod h1:7Du3c42kxCUegi0IImZ1wUQzMBVecgIHjR1C+NkhLQo= +github.com/onsi/gomega v1.35.1/go.mod h1:PvZbdDc8J6XJEpDK4HCuRBm8a6Fzp9/DmhC9C7yFlog= github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= +github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= @@ -47,45 +60,53 @@ github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9dec golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.38.0 h1:vRMAPTMaeGqVhG5QyLJHqNDwecKTomGeqbnfZyKlBI8= -golang.org/x/net v0.38.0/go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8= +golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I= +golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.11.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/term v0.27.0/go.mod h1:iMsnZpn0cago0GOrHO2+Y7u7JPn5AylBrcoWkElMTSM= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.23.0 h1:D71I7dUrlY+VX0gQShAThNGHFxZ13dGLBHQLVl1mJlY= -golang.org/x/text v0.23.0/go.mod h1:/BLNzu4aZCJ1+kcD0DNRotWKage4q2rGVAg4o22unh4= +golang.org/x/text v0.22.0 h1:bofq7m3/HAFvbF51jz3Q9wLg3jkvSPuiZu/pD1XwgtM= +golang.org/x/text v0.22.0/go.mod h1:YRoo4H8PVmsu+E3Ou7cqLVH8oXWIHVoX0jqUWALQhfY= +golang.org/x/time v0.9.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/protobuf v1.36.5/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= +gopkg.in/evanphx/json-patch.v4 v4.12.0/go.mod h1:p8EYWUEYMpynmqDbY58zCKCFZw8pRWMG4EsWvDvM72M= gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc= gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -k8s.io/apimachinery v0.0.0-20250423231522-27a82ebc8b72 h1:vPbas+0Yx2JYUzs8I7DgbaFWIOhUxItCBAaBO6zLy1Q= -k8s.io/apimachinery v0.0.0-20250423231522-27a82ebc8b72/go.mod h1:BHW0YOu7n22fFv/JkYOEfkUYNRN0fj0BlvMFWA7b+SM= k8s.io/klog/v2 v2.130.1 h1:n9Xl7H1Xvksem4KFG4PYbdQCQxqc/tTUyrgXaOhHSzk= k8s.io/klog/v2 v2.130.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE= -k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 h1:M3sRQVHv7vB20Xc2ybTt7ODCeFj6JSWYFzOFnYeS6Ro= -k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= +k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff/go.mod h1:5jIi+8yX4RIb8wk3XwBo5Pq2ccx4FP10ohkbSKCZoK8= +k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e h1:KqK5c/ghOm8xkHYhlodbp6i6+r+ChV2vuAuVRdFbLro= +k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 h1:/Rv+M11QRah1itp8VhT6HoVx1Ray9eB4DBr+K+/sCJ8= sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3/go.mod h1:18nIHnGi6636UCz6m8i4DhaJ65T6EruyzmoQqI2BVDo= sigs.k8s.io/randfill v0.0.0-20250304075658-069ef1bbf016/go.mod h1:XeLlZ/jmk4i1HRopwe7/aU3H5n1zNUcX6TM94b3QxOY= From c69eccea7df0147f6f235b7994c43baef756ca8e Mon Sep 17 00:00:00 2001 From: Michal Wozniak Date: Fri, 11 Apr 2025 12:37:25 +0200 Subject: [PATCH 010/100] Improve Job API comment for the backoffLimit Kubernetes-commit: 8f1326251c2bda841c1accd880b68611888224a6 --- batch/v1/generated.proto | 3 ++- batch/v1/types.go | 3 ++- batch/v1/types_swagger_doc_generated.go | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/batch/v1/generated.proto b/batch/v1/generated.proto index d3aeae0adb..8b759d0435 100644 --- a/batch/v1/generated.proto +++ b/batch/v1/generated.proto @@ -226,7 +226,8 @@ message JobSpec { optional SuccessPolicy successPolicy = 16; // Specifies the number of retries before marking this job failed. - // Defaults to 6 + // Defaults to 6, unless backoffLimitPerIndex (only Indexed Job) is specified. + // When backoffLimitPerIndex is specified, backoffLimit defaults to 2147483647. // +optional optional int32 backoffLimit = 7; diff --git a/batch/v1/types.go b/batch/v1/types.go index 6c0007c21e..1eaea11bee 100644 --- a/batch/v1/types.go +++ b/batch/v1/types.go @@ -347,7 +347,8 @@ type JobSpec struct { SuccessPolicy *SuccessPolicy `json:"successPolicy,omitempty" protobuf:"bytes,16,opt,name=successPolicy"` // Specifies the number of retries before marking this job failed. - // Defaults to 6 + // Defaults to 6, unless backoffLimitPerIndex (only Indexed Job) is specified. + // When backoffLimitPerIndex is specified, backoffLimit defaults to 2147483647. // +optional BackoffLimit *int32 `json:"backoffLimit,omitempty" protobuf:"varint,7,opt,name=backoffLimit"` diff --git a/batch/v1/types_swagger_doc_generated.go b/batch/v1/types_swagger_doc_generated.go index ffd4e4f5fe..b1b1e1283d 100644 --- a/batch/v1/types_swagger_doc_generated.go +++ b/batch/v1/types_swagger_doc_generated.go @@ -117,7 +117,7 @@ var map_JobSpec = map[string]string{ "activeDeadlineSeconds": "Specifies the duration in seconds relative to the startTime that the job may be continuously active before the system tries to terminate it; value must be positive integer. If a Job is suspended (at creation or through an update), this timer will effectively be stopped and reset when the Job is resumed again.", "podFailurePolicy": "Specifies the policy of handling failed pods. In particular, it allows to specify the set of actions and conditions which need to be satisfied to take the associated action. If empty, the default behaviour applies - the counter of failed pods, represented by the jobs's .status.failed field, is incremented and it is checked against the backoffLimit. This field cannot be used in combination with restartPolicy=OnFailure.", "successPolicy": "successPolicy specifies the policy when the Job can be declared as succeeded. If empty, the default behavior applies - the Job is declared as succeeded only when the number of succeeded pods equals to the completions. When the field is specified, it must be immutable and works only for the Indexed Jobs. Once the Job meets the SuccessPolicy, the lingering pods are terminated.", - "backoffLimit": "Specifies the number of retries before marking this job failed. Defaults to 6", + "backoffLimit": "Specifies the number of retries before marking this job failed. Defaults to 6, unless backoffLimitPerIndex (only Indexed Job) is specified. When backoffLimitPerIndex is specified, backoffLimit defaults to 2147483647.", "backoffLimitPerIndex": "Specifies the limit for the number of retries within an index before marking this index as failed. When enabled the number of failures per index is kept in the pod's batch.kubernetes.io/job-index-failure-count annotation. It can only be set when Job's completionMode=Indexed, and the Pod's restart policy is Never. The field is immutable.", "maxFailedIndexes": "Specifies the maximal number of failed indexes before marking the Job as failed, when backoffLimitPerIndex is set. Once the number of failed indexes exceeds this number the entire Job is marked as Failed and its execution is terminated. When left as null the job continues execution of all of its indexes and is marked with the `Complete` Job condition. It can only be specified when backoffLimitPerIndex is set. It can be null or up to completions. It is required and must be less than or equal to 10^4 when is completions greater than 10^5.", "selector": "A label query over pods that should match the pod count. Normally, the system sets this field for you. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", From f417f6a959acdeba11f5b5b20f07d0dedae205cc Mon Sep 17 00:00:00 2001 From: Yuki Iwai Date: Thu, 17 Apr 2025 00:42:26 +0900 Subject: [PATCH 011/100] Job: Fix API comments for SuccessCriteriaMet Signed-off-by: Yuki Iwai Kubernetes-commit: db1e107150d8445a1f25fa80148284e743d1dcdb --- batch/v1/generated.proto | 2 +- batch/v1/types.go | 2 +- batch/v1/types_swagger_doc_generated.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/batch/v1/generated.proto b/batch/v1/generated.proto index 8b759d0435..5583b358f8 100644 --- a/batch/v1/generated.proto +++ b/batch/v1/generated.proto @@ -571,7 +571,7 @@ message PodFailurePolicyRule { message SuccessPolicy { // rules represents the list of alternative rules for the declaring the Jobs // as successful before `.status.succeeded >= .spec.completions`. Once any of the rules are met, - // the "SucceededCriteriaMet" condition is added, and the lingering pods are removed. + // the "SuccessCriteriaMet" condition is added, and the lingering pods are removed. // The terminal state for such a Job has the "Complete" condition. // Additionally, these rules are evaluated in order; Once the Job meets one of the rules, // other rules are ignored. At most 20 elements are allowed. diff --git a/batch/v1/types.go b/batch/v1/types.go index 1eaea11bee..09b7125c3d 100644 --- a/batch/v1/types.go +++ b/batch/v1/types.go @@ -257,7 +257,7 @@ type PodFailurePolicy struct { type SuccessPolicy struct { // rules represents the list of alternative rules for the declaring the Jobs // as successful before `.status.succeeded >= .spec.completions`. Once any of the rules are met, - // the "SucceededCriteriaMet" condition is added, and the lingering pods are removed. + // the "SuccessCriteriaMet" condition is added, and the lingering pods are removed. // The terminal state for such a Job has the "Complete" condition. // Additionally, these rules are evaluated in order; Once the Job meets one of the rules, // other rules are ignored. At most 20 elements are allowed. diff --git a/batch/v1/types_swagger_doc_generated.go b/batch/v1/types_swagger_doc_generated.go index b1b1e1283d..5ec3d7fec6 100644 --- a/batch/v1/types_swagger_doc_generated.go +++ b/batch/v1/types_swagger_doc_generated.go @@ -206,7 +206,7 @@ func (PodFailurePolicyRule) SwaggerDoc() map[string]string { var map_SuccessPolicy = map[string]string{ "": "SuccessPolicy describes when a Job can be declared as succeeded based on the success of some indexes.", - "rules": "rules represents the list of alternative rules for the declaring the Jobs as successful before `.status.succeeded >= .spec.completions`. Once any of the rules are met, the \"SucceededCriteriaMet\" condition is added, and the lingering pods are removed. The terminal state for such a Job has the \"Complete\" condition. Additionally, these rules are evaluated in order; Once the Job meets one of the rules, other rules are ignored. At most 20 elements are allowed.", + "rules": "rules represents the list of alternative rules for the declaring the Jobs as successful before `.status.succeeded >= .spec.completions`. Once any of the rules are met, the \"SuccessCriteriaMet\" condition is added, and the lingering pods are removed. The terminal state for such a Job has the \"Complete\" condition. Additionally, these rules are evaluated in order; Once the Job meets one of the rules, other rules are ignored. At most 20 elements are allowed.", } func (SuccessPolicy) SwaggerDoc() map[string]string { From acb312cc734c14122100065d95c855780bd69b33 Mon Sep 17 00:00:00 2001 From: Niraj Yadav Date: Thu, 24 Apr 2025 12:43:04 +0530 Subject: [PATCH 012/100] api: Fix typo in word "immediately" In v1beta2 apps types, "immediately" is misspelled as "immediatedly", this patch corrects that typo. Signed-off-by: Niraj Yadav Kubernetes-commit: 2e98d87c561e614dd948653ec0eb3def9568fa74 --- apps/v1/generated.proto | 2 +- apps/v1/types.go | 2 +- apps/v1/types_swagger_doc_generated.go | 2 +- apps/v1beta2/generated.proto | 2 +- apps/v1beta2/types.go | 2 +- apps/v1beta2/types_swagger_doc_generated.go | 2 +- extensions/v1beta1/generated.proto | 2 +- extensions/v1beta1/types.go | 2 +- extensions/v1beta1/types_swagger_doc_generated.go | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/apps/v1/generated.proto b/apps/v1/generated.proto index 38c8997e99..5885a62225 100644 --- a/apps/v1/generated.proto +++ b/apps/v1/generated.proto @@ -530,7 +530,7 @@ message RollingUpdateDaemonSet { // pod is available (Ready for at least minReadySeconds) the old DaemonSet pod // on that node is marked deleted. If the old pod becomes unavailable for any // reason (Ready transitions to false, is evicted, or is drained) an updated - // pod is immediatedly created on that node without considering surge limits. + // pod is immediately created on that node without considering surge limits. // Allowing surge implies the possibility that the resources consumed by the // daemonset on any given node can double if the readiness check fails, and // so resource intensive daemonsets should take into account that they may diff --git a/apps/v1/types.go b/apps/v1/types.go index 1362d875d8..4cf54cc99b 100644 --- a/apps/v1/types.go +++ b/apps/v1/types.go @@ -635,7 +635,7 @@ type RollingUpdateDaemonSet struct { // pod is available (Ready for at least minReadySeconds) the old DaemonSet pod // on that node is marked deleted. If the old pod becomes unavailable for any // reason (Ready transitions to false, is evicted, or is drained) an updated - // pod is immediatedly created on that node without considering surge limits. + // pod is immediately created on that node without considering surge limits. // Allowing surge implies the possibility that the resources consumed by the // daemonset on any given node can double if the readiness check fails, and // so resource intensive daemonsets should take into account that they may diff --git a/apps/v1/types_swagger_doc_generated.go b/apps/v1/types_swagger_doc_generated.go index f44ba7bc33..ac54033fd6 100644 --- a/apps/v1/types_swagger_doc_generated.go +++ b/apps/v1/types_swagger_doc_generated.go @@ -265,7 +265,7 @@ func (ReplicaSetStatus) SwaggerDoc() map[string]string { var map_RollingUpdateDaemonSet = map[string]string{ "": "Spec to control the desired behavior of daemon set rolling update.", "maxUnavailable": "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0 if MaxSurge is 0 Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update.", - "maxSurge": "The maximum number of nodes with an existing available DaemonSet pod that can have an updated DaemonSet pod during during an update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up to a minimum of 1. Default value is 0. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their a new pod created before the old pod is marked as deleted. The update starts by launching new pods on 30% of nodes. Once an updated pod is available (Ready for at least minReadySeconds) the old DaemonSet pod on that node is marked deleted. If the old pod becomes unavailable for any reason (Ready transitions to false, is evicted, or is drained) an updated pod is immediatedly created on that node without considering surge limits. Allowing surge implies the possibility that the resources consumed by the daemonset on any given node can double if the readiness check fails, and so resource intensive daemonsets should take into account that they may cause evictions during disruption.", + "maxSurge": "The maximum number of nodes with an existing available DaemonSet pod that can have an updated DaemonSet pod during during an update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up to a minimum of 1. Default value is 0. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their a new pod created before the old pod is marked as deleted. The update starts by launching new pods on 30% of nodes. Once an updated pod is available (Ready for at least minReadySeconds) the old DaemonSet pod on that node is marked deleted. If the old pod becomes unavailable for any reason (Ready transitions to false, is evicted, or is drained) an updated pod is immediately created on that node without considering surge limits. Allowing surge implies the possibility that the resources consumed by the daemonset on any given node can double if the readiness check fails, and so resource intensive daemonsets should take into account that they may cause evictions during disruption.", } func (RollingUpdateDaemonSet) SwaggerDoc() map[string]string { diff --git a/apps/v1beta2/generated.proto b/apps/v1beta2/generated.proto index 68c463e257..29980012ea 100644 --- a/apps/v1beta2/generated.proto +++ b/apps/v1beta2/generated.proto @@ -536,7 +536,7 @@ message RollingUpdateDaemonSet { // pod is available (Ready for at least minReadySeconds) the old DaemonSet pod // on that node is marked deleted. If the old pod becomes unavailable for any // reason (Ready transitions to false, is evicted, or is drained) an updated - // pod is immediatedly created on that node without considering surge limits. + // pod is immediately created on that node without considering surge limits. // Allowing surge implies the possibility that the resources consumed by the // daemonset on any given node can double if the readiness check fails, and // so resource intensive daemonsets should take into account that they may diff --git a/apps/v1beta2/types.go b/apps/v1beta2/types.go index 491afc59f5..1472bfd109 100644 --- a/apps/v1beta2/types.go +++ b/apps/v1beta2/types.go @@ -681,7 +681,7 @@ type RollingUpdateDaemonSet struct { // pod is available (Ready for at least minReadySeconds) the old DaemonSet pod // on that node is marked deleted. If the old pod becomes unavailable for any // reason (Ready transitions to false, is evicted, or is drained) an updated - // pod is immediatedly created on that node without considering surge limits. + // pod is immediately created on that node without considering surge limits. // Allowing surge implies the possibility that the resources consumed by the // daemonset on any given node can double if the readiness check fails, and // so resource intensive daemonsets should take into account that they may diff --git a/apps/v1beta2/types_swagger_doc_generated.go b/apps/v1beta2/types_swagger_doc_generated.go index 4089434151..34d80af58d 100644 --- a/apps/v1beta2/types_swagger_doc_generated.go +++ b/apps/v1beta2/types_swagger_doc_generated.go @@ -265,7 +265,7 @@ func (ReplicaSetStatus) SwaggerDoc() map[string]string { var map_RollingUpdateDaemonSet = map[string]string{ "": "Spec to control the desired behavior of daemon set rolling update.", "maxUnavailable": "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0 if MaxSurge is 0 Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update.", - "maxSurge": "The maximum number of nodes with an existing available DaemonSet pod that can have an updated DaemonSet pod during during an update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up to a minimum of 1. Default value is 0. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their a new pod created before the old pod is marked as deleted. The update starts by launching new pods on 30% of nodes. Once an updated pod is available (Ready for at least minReadySeconds) the old DaemonSet pod on that node is marked deleted. If the old pod becomes unavailable for any reason (Ready transitions to false, is evicted, or is drained) an updated pod is immediatedly created on that node without considering surge limits. Allowing surge implies the possibility that the resources consumed by the daemonset on any given node can double if the readiness check fails, and so resource intensive daemonsets should take into account that they may cause evictions during disruption.", + "maxSurge": "The maximum number of nodes with an existing available DaemonSet pod that can have an updated DaemonSet pod during during an update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up to a minimum of 1. Default value is 0. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their a new pod created before the old pod is marked as deleted. The update starts by launching new pods on 30% of nodes. Once an updated pod is available (Ready for at least minReadySeconds) the old DaemonSet pod on that node is marked deleted. If the old pod becomes unavailable for any reason (Ready transitions to false, is evicted, or is drained) an updated pod is immediately created on that node without considering surge limits. Allowing surge implies the possibility that the resources consumed by the daemonset on any given node can double if the readiness check fails, and so resource intensive daemonsets should take into account that they may cause evictions during disruption.", } func (RollingUpdateDaemonSet) SwaggerDoc() map[string]string { diff --git a/extensions/v1beta1/generated.proto b/extensions/v1beta1/generated.proto index 70fcec0cc5..0aa5a2ab4c 100644 --- a/extensions/v1beta1/generated.proto +++ b/extensions/v1beta1/generated.proto @@ -980,7 +980,7 @@ message RollingUpdateDaemonSet { // pod is available (Ready for at least minReadySeconds) the old DaemonSet pod // on that node is marked deleted. If the old pod becomes unavailable for any // reason (Ready transitions to false, is evicted, or is drained) an updated - // pod is immediatedly created on that node without considering surge limits. + // pod is immediately created on that node without considering surge limits. // Allowing surge implies the possibility that the resources consumed by the // daemonset on any given node can double if the readiness check fails, and // so resource intensive daemonsets should take into account that they may diff --git a/extensions/v1beta1/types.go b/extensions/v1beta1/types.go index b80a7a7e16..2118f409a9 100644 --- a/extensions/v1beta1/types.go +++ b/extensions/v1beta1/types.go @@ -398,7 +398,7 @@ type RollingUpdateDaemonSet struct { // pod is available (Ready for at least minReadySeconds) the old DaemonSet pod // on that node is marked deleted. If the old pod becomes unavailable for any // reason (Ready transitions to false, is evicted, or is drained) an updated - // pod is immediatedly created on that node without considering surge limits. + // pod is immediately created on that node without considering surge limits. // Allowing surge implies the possibility that the resources consumed by the // daemonset on any given node can double if the readiness check fails, and // so resource intensive daemonsets should take into account that they may diff --git a/extensions/v1beta1/types_swagger_doc_generated.go b/extensions/v1beta1/types_swagger_doc_generated.go index 923fab3aa1..8a158233ef 100644 --- a/extensions/v1beta1/types_swagger_doc_generated.go +++ b/extensions/v1beta1/types_swagger_doc_generated.go @@ -482,7 +482,7 @@ func (RollbackConfig) SwaggerDoc() map[string]string { var map_RollingUpdateDaemonSet = map[string]string{ "": "Spec to control the desired behavior of daemon set rolling update.", "maxUnavailable": "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0 if MaxSurge is 0 Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update.", - "maxSurge": "The maximum number of nodes with an existing available DaemonSet pod that can have an updated DaemonSet pod during during an update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up to a minimum of 1. Default value is 0. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their a new pod created before the old pod is marked as deleted. The update starts by launching new pods on 30% of nodes. Once an updated pod is available (Ready for at least minReadySeconds) the old DaemonSet pod on that node is marked deleted. If the old pod becomes unavailable for any reason (Ready transitions to false, is evicted, or is drained) an updated pod is immediatedly created on that node without considering surge limits. Allowing surge implies the possibility that the resources consumed by the daemonset on any given node can double if the readiness check fails, and so resource intensive daemonsets should take into account that they may cause evictions during disruption. This is an alpha field and requires enabling DaemonSetUpdateSurge feature gate.", + "maxSurge": "The maximum number of nodes with an existing available DaemonSet pod that can have an updated DaemonSet pod during during an update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up to a minimum of 1. Default value is 0. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their a new pod created before the old pod is marked as deleted. The update starts by launching new pods on 30% of nodes. Once an updated pod is available (Ready for at least minReadySeconds) the old DaemonSet pod on that node is marked deleted. If the old pod becomes unavailable for any reason (Ready transitions to false, is evicted, or is drained) an updated pod is immediately created on that node without considering surge limits. Allowing surge implies the possibility that the resources consumed by the daemonset on any given node can double if the readiness check fails, and so resource intensive daemonsets should take into account that they may cause evictions during disruption. This is an alpha field and requires enabling DaemonSetUpdateSurge feature gate.", } func (RollingUpdateDaemonSet) SwaggerDoc() map[string]string { From 17e2a2830dee384786475c97d1ce1f8a7ce08b8b Mon Sep 17 00:00:00 2001 From: Benjamin Elder Date: Thu, 24 Apr 2025 15:38:41 -0700 Subject: [PATCH 013/100] enable dep-approvers for staging go.mod/go.sum NOTE: to use filters, _all_ entries must be under filters https://go.k8s.io/owners/#filters Kubernetes-commit: 187b43d5ada2321bf1ef0c8f0d1f4af83c4e9386 --- OWNERS | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/OWNERS b/OWNERS index 92c1f5627a..9a58553856 100644 --- a/OWNERS +++ b/OWNERS @@ -4,11 +4,20 @@ options: no_parent_owners: true filters: + # to use filters all entries must be under filters https://go.k8s.io/owners/#filters + # use .* for approvers that should have all files ".*": approvers: - api-approvers reviewers: - api-reviewers + # go.{mod,sum} files relate to go dependencies, and should be reviewed by the + # dep-approvers + "go\\.(mod|sum)$": + approvers: + - dep-approvers + reviewers: + - dep-reviewers # only auto-label go file changes as kind/api-change "\\.go$": labels: From 9aab596060e18489496e1a0339c5700295c62e4e Mon Sep 17 00:00:00 2001 From: Kubernetes Publisher Date: Thu, 24 Apr 2025 19:14:31 -0700 Subject: [PATCH 014/100] Merge pull request #131456 from BenTheElder/staging-dep-approvers enable dep-approvers for staging go.mod/go.sum Kubernetes-commit: 616d6d4e75df54841ad2a27f68b7d88c207f4203 From 94f0cf30cd959ac2d1fb9bc5411c34e5f7fdf573 Mon Sep 17 00:00:00 2001 From: Paco Xu Date: Fri, 25 Apr 2025 15:49:16 +0800 Subject: [PATCH 015/100] Add v1.33.0 API testdata Kubernetes-commit: 86a43f4b539bef8626239d49ee6e95ed9c499514 --- .../admission.k8s.io.v1.AdmissionReview.json | 113 + .../admission.k8s.io.v1.AdmissionReview.pb | Bin 0 -> 973 bytes .../admission.k8s.io.v1.AdmissionReview.yaml | 84 + ...ission.k8s.io.v1beta1.AdmissionReview.json | 113 + ...dmission.k8s.io.v1beta1.AdmissionReview.pb | Bin 0 -> 978 bytes ...ission.k8s.io.v1beta1.AdmissionReview.yaml | 84 + ...8s.io.v1.MutatingWebhookConfiguration.json | 120 + ....k8s.io.v1.MutatingWebhookConfiguration.pb | Bin 0 -> 884 bytes ...8s.io.v1.MutatingWebhookConfiguration.yaml | 80 + ...n.k8s.io.v1.ValidatingAdmissionPolicy.json | 171 ++ ...ion.k8s.io.v1.ValidatingAdmissionPolicy.pb | Bin 0 -> 1134 bytes ...n.k8s.io.v1.ValidatingAdmissionPolicy.yaml | 108 + ...o.v1.ValidatingAdmissionPolicyBinding.json | 142 ++ ....io.v1.ValidatingAdmissionPolicyBinding.pb | Bin 0 -> 1004 bytes ...o.v1.ValidatingAdmissionPolicyBinding.yaml | 92 + ....io.v1.ValidatingWebhookConfiguration.json | 119 + ...8s.io.v1.ValidatingWebhookConfiguration.pb | Bin 0 -> 861 bytes ....io.v1.ValidatingWebhookConfiguration.yaml | 79 + ...s.io.v1alpha1.MutatingAdmissionPolicy.json | 148 ++ ...k8s.io.v1alpha1.MutatingAdmissionPolicy.pb | Bin 0 -> 1013 bytes ...s.io.v1alpha1.MutatingAdmissionPolicy.yaml | 94 + ...alpha1.MutatingAdmissionPolicyBinding.json | 139 ++ ...v1alpha1.MutatingAdmissionPolicyBinding.pb | Bin 0 -> 984 bytes ...alpha1.MutatingAdmissionPolicyBinding.yaml | 90 + ...io.v1alpha1.ValidatingAdmissionPolicy.json | 171 ++ ...s.io.v1alpha1.ValidatingAdmissionPolicy.pb | Bin 0 -> 1140 bytes ...io.v1alpha1.ValidatingAdmissionPolicy.yaml | 108 + ...pha1.ValidatingAdmissionPolicyBinding.json | 142 ++ ...alpha1.ValidatingAdmissionPolicyBinding.pb | Bin 0 -> 1010 bytes ...pha1.ValidatingAdmissionPolicyBinding.yaml | 92 + ....v1beta1.MutatingWebhookConfiguration.json | 120 + ...io.v1beta1.MutatingWebhookConfiguration.pb | Bin 0 -> 889 bytes ....v1beta1.MutatingWebhookConfiguration.yaml | 80 + ....io.v1beta1.ValidatingAdmissionPolicy.json | 171 ++ ...8s.io.v1beta1.ValidatingAdmissionPolicy.pb | Bin 0 -> 1139 bytes ....io.v1beta1.ValidatingAdmissionPolicy.yaml | 108 + ...eta1.ValidatingAdmissionPolicyBinding.json | 142 ++ ...1beta1.ValidatingAdmissionPolicyBinding.pb | Bin 0 -> 1009 bytes ...eta1.ValidatingAdmissionPolicyBinding.yaml | 92 + ...1beta1.ValidatingWebhookConfiguration.json | 119 + ....v1beta1.ValidatingWebhookConfiguration.pb | Bin 0 -> 866 bytes ...1beta1.ValidatingWebhookConfiguration.yaml | 79 + ...discovery.k8s.io.v2.APIGroupDiscovery.json | 93 + ...pidiscovery.k8s.io.v2.APIGroupDiscovery.pb | Bin 0 -> 692 bytes ...discovery.k8s.io.v2.APIGroupDiscovery.yaml | 63 + ...very.k8s.io.v2beta1.APIGroupDiscovery.json | 93 + ...covery.k8s.io.v2beta1.APIGroupDiscovery.pb | Bin 0 -> 697 bytes ...very.k8s.io.v2beta1.APIGroupDiscovery.yaml | 63 + .../v1.33.0/apps.v1.ControllerRevision.json | 57 + .../v1.33.0/apps.v1.ControllerRevision.pb | Bin 0 -> 501 bytes .../v1.33.0/apps.v1.ControllerRevision.yaml | 42 + testdata/v1.33.0/apps.v1.DaemonSet.json | 1819 +++++++++++++++ testdata/v1.33.0/apps.v1.DaemonSet.pb | Bin 0 -> 11057 bytes testdata/v1.33.0/apps.v1.DaemonSet.yaml | 1249 ++++++++++ testdata/v1.33.0/apps.v1.Deployment.json | 1822 +++++++++++++++ testdata/v1.33.0/apps.v1.Deployment.pb | Bin 0 -> 11072 bytes testdata/v1.33.0/apps.v1.Deployment.yaml | 1252 ++++++++++ testdata/v1.33.0/apps.v1.ReplicaSet.json | 1809 +++++++++++++++ testdata/v1.33.0/apps.v1.ReplicaSet.pb | Bin 0 -> 10989 bytes testdata/v1.33.0/apps.v1.ReplicaSet.yaml | 1241 ++++++++++ testdata/v1.33.0/apps.v1.StatefulSet.json | 1947 ++++++++++++++++ testdata/v1.33.0/apps.v1.StatefulSet.pb | Bin 0 -> 12158 bytes testdata/v1.33.0/apps.v1.StatefulSet.yaml | 1340 +++++++++++ .../apps.v1beta1.ControllerRevision.json | 57 + .../apps.v1beta1.ControllerRevision.pb | Bin 0 -> 506 bytes .../apps.v1beta1.ControllerRevision.yaml | 42 + testdata/v1.33.0/apps.v1beta1.Deployment.json | 1825 +++++++++++++++ testdata/v1.33.0/apps.v1beta1.Deployment.pb | Bin 0 -> 11081 bytes testdata/v1.33.0/apps.v1beta1.Deployment.yaml | 1254 ++++++++++ .../apps.v1beta1.DeploymentRollback.json | 11 + .../apps.v1beta1.DeploymentRollback.pb | Bin 0 -> 111 bytes .../apps.v1beta1.DeploymentRollback.yaml | 7 + testdata/v1.33.0/apps.v1beta1.Scale.json | 56 + testdata/v1.33.0/apps.v1beta1.Scale.pb | Bin 0 -> 448 bytes testdata/v1.33.0/apps.v1beta1.Scale.yaml | 41 + .../v1.33.0/apps.v1beta1.StatefulSet.json | 1947 ++++++++++++++++ testdata/v1.33.0/apps.v1beta1.StatefulSet.pb | Bin 0 -> 12163 bytes .../v1.33.0/apps.v1beta1.StatefulSet.yaml | 1340 +++++++++++ .../apps.v1beta2.ControllerRevision.json | 57 + .../apps.v1beta2.ControllerRevision.pb | Bin 0 -> 506 bytes .../apps.v1beta2.ControllerRevision.yaml | 42 + testdata/v1.33.0/apps.v1beta2.DaemonSet.json | 1819 +++++++++++++++ testdata/v1.33.0/apps.v1beta2.DaemonSet.pb | Bin 0 -> 11062 bytes testdata/v1.33.0/apps.v1beta2.DaemonSet.yaml | 1249 ++++++++++ testdata/v1.33.0/apps.v1beta2.Deployment.json | 1822 +++++++++++++++ testdata/v1.33.0/apps.v1beta2.Deployment.pb | Bin 0 -> 11077 bytes testdata/v1.33.0/apps.v1beta2.Deployment.yaml | 1252 ++++++++++ testdata/v1.33.0/apps.v1beta2.ReplicaSet.json | 1809 +++++++++++++++ testdata/v1.33.0/apps.v1beta2.ReplicaSet.pb | Bin 0 -> 10994 bytes testdata/v1.33.0/apps.v1beta2.ReplicaSet.yaml | 1241 ++++++++++ testdata/v1.33.0/apps.v1beta2.Scale.json | 56 + testdata/v1.33.0/apps.v1beta2.Scale.pb | Bin 0 -> 448 bytes testdata/v1.33.0/apps.v1beta2.Scale.yaml | 41 + .../v1.33.0/apps.v1beta2.StatefulSet.json | 1947 ++++++++++++++++ testdata/v1.33.0/apps.v1beta2.StatefulSet.pb | Bin 0 -> 12163 bytes .../v1.33.0/apps.v1beta2.StatefulSet.yaml | 1340 +++++++++++ ...ntication.k8s.io.v1.SelfSubjectReview.json | 60 + ...hentication.k8s.io.v1.SelfSubjectReview.pb | Bin 0 -> 481 bytes ...ntication.k8s.io.v1.SelfSubjectReview.yaml | 43 + ...authentication.k8s.io.v1.TokenRequest.json | 62 + .../authentication.k8s.io.v1.TokenRequest.pb | Bin 0 -> 503 bytes ...authentication.k8s.io.v1.TokenRequest.yaml | 46 + .../authentication.k8s.io.v1.TokenReview.json | 71 + .../authentication.k8s.io.v1.TokenReview.pb | Bin 0 -> 535 bytes .../authentication.k8s.io.v1.TokenReview.yaml | 51 + ...tion.k8s.io.v1beta1.SelfSubjectReview.json | 60 + ...cation.k8s.io.v1beta1.SelfSubjectReview.pb | Bin 0 -> 486 bytes ...tion.k8s.io.v1beta1.SelfSubjectReview.yaml | 43 + ...entication.k8s.io.v1beta1.TokenReview.json | 71 + ...thentication.k8s.io.v1beta1.TokenReview.pb | Bin 0 -> 540 bytes ...entication.k8s.io.v1beta1.TokenReview.yaml | 51 + ...on.k8s.io.v1.LocalSubjectAccessReview.json | 101 + ...tion.k8s.io.v1.LocalSubjectAccessReview.pb | Bin 0 -> 767 bytes ...on.k8s.io.v1.LocalSubjectAccessReview.yaml | 72 + ...ion.k8s.io.v1.SelfSubjectAccessReview.json | 91 + ...ation.k8s.io.v1.SelfSubjectAccessReview.pb | Bin 0 -> 706 bytes ...ion.k8s.io.v1.SelfSubjectAccessReview.yaml | 65 + ...tion.k8s.io.v1.SelfSubjectRulesReview.json | 79 + ...zation.k8s.io.v1.SelfSubjectRulesReview.pb | Bin 0 -> 563 bytes ...tion.k8s.io.v1.SelfSubjectRulesReview.yaml | 53 + ...ization.k8s.io.v1.SubjectAccessReview.json | 101 + ...orization.k8s.io.v1.SubjectAccessReview.pb | Bin 0 -> 762 bytes ...ization.k8s.io.v1.SubjectAccessReview.yaml | 72 + ...s.io.v1beta1.LocalSubjectAccessReview.json | 101 + ...k8s.io.v1beta1.LocalSubjectAccessReview.pb | Bin 0 -> 771 bytes ...s.io.v1beta1.LocalSubjectAccessReview.yaml | 72 + ...8s.io.v1beta1.SelfSubjectAccessReview.json | 91 + ....k8s.io.v1beta1.SelfSubjectAccessReview.pb | Bin 0 -> 711 bytes ...8s.io.v1beta1.SelfSubjectAccessReview.yaml | 65 + ...k8s.io.v1beta1.SelfSubjectRulesReview.json | 79 + ...n.k8s.io.v1beta1.SelfSubjectRulesReview.pb | Bin 0 -> 568 bytes ...k8s.io.v1beta1.SelfSubjectRulesReview.yaml | 53 + ...on.k8s.io.v1beta1.SubjectAccessReview.json | 101 + ...tion.k8s.io.v1beta1.SubjectAccessReview.pb | Bin 0 -> 766 bytes ...on.k8s.io.v1beta1.SubjectAccessReview.yaml | 72 + ...utoscaling.v1.HorizontalPodAutoscaler.json | 63 + .../autoscaling.v1.HorizontalPodAutoscaler.pb | Bin 0 -> 478 bytes ...utoscaling.v1.HorizontalPodAutoscaler.yaml | 48 + testdata/v1.33.0/autoscaling.v1.Scale.json | 53 + testdata/v1.33.0/autoscaling.v1.Scale.pb | Bin 0 -> 414 bytes testdata/v1.33.0/autoscaling.v1.Scale.yaml | 39 + ...utoscaling.v2.HorizontalPodAutoscaler.json | 299 +++ .../autoscaling.v2.HorizontalPodAutoscaler.pb | Bin 0 -> 1580 bytes ...utoscaling.v2.HorizontalPodAutoscaler.yaml | 202 ++ ...aling.v2beta1.HorizontalPodAutoscaler.json | 224 ++ ...scaling.v2beta1.HorizontalPodAutoscaler.pb | Bin 0 -> 1400 bytes ...aling.v2beta1.HorizontalPodAutoscaler.yaml | 152 ++ ...aling.v2beta2.HorizontalPodAutoscaler.json | 297 +++ ...scaling.v2beta2.HorizontalPodAutoscaler.pb | Bin 0 -> 1575 bytes ...aling.v2beta2.HorizontalPodAutoscaler.yaml | 200 ++ testdata/v1.33.0/batch.v1.CronJob.json | 1898 +++++++++++++++ testdata/v1.33.0/batch.v1.CronJob.pb | Bin 0 -> 11650 bytes testdata/v1.33.0/batch.v1.CronJob.yaml | 1305 +++++++++++ testdata/v1.33.0/batch.v1.Job.json | 1859 +++++++++++++++ testdata/v1.33.0/batch.v1.Job.pb | Bin 0 -> 11276 bytes testdata/v1.33.0/batch.v1.Job.yaml | 1275 ++++++++++ testdata/v1.33.0/batch.v1beta1.CronJob.json | 1898 +++++++++++++++ testdata/v1.33.0/batch.v1beta1.CronJob.pb | Bin 0 -> 11655 bytes testdata/v1.33.0/batch.v1beta1.CronJob.yaml | 1305 +++++++++++ ...s.k8s.io.v1.CertificateSigningRequest.json | 77 + ...tes.k8s.io.v1.CertificateSigningRequest.pb | Bin 0 -> 598 bytes ...s.k8s.io.v1.CertificateSigningRequest.yaml | 56 + ...es.k8s.io.v1alpha1.ClusterTrustBundle.json | 50 + ...ates.k8s.io.v1alpha1.ClusterTrustBundle.pb | Bin 0 -> 455 bytes ...es.k8s.io.v1alpha1.ClusterTrustBundle.yaml | 37 + ....io.v1beta1.CertificateSigningRequest.json | 77 + ...8s.io.v1beta1.CertificateSigningRequest.pb | Bin 0 -> 603 bytes ....io.v1beta1.CertificateSigningRequest.yaml | 56 + ...tes.k8s.io.v1beta1.ClusterTrustBundle.json | 50 + ...cates.k8s.io.v1beta1.ClusterTrustBundle.pb | Bin 0 -> 454 bytes ...tes.k8s.io.v1beta1.ClusterTrustBundle.yaml | 37 + .../v1.33.0/coordination.k8s.io.v1.Lease.json | 55 + .../v1.33.0/coordination.k8s.io.v1.Lease.pb | Bin 0 -> 485 bytes .../v1.33.0/coordination.k8s.io.v1.Lease.yaml | 42 + ...nation.k8s.io.v1alpha2.LeaseCandidate.json | 54 + ...dination.k8s.io.v1alpha2.LeaseCandidate.pb | Bin 0 -> 512 bytes ...nation.k8s.io.v1alpha2.LeaseCandidate.yaml | 41 + .../coordination.k8s.io.v1beta1.Lease.json | 55 + .../coordination.k8s.io.v1beta1.Lease.pb | Bin 0 -> 490 bytes .../coordination.k8s.io.v1beta1.Lease.yaml | 42 + ...ination.k8s.io.v1beta1.LeaseCandidate.json | 54 + ...rdination.k8s.io.v1beta1.LeaseCandidate.pb | Bin 0 -> 511 bytes ...ination.k8s.io.v1beta1.LeaseCandidate.yaml | 41 + testdata/v1.33.0/core.v1.APIGroup.json | 21 + testdata/v1.33.0/core.v1.APIGroup.pb | Bin 0 -> 146 bytes testdata/v1.33.0/core.v1.APIGroup.yaml | 12 + testdata/v1.33.0/core.v1.APIVersions.json | 13 + testdata/v1.33.0/core.v1.APIVersions.pb | Bin 0 -> 83 bytes testdata/v1.33.0/core.v1.APIVersions.yaml | 7 + testdata/v1.33.0/core.v1.Binding.json | 55 + testdata/v1.33.0/core.v1.Binding.pb | Bin 0 -> 486 bytes testdata/v1.33.0/core.v1.Binding.yaml | 42 + testdata/v1.33.0/core.v1.ComponentStatus.json | 54 + testdata/v1.33.0/core.v1.ComponentStatus.pb | Bin 0 -> 441 bytes testdata/v1.33.0/core.v1.ComponentStatus.yaml | 39 + testdata/v1.33.0/core.v1.ConfigMap.json | 53 + testdata/v1.33.0/core.v1.ConfigMap.pb | Bin 0 -> 427 bytes testdata/v1.33.0/core.v1.ConfigMap.yaml | 39 + testdata/v1.33.0/core.v1.CreateOptions.json | 9 + testdata/v1.33.0/core.v1.CreateOptions.pb | Bin 0 -> 85 bytes testdata/v1.33.0/core.v1.CreateOptions.yaml | 6 + testdata/v1.33.0/core.v1.DeleteOptions.json | 15 + testdata/v1.33.0/core.v1.DeleteOptions.pb | Bin 0 -> 108 bytes testdata/v1.33.0/core.v1.DeleteOptions.yaml | 11 + testdata/v1.33.0/core.v1.Endpoints.json | 90 + testdata/v1.33.0/core.v1.Endpoints.pb | Bin 0 -> 728 bytes testdata/v1.33.0/core.v1.Endpoints.yaml | 64 + testdata/v1.33.0/core.v1.Event.json | 82 + testdata/v1.33.0/core.v1.Event.pb | Bin 0 -> 766 bytes testdata/v1.33.0/core.v1.Event.yaml | 66 + testdata/v1.33.0/core.v1.GetOptions.json | 5 + testdata/v1.33.0/core.v1.GetOptions.pb | Bin 0 -> 50 bytes testdata/v1.33.0/core.v1.GetOptions.yaml | 3 + testdata/v1.33.0/core.v1.LimitRange.json | 68 + testdata/v1.33.0/core.v1.LimitRange.pb | Bin 0 -> 506 bytes testdata/v1.33.0/core.v1.LimitRange.yaml | 47 + testdata/v1.33.0/core.v1.ListOptions.json | 14 + testdata/v1.33.0/core.v1.ListOptions.pb | Bin 0 -> 143 bytes testdata/v1.33.0/core.v1.ListOptions.yaml | 12 + testdata/v1.33.0/core.v1.Namespace.json | 63 + testdata/v1.33.0/core.v1.Namespace.pb | Bin 0 -> 479 bytes testdata/v1.33.0/core.v1.Namespace.yaml | 45 + testdata/v1.33.0/core.v1.Node.json | 176 ++ testdata/v1.33.0/core.v1.Node.pb | Bin 0 -> 1306 bytes testdata/v1.33.0/core.v1.Node.yaml | 124 + .../v1.33.0/core.v1.NodeProxyOptions.json | 5 + testdata/v1.33.0/core.v1.NodeProxyOptions.pb | Bin 0 -> 45 bytes .../v1.33.0/core.v1.NodeProxyOptions.yaml | 3 + testdata/v1.33.0/core.v1.PatchOptions.json | 10 + testdata/v1.33.0/core.v1.PatchOptions.pb | Bin 0 -> 86 bytes testdata/v1.33.0/core.v1.PatchOptions.yaml | 7 + .../v1.33.0/core.v1.PersistentVolume.json | 311 +++ testdata/v1.33.0/core.v1.PersistentVolume.pb | Bin 0 -> 2470 bytes .../v1.33.0/core.v1.PersistentVolume.yaml | 239 ++ .../core.v1.PersistentVolumeClaim.json | 118 + .../v1.33.0/core.v1.PersistentVolumeClaim.pb | Bin 0 -> 1029 bytes .../core.v1.PersistentVolumeClaim.yaml | 84 + testdata/v1.33.0/core.v1.Pod.json | 2048 +++++++++++++++++ testdata/v1.33.0/core.v1.Pod.pb | Bin 0 -> 12272 bytes testdata/v1.33.0/core.v1.Pod.yaml | 1399 +++++++++++ .../v1.33.0/core.v1.PodAttachOptions.json | 9 + testdata/v1.33.0/core.v1.PodAttachOptions.pb | Bin 0 -> 58 bytes .../v1.33.0/core.v1.PodAttachOptions.yaml | 7 + testdata/v1.33.0/core.v1.PodExecOptions.json | 12 + testdata/v1.33.0/core.v1.PodExecOptions.pb | Bin 0 -> 70 bytes testdata/v1.33.0/core.v1.PodExecOptions.yaml | 9 + testdata/v1.33.0/core.v1.PodLogOptions.json | 14 + testdata/v1.33.0/core.v1.PodLogOptions.pb | Bin 0 -> 84 bytes testdata/v1.33.0/core.v1.PodLogOptions.yaml | 12 + .../core.v1.PodPortForwardOptions.json | 7 + .../v1.33.0/core.v1.PodPortForwardOptions.pb | Bin 0 -> 41 bytes .../core.v1.PodPortForwardOptions.yaml | 4 + testdata/v1.33.0/core.v1.PodProxyOptions.json | 5 + testdata/v1.33.0/core.v1.PodProxyOptions.pb | Bin 0 -> 44 bytes testdata/v1.33.0/core.v1.PodProxyOptions.yaml | 3 + testdata/v1.33.0/core.v1.PodStatusResult.json | 364 +++ testdata/v1.33.0/core.v1.PodStatusResult.pb | Bin 0 -> 2204 bytes testdata/v1.33.0/core.v1.PodStatusResult.yaml | 249 ++ testdata/v1.33.0/core.v1.PodTemplate.json | 1774 ++++++++++++++ testdata/v1.33.0/core.v1.PodTemplate.pb | Bin 0 -> 10823 bytes testdata/v1.33.0/core.v1.PodTemplate.yaml | 1217 ++++++++++ testdata/v1.33.0/core.v1.RangeAllocation.json | 48 + testdata/v1.33.0/core.v1.RangeAllocation.pb | Bin 0 -> 404 bytes testdata/v1.33.0/core.v1.RangeAllocation.yaml | 36 + .../core.v1.ReplicationController.json | 1797 +++++++++++++++ .../v1.33.0/core.v1.ReplicationController.pb | Bin 0 -> 10945 bytes .../core.v1.ReplicationController.yaml | 1234 ++++++++++ testdata/v1.33.0/core.v1.ResourceQuota.json | 73 + testdata/v1.33.0/core.v1.ResourceQuota.pb | Bin 0 -> 500 bytes testdata/v1.33.0/core.v1.ResourceQuota.yaml | 50 + testdata/v1.33.0/core.v1.Secret.json | 54 + testdata/v1.33.0/core.v1.Secret.pb | Bin 0 -> 441 bytes testdata/v1.33.0/core.v1.Secret.yaml | 40 + .../v1.33.0/core.v1.SerializedReference.json | 13 + .../v1.33.0/core.v1.SerializedReference.pb | Bin 0 -> 142 bytes .../v1.33.0/core.v1.SerializedReference.yaml | 10 + testdata/v1.33.0/core.v1.Service.json | 119 + testdata/v1.33.0/core.v1.Service.pb | Bin 0 -> 945 bytes testdata/v1.33.0/core.v1.Service.yaml | 85 + testdata/v1.33.0/core.v1.ServiceAccount.json | 63 + testdata/v1.33.0/core.v1.ServiceAccount.pb | Bin 0 -> 508 bytes testdata/v1.33.0/core.v1.ServiceAccount.yaml | 45 + .../v1.33.0/core.v1.ServiceProxyOptions.json | 5 + .../v1.33.0/core.v1.ServiceProxyOptions.pb | Bin 0 -> 48 bytes .../v1.33.0/core.v1.ServiceProxyOptions.yaml | 3 + testdata/v1.33.0/core.v1.Status.json | 28 + testdata/v1.33.0/core.v1.Status.pb | Bin 0 -> 212 bytes testdata/v1.33.0/core.v1.Status.yaml | 21 + testdata/v1.33.0/core.v1.UpdateOptions.json | 9 + testdata/v1.33.0/core.v1.UpdateOptions.pb | Bin 0 -> 85 bytes testdata/v1.33.0/core.v1.UpdateOptions.yaml | 6 + testdata/v1.33.0/core.v1.WatchEvent.json | 13 + testdata/v1.33.0/core.v1.WatchEvent.pb | Bin 0 -> 129 bytes testdata/v1.33.0/core.v1.WatchEvent.yaml | 8 + .../discovery.k8s.io.v1.EndpointSlice.json | 94 + .../discovery.k8s.io.v1.EndpointSlice.pb | Bin 0 -> 721 bytes .../discovery.k8s.io.v1.EndpointSlice.yaml | 65 + ...iscovery.k8s.io.v1beta1.EndpointSlice.json | 93 + .../discovery.k8s.io.v1beta1.EndpointSlice.pb | Bin 0 -> 695 bytes ...iscovery.k8s.io.v1beta1.EndpointSlice.yaml | 64 + testdata/v1.33.0/events.k8s.io.v1.Event.json | 82 + testdata/v1.33.0/events.k8s.io.v1.Event.pb | Bin 0 -> 778 bytes testdata/v1.33.0/events.k8s.io.v1.Event.yaml | 66 + .../v1.33.0/events.k8s.io.v1beta1.Event.json | 82 + .../v1.33.0/events.k8s.io.v1beta1.Event.pb | Bin 0 -> 783 bytes .../v1.33.0/events.k8s.io.v1beta1.Event.yaml | 66 + .../v1.33.0/extensions.v1beta1.DaemonSet.json | 1820 +++++++++++++++ .../v1.33.0/extensions.v1beta1.DaemonSet.pb | Bin 0 -> 11070 bytes .../v1.33.0/extensions.v1beta1.DaemonSet.yaml | 1250 ++++++++++ .../extensions.v1beta1.Deployment.json | 1825 +++++++++++++++ .../v1.33.0/extensions.v1beta1.Deployment.pb | Bin 0 -> 11087 bytes .../extensions.v1beta1.Deployment.yaml | 1254 ++++++++++ ...extensions.v1beta1.DeploymentRollback.json | 11 + .../extensions.v1beta1.DeploymentRollback.pb | Bin 0 -> 117 bytes ...extensions.v1beta1.DeploymentRollback.yaml | 7 + .../v1.33.0/extensions.v1beta1.Ingress.json | 105 + .../v1.33.0/extensions.v1beta1.Ingress.pb | Bin 0 -> 726 bytes .../v1.33.0/extensions.v1beta1.Ingress.yaml | 69 + .../extensions.v1beta1.NetworkPolicy.json | 163 ++ .../extensions.v1beta1.NetworkPolicy.pb | Bin 0 -> 950 bytes .../extensions.v1beta1.NetworkPolicy.yaml | 97 + .../extensions.v1beta1.ReplicaSet.json | 1809 +++++++++++++++ .../v1.33.0/extensions.v1beta1.ReplicaSet.pb | Bin 0 -> 11000 bytes .../extensions.v1beta1.ReplicaSet.yaml | 1241 ++++++++++ .../v1.33.0/extensions.v1beta1.Scale.json | 56 + testdata/v1.33.0/extensions.v1beta1.Scale.pb | Bin 0 -> 454 bytes .../v1.33.0/extensions.v1beta1.Scale.yaml | 41 + ...ontrol.apiserver.k8s.io.v1.FlowSchema.json | 112 + ...wcontrol.apiserver.k8s.io.v1.FlowSchema.pb | Bin 0 -> 681 bytes ...ontrol.apiserver.k8s.io.v1.FlowSchema.yaml | 72 + ....k8s.io.v1.PriorityLevelConfiguration.json | 77 + ...er.k8s.io.v1.PriorityLevelConfiguration.pb | Bin 0 -> 542 bytes ....k8s.io.v1.PriorityLevelConfiguration.yaml | 56 + ...l.apiserver.k8s.io.v1beta1.FlowSchema.json | 112 + ...rol.apiserver.k8s.io.v1beta1.FlowSchema.pb | Bin 0 -> 686 bytes ...l.apiserver.k8s.io.v1beta1.FlowSchema.yaml | 72 + ...io.v1beta1.PriorityLevelConfiguration.json | 77 + ...s.io.v1beta1.PriorityLevelConfiguration.pb | Bin 0 -> 547 bytes ...io.v1beta1.PriorityLevelConfiguration.yaml | 56 + ...l.apiserver.k8s.io.v1beta2.FlowSchema.json | 112 + ...rol.apiserver.k8s.io.v1beta2.FlowSchema.pb | Bin 0 -> 686 bytes ...l.apiserver.k8s.io.v1beta2.FlowSchema.yaml | 72 + ...io.v1beta2.PriorityLevelConfiguration.json | 77 + ...s.io.v1beta2.PriorityLevelConfiguration.pb | Bin 0 -> 547 bytes ...io.v1beta2.PriorityLevelConfiguration.yaml | 56 + ...l.apiserver.k8s.io.v1beta3.FlowSchema.json | 112 + ...rol.apiserver.k8s.io.v1beta3.FlowSchema.pb | Bin 0 -> 686 bytes ...l.apiserver.k8s.io.v1beta3.FlowSchema.yaml | 72 + ...io.v1beta3.PriorityLevelConfiguration.json | 77 + ...s.io.v1beta3.PriorityLevelConfiguration.pb | Bin 0 -> 547 bytes ...io.v1beta3.PriorityLevelConfiguration.yaml | 56 + ...agepolicy.k8s.io.v1alpha1.ImageReview.json | 64 + ...imagepolicy.k8s.io.v1alpha1.ImageReview.pb | Bin 0 -> 541 bytes ...agepolicy.k8s.io.v1alpha1.ImageReview.yaml | 45 + ...server.k8s.io.v1alpha1.StorageVersion.json | 72 + ...piserver.k8s.io.v1alpha1.StorageVersion.pb | Bin 0 -> 605 bytes ...server.k8s.io.v1alpha1.StorageVersion.yaml | 51 + .../networking.k8s.io.v1.IPAddress.json | 54 + .../v1.33.0/networking.k8s.io.v1.IPAddress.pb | Bin 0 -> 459 bytes .../networking.k8s.io.v1.IPAddress.yaml | 40 + .../v1.33.0/networking.k8s.io.v1.Ingress.json | 115 + .../v1.33.0/networking.k8s.io.v1.Ingress.pb | Bin 0 -> 700 bytes .../v1.33.0/networking.k8s.io.v1.Ingress.yaml | 75 + .../networking.k8s.io.v1.IngressClass.json | 56 + .../networking.k8s.io.v1.IngressClass.pb | Bin 0 -> 490 bytes .../networking.k8s.io.v1.IngressClass.yaml | 42 + .../networking.k8s.io.v1.NetworkPolicy.json | 163 ++ .../networking.k8s.io.v1.NetworkPolicy.pb | Bin 0 -> 952 bytes .../networking.k8s.io.v1.NetworkPolicy.yaml | 97 + .../networking.k8s.io.v1.ServiceCIDR.json | 63 + .../networking.k8s.io.v1.ServiceCIDR.pb | Bin 0 -> 484 bytes .../networking.k8s.io.v1.ServiceCIDR.yaml | 45 + .../networking.k8s.io.v1alpha1.IPAddress.json | 54 + .../networking.k8s.io.v1alpha1.IPAddress.pb | Bin 0 -> 465 bytes .../networking.k8s.io.v1alpha1.IPAddress.yaml | 40 + ...etworking.k8s.io.v1alpha1.ServiceCIDR.json | 63 + .../networking.k8s.io.v1alpha1.ServiceCIDR.pb | Bin 0 -> 490 bytes ...etworking.k8s.io.v1alpha1.ServiceCIDR.yaml | 45 + .../networking.k8s.io.v1beta1.IPAddress.json | 54 + .../networking.k8s.io.v1beta1.IPAddress.pb | Bin 0 -> 464 bytes .../networking.k8s.io.v1beta1.IPAddress.yaml | 40 + .../networking.k8s.io.v1beta1.Ingress.json | 105 + .../networking.k8s.io.v1beta1.Ingress.pb | Bin 0 -> 733 bytes .../networking.k8s.io.v1beta1.Ingress.yaml | 69 + ...etworking.k8s.io.v1beta1.IngressClass.json | 56 + .../networking.k8s.io.v1beta1.IngressClass.pb | Bin 0 -> 495 bytes ...etworking.k8s.io.v1beta1.IngressClass.yaml | 42 + ...networking.k8s.io.v1beta1.ServiceCIDR.json | 63 + .../networking.k8s.io.v1beta1.ServiceCIDR.pb | Bin 0 -> 489 bytes ...networking.k8s.io.v1beta1.ServiceCIDR.yaml | 45 + .../v1.33.0/node.k8s.io.v1.RuntimeClass.json | 66 + .../v1.33.0/node.k8s.io.v1.RuntimeClass.pb | Bin 0 -> 528 bytes .../v1.33.0/node.k8s.io.v1.RuntimeClass.yaml | 47 + .../node.k8s.io.v1alpha1.RuntimeClass.json | 68 + .../node.k8s.io.v1alpha1.RuntimeClass.pb | Bin 0 -> 544 bytes .../node.k8s.io.v1alpha1.RuntimeClass.yaml | 48 + .../node.k8s.io.v1beta1.RuntimeClass.json | 66 + .../node.k8s.io.v1beta1.RuntimeClass.pb | Bin 0 -> 533 bytes .../node.k8s.io.v1beta1.RuntimeClass.yaml | 47 + testdata/v1.33.0/policy.v1.Eviction.json | 59 + testdata/v1.33.0/policy.v1.Eviction.pb | Bin 0 -> 468 bytes testdata/v1.33.0/policy.v1.Eviction.yaml | 44 + .../policy.v1.PodDisruptionBudget.json | 85 + .../v1.33.0/policy.v1.PodDisruptionBudget.pb | Bin 0 -> 665 bytes .../policy.v1.PodDisruptionBudget.yaml | 61 + testdata/v1.33.0/policy.v1beta1.Eviction.json | 59 + testdata/v1.33.0/policy.v1beta1.Eviction.pb | Bin 0 -> 473 bytes testdata/v1.33.0/policy.v1beta1.Eviction.yaml | 44 + .../policy.v1beta1.PodDisruptionBudget.json | 85 + .../policy.v1beta1.PodDisruptionBudget.pb | Bin 0 -> 670 bytes .../policy.v1beta1.PodDisruptionBudget.yaml | 61 + ...c.authorization.k8s.io.v1.ClusterRole.json | 83 + ...bac.authorization.k8s.io.v1.ClusterRole.pb | Bin 0 -> 579 bytes ...c.authorization.k8s.io.v1.ClusterRole.yaml | 54 + ...rization.k8s.io.v1.ClusterRoleBinding.json | 59 + ...horization.k8s.io.v1.ClusterRoleBinding.pb | Bin 0 -> 512 bytes ...rization.k8s.io.v1.ClusterRoleBinding.yaml | 43 + .../rbac.authorization.k8s.io.v1.Role.json | 65 + .../rbac.authorization.k8s.io.v1.Role.pb | Bin 0 -> 492 bytes .../rbac.authorization.k8s.io.v1.Role.yaml | 45 + ...c.authorization.k8s.io.v1.RoleBinding.json | 59 + ...bac.authorization.k8s.io.v1.RoleBinding.pb | Bin 0 -> 505 bytes ...c.authorization.k8s.io.v1.RoleBinding.yaml | 43 + ...orization.k8s.io.v1alpha1.ClusterRole.json | 83 + ...thorization.k8s.io.v1alpha1.ClusterRole.pb | Bin 0 -> 585 bytes ...orization.k8s.io.v1alpha1.ClusterRole.yaml | 54 + ...on.k8s.io.v1alpha1.ClusterRoleBinding.json | 59 + ...tion.k8s.io.v1alpha1.ClusterRoleBinding.pb | Bin 0 -> 520 bytes ...on.k8s.io.v1alpha1.ClusterRoleBinding.yaml | 43 + ...ac.authorization.k8s.io.v1alpha1.Role.json | 65 + ...rbac.authorization.k8s.io.v1alpha1.Role.pb | Bin 0 -> 498 bytes ...ac.authorization.k8s.io.v1alpha1.Role.yaml | 45 + ...orization.k8s.io.v1alpha1.RoleBinding.json | 59 + ...thorization.k8s.io.v1alpha1.RoleBinding.pb | Bin 0 -> 513 bytes ...orization.k8s.io.v1alpha1.RoleBinding.yaml | 43 + ...horization.k8s.io.v1beta1.ClusterRole.json | 83 + ...uthorization.k8s.io.v1beta1.ClusterRole.pb | Bin 0 -> 584 bytes ...horization.k8s.io.v1beta1.ClusterRole.yaml | 54 + ...ion.k8s.io.v1beta1.ClusterRoleBinding.json | 59 + ...ation.k8s.io.v1beta1.ClusterRoleBinding.pb | Bin 0 -> 517 bytes ...ion.k8s.io.v1beta1.ClusterRoleBinding.yaml | 43 + ...bac.authorization.k8s.io.v1beta1.Role.json | 65 + .../rbac.authorization.k8s.io.v1beta1.Role.pb | Bin 0 -> 497 bytes ...bac.authorization.k8s.io.v1beta1.Role.yaml | 45 + ...horization.k8s.io.v1beta1.RoleBinding.json | 59 + ...uthorization.k8s.io.v1beta1.RoleBinding.pb | Bin 0 -> 510 bytes ...horization.k8s.io.v1beta1.RoleBinding.yaml | 43 + .../resource.k8s.io.v1alpha3.DeviceClass.json | 72 + .../resource.k8s.io.v1alpha3.DeviceClass.pb | Bin 0 -> 552 bytes .../resource.k8s.io.v1alpha3.DeviceClass.yaml | 48 + ...ource.k8s.io.v1alpha3.DeviceTaintRule.json | 67 + ...esource.k8s.io.v1alpha3.DeviceTaintRule.pb | Bin 0 -> 543 bytes ...ource.k8s.io.v1alpha3.DeviceTaintRule.yaml | 48 + ...esource.k8s.io.v1alpha3.ResourceClaim.json | 238 ++ .../resource.k8s.io.v1alpha3.ResourceClaim.pb | Bin 0 -> 1526 bytes ...esource.k8s.io.v1alpha3.ResourceClaim.yaml | 149 ++ ...k8s.io.v1alpha3.ResourceClaimTemplate.json | 171 ++ ...e.k8s.io.v1alpha3.ResourceClaimTemplate.pb | Bin 0 -> 1226 bytes ...k8s.io.v1alpha3.ResourceClaimTemplate.yaml | 114 + ...esource.k8s.io.v1alpha3.ResourceSlice.json | 153 ++ .../resource.k8s.io.v1alpha3.ResourceSlice.pb | Bin 0 -> 856 bytes ...esource.k8s.io.v1alpha3.ResourceSlice.yaml | 95 + .../resource.k8s.io.v1beta1.DeviceClass.json | 72 + .../resource.k8s.io.v1beta1.DeviceClass.pb | Bin 0 -> 551 bytes .../resource.k8s.io.v1beta1.DeviceClass.yaml | 48 + ...resource.k8s.io.v1beta1.ResourceClaim.json | 238 ++ .../resource.k8s.io.v1beta1.ResourceClaim.pb | Bin 0 -> 1525 bytes ...resource.k8s.io.v1beta1.ResourceClaim.yaml | 149 ++ ....k8s.io.v1beta1.ResourceClaimTemplate.json | 171 ++ ...ce.k8s.io.v1beta1.ResourceClaimTemplate.pb | Bin 0 -> 1225 bytes ....k8s.io.v1beta1.ResourceClaimTemplate.yaml | 114 + ...resource.k8s.io.v1beta1.ResourceSlice.json | 155 ++ .../resource.k8s.io.v1beta1.ResourceSlice.pb | Bin 0 -> 857 bytes ...resource.k8s.io.v1beta1.ResourceSlice.yaml | 96 + .../resource.k8s.io.v1beta2.DeviceClass.json | 72 + .../resource.k8s.io.v1beta2.DeviceClass.pb | Bin 0 -> 551 bytes .../resource.k8s.io.v1beta2.DeviceClass.yaml | 48 + ...resource.k8s.io.v1beta2.ResourceClaim.json | 240 ++ .../resource.k8s.io.v1beta2.ResourceClaim.pb | Bin 0 -> 1527 bytes ...resource.k8s.io.v1beta2.ResourceClaim.yaml | 150 ++ ....k8s.io.v1beta2.ResourceClaimTemplate.json | 173 ++ ...ce.k8s.io.v1beta2.ResourceClaimTemplate.pb | Bin 0 -> 1227 bytes ....k8s.io.v1beta2.ResourceClaimTemplate.yaml | 115 + ...resource.k8s.io.v1beta2.ResourceSlice.json | 153 ++ .../resource.k8s.io.v1beta2.ResourceSlice.pb | Bin 0 -> 854 bytes ...resource.k8s.io.v1beta2.ResourceSlice.yaml | 95 + .../scheduling.k8s.io.v1.PriorityClass.json | 50 + .../scheduling.k8s.io.v1.PriorityClass.pb | Bin 0 -> 450 bytes .../scheduling.k8s.io.v1.PriorityClass.yaml | 38 + ...eduling.k8s.io.v1alpha1.PriorityClass.json | 50 + ...cheduling.k8s.io.v1alpha1.PriorityClass.pb | Bin 0 -> 456 bytes ...eduling.k8s.io.v1alpha1.PriorityClass.yaml | 38 + ...heduling.k8s.io.v1beta1.PriorityClass.json | 50 + ...scheduling.k8s.io.v1beta1.PriorityClass.pb | Bin 0 -> 455 bytes ...heduling.k8s.io.v1beta1.PriorityClass.yaml | 38 + .../v1.33.0/storage.k8s.io.v1.CSIDriver.json | 64 + .../v1.33.0/storage.k8s.io.v1.CSIDriver.pb | Bin 0 -> 478 bytes .../v1.33.0/storage.k8s.io.v1.CSIDriver.yaml | 47 + .../v1.33.0/storage.k8s.io.v1.CSINode.json | 60 + testdata/v1.33.0/storage.k8s.io.v1.CSINode.pb | Bin 0 -> 447 bytes .../v1.33.0/storage.k8s.io.v1.CSINode.yaml | 42 + .../storage.k8s.io.v1.CSIStorageCapacity.json | 63 + .../storage.k8s.io.v1.CSIStorageCapacity.pb | Bin 0 -> 518 bytes .../storage.k8s.io.v1.CSIStorageCapacity.yaml | 45 + .../storage.k8s.io.v1.StorageClass.json | 68 + .../v1.33.0/storage.k8s.io.v1.StorageClass.pb | Bin 0 -> 545 bytes .../storage.k8s.io.v1.StorageClass.yaml | 47 + .../storage.k8s.io.v1.VolumeAttachment.json | 328 +++ .../storage.k8s.io.v1.VolumeAttachment.pb | Bin 0 -> 2607 bytes .../storage.k8s.io.v1.VolumeAttachment.yaml | 251 ++ ...ge.k8s.io.v1alpha1.CSIStorageCapacity.json | 63 + ...rage.k8s.io.v1alpha1.CSIStorageCapacity.pb | Bin 0 -> 524 bytes ...ge.k8s.io.v1alpha1.CSIStorageCapacity.yaml | 45 + ...rage.k8s.io.v1alpha1.VolumeAttachment.json | 328 +++ ...torage.k8s.io.v1alpha1.VolumeAttachment.pb | Bin 0 -> 2613 bytes ...rage.k8s.io.v1alpha1.VolumeAttachment.yaml | 251 ++ ...k8s.io.v1alpha1.VolumeAttributesClass.json | 50 + ...e.k8s.io.v1alpha1.VolumeAttributesClass.pb | Bin 0 -> 467 bytes ...k8s.io.v1alpha1.VolumeAttributesClass.yaml | 37 + .../storage.k8s.io.v1beta1.CSIDriver.json | 64 + .../storage.k8s.io.v1beta1.CSIDriver.pb | Bin 0 -> 483 bytes .../storage.k8s.io.v1beta1.CSIDriver.yaml | 47 + .../storage.k8s.io.v1beta1.CSINode.json | 60 + .../v1.33.0/storage.k8s.io.v1beta1.CSINode.pb | Bin 0 -> 452 bytes .../storage.k8s.io.v1beta1.CSINode.yaml | 42 + ...age.k8s.io.v1beta1.CSIStorageCapacity.json | 63 + ...orage.k8s.io.v1beta1.CSIStorageCapacity.pb | Bin 0 -> 523 bytes ...age.k8s.io.v1beta1.CSIStorageCapacity.yaml | 45 + .../storage.k8s.io.v1beta1.StorageClass.json | 68 + .../storage.k8s.io.v1beta1.StorageClass.pb | Bin 0 -> 550 bytes .../storage.k8s.io.v1beta1.StorageClass.yaml | 47 + ...orage.k8s.io.v1beta1.VolumeAttachment.json | 328 +++ ...storage.k8s.io.v1beta1.VolumeAttachment.pb | Bin 0 -> 2612 bytes ...orage.k8s.io.v1beta1.VolumeAttachment.yaml | 251 ++ ....k8s.io.v1beta1.VolumeAttributesClass.json | 50 + ...ge.k8s.io.v1beta1.VolumeAttributesClass.pb | Bin 0 -> 466 bytes ....k8s.io.v1beta1.VolumeAttributesClass.yaml | 37 + ...s.io.v1alpha1.StorageVersionMigration.json | 66 + ...k8s.io.v1alpha1.StorageVersionMigration.pb | Bin 0 -> 579 bytes ...s.io.v1alpha1.StorageVersionMigration.yaml | 48 + 540 files changed, 84009 insertions(+) create mode 100644 testdata/v1.33.0/admission.k8s.io.v1.AdmissionReview.json create mode 100644 testdata/v1.33.0/admission.k8s.io.v1.AdmissionReview.pb create mode 100644 testdata/v1.33.0/admission.k8s.io.v1.AdmissionReview.yaml create mode 100644 testdata/v1.33.0/admission.k8s.io.v1beta1.AdmissionReview.json create mode 100644 testdata/v1.33.0/admission.k8s.io.v1beta1.AdmissionReview.pb create mode 100644 testdata/v1.33.0/admission.k8s.io.v1beta1.AdmissionReview.yaml create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.json create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.pb create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.yaml create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.json create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.pb create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.yaml create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.json create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.pb create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.yaml create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.json create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.pb create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.yaml create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.MutatingAdmissionPolicy.json create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.MutatingAdmissionPolicy.pb create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.MutatingAdmissionPolicy.yaml create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.MutatingAdmissionPolicyBinding.json create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.MutatingAdmissionPolicyBinding.pb create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.MutatingAdmissionPolicyBinding.yaml create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.json create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.pb create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.yaml create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicyBinding.json create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicyBinding.pb create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicyBinding.yaml create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.json create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.pb create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.yaml create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.json create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.pb create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.yaml create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicyBinding.json create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicyBinding.pb create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicyBinding.yaml create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.json create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.pb create mode 100644 testdata/v1.33.0/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.yaml create mode 100644 testdata/v1.33.0/apidiscovery.k8s.io.v2.APIGroupDiscovery.json create mode 100644 testdata/v1.33.0/apidiscovery.k8s.io.v2.APIGroupDiscovery.pb create mode 100644 testdata/v1.33.0/apidiscovery.k8s.io.v2.APIGroupDiscovery.yaml create mode 100644 testdata/v1.33.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.json create mode 100644 testdata/v1.33.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.pb create mode 100644 testdata/v1.33.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.yaml create mode 100644 testdata/v1.33.0/apps.v1.ControllerRevision.json create mode 100644 testdata/v1.33.0/apps.v1.ControllerRevision.pb create mode 100644 testdata/v1.33.0/apps.v1.ControllerRevision.yaml create mode 100644 testdata/v1.33.0/apps.v1.DaemonSet.json create mode 100644 testdata/v1.33.0/apps.v1.DaemonSet.pb create mode 100644 testdata/v1.33.0/apps.v1.DaemonSet.yaml create mode 100644 testdata/v1.33.0/apps.v1.Deployment.json create mode 100644 testdata/v1.33.0/apps.v1.Deployment.pb create mode 100644 testdata/v1.33.0/apps.v1.Deployment.yaml create mode 100644 testdata/v1.33.0/apps.v1.ReplicaSet.json create mode 100644 testdata/v1.33.0/apps.v1.ReplicaSet.pb create mode 100644 testdata/v1.33.0/apps.v1.ReplicaSet.yaml create mode 100644 testdata/v1.33.0/apps.v1.StatefulSet.json create mode 100644 testdata/v1.33.0/apps.v1.StatefulSet.pb create mode 100644 testdata/v1.33.0/apps.v1.StatefulSet.yaml create mode 100644 testdata/v1.33.0/apps.v1beta1.ControllerRevision.json create mode 100644 testdata/v1.33.0/apps.v1beta1.ControllerRevision.pb create mode 100644 testdata/v1.33.0/apps.v1beta1.ControllerRevision.yaml create mode 100644 testdata/v1.33.0/apps.v1beta1.Deployment.json create mode 100644 testdata/v1.33.0/apps.v1beta1.Deployment.pb create mode 100644 testdata/v1.33.0/apps.v1beta1.Deployment.yaml create mode 100644 testdata/v1.33.0/apps.v1beta1.DeploymentRollback.json create mode 100644 testdata/v1.33.0/apps.v1beta1.DeploymentRollback.pb create mode 100644 testdata/v1.33.0/apps.v1beta1.DeploymentRollback.yaml create mode 100644 testdata/v1.33.0/apps.v1beta1.Scale.json create mode 100644 testdata/v1.33.0/apps.v1beta1.Scale.pb create mode 100644 testdata/v1.33.0/apps.v1beta1.Scale.yaml create mode 100644 testdata/v1.33.0/apps.v1beta1.StatefulSet.json create mode 100644 testdata/v1.33.0/apps.v1beta1.StatefulSet.pb create mode 100644 testdata/v1.33.0/apps.v1beta1.StatefulSet.yaml create mode 100644 testdata/v1.33.0/apps.v1beta2.ControllerRevision.json create mode 100644 testdata/v1.33.0/apps.v1beta2.ControllerRevision.pb create mode 100644 testdata/v1.33.0/apps.v1beta2.ControllerRevision.yaml create mode 100644 testdata/v1.33.0/apps.v1beta2.DaemonSet.json create mode 100644 testdata/v1.33.0/apps.v1beta2.DaemonSet.pb create mode 100644 testdata/v1.33.0/apps.v1beta2.DaemonSet.yaml create mode 100644 testdata/v1.33.0/apps.v1beta2.Deployment.json create mode 100644 testdata/v1.33.0/apps.v1beta2.Deployment.pb create mode 100644 testdata/v1.33.0/apps.v1beta2.Deployment.yaml create mode 100644 testdata/v1.33.0/apps.v1beta2.ReplicaSet.json create mode 100644 testdata/v1.33.0/apps.v1beta2.ReplicaSet.pb create mode 100644 testdata/v1.33.0/apps.v1beta2.ReplicaSet.yaml create mode 100644 testdata/v1.33.0/apps.v1beta2.Scale.json create mode 100644 testdata/v1.33.0/apps.v1beta2.Scale.pb create mode 100644 testdata/v1.33.0/apps.v1beta2.Scale.yaml create mode 100644 testdata/v1.33.0/apps.v1beta2.StatefulSet.json create mode 100644 testdata/v1.33.0/apps.v1beta2.StatefulSet.pb create mode 100644 testdata/v1.33.0/apps.v1beta2.StatefulSet.yaml create mode 100644 testdata/v1.33.0/authentication.k8s.io.v1.SelfSubjectReview.json create mode 100644 testdata/v1.33.0/authentication.k8s.io.v1.SelfSubjectReview.pb create mode 100644 testdata/v1.33.0/authentication.k8s.io.v1.SelfSubjectReview.yaml create mode 100644 testdata/v1.33.0/authentication.k8s.io.v1.TokenRequest.json create mode 100644 testdata/v1.33.0/authentication.k8s.io.v1.TokenRequest.pb create mode 100644 testdata/v1.33.0/authentication.k8s.io.v1.TokenRequest.yaml create mode 100644 testdata/v1.33.0/authentication.k8s.io.v1.TokenReview.json create mode 100644 testdata/v1.33.0/authentication.k8s.io.v1.TokenReview.pb create mode 100644 testdata/v1.33.0/authentication.k8s.io.v1.TokenReview.yaml create mode 100644 testdata/v1.33.0/authentication.k8s.io.v1beta1.SelfSubjectReview.json create mode 100644 testdata/v1.33.0/authentication.k8s.io.v1beta1.SelfSubjectReview.pb create mode 100644 testdata/v1.33.0/authentication.k8s.io.v1beta1.SelfSubjectReview.yaml create mode 100644 testdata/v1.33.0/authentication.k8s.io.v1beta1.TokenReview.json create mode 100644 testdata/v1.33.0/authentication.k8s.io.v1beta1.TokenReview.pb create mode 100644 testdata/v1.33.0/authentication.k8s.io.v1beta1.TokenReview.yaml create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1.LocalSubjectAccessReview.json create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1.LocalSubjectAccessReview.pb create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1.LocalSubjectAccessReview.yaml create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1.SelfSubjectAccessReview.json create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1.SelfSubjectAccessReview.pb create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1.SelfSubjectAccessReview.yaml create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1.SelfSubjectRulesReview.json create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1.SelfSubjectRulesReview.pb create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1.SelfSubjectRulesReview.yaml create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1.SubjectAccessReview.json create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1.SubjectAccessReview.pb create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1.SubjectAccessReview.yaml create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1beta1.LocalSubjectAccessReview.json create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1beta1.LocalSubjectAccessReview.pb create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1beta1.LocalSubjectAccessReview.yaml create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1beta1.SelfSubjectAccessReview.json create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1beta1.SelfSubjectAccessReview.pb create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1beta1.SelfSubjectAccessReview.yaml create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.json create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.pb create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.yaml create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1beta1.SubjectAccessReview.json create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1beta1.SubjectAccessReview.pb create mode 100644 testdata/v1.33.0/authorization.k8s.io.v1beta1.SubjectAccessReview.yaml create mode 100644 testdata/v1.33.0/autoscaling.v1.HorizontalPodAutoscaler.json create mode 100644 testdata/v1.33.0/autoscaling.v1.HorizontalPodAutoscaler.pb create mode 100644 testdata/v1.33.0/autoscaling.v1.HorizontalPodAutoscaler.yaml create mode 100644 testdata/v1.33.0/autoscaling.v1.Scale.json create mode 100644 testdata/v1.33.0/autoscaling.v1.Scale.pb create mode 100644 testdata/v1.33.0/autoscaling.v1.Scale.yaml create mode 100644 testdata/v1.33.0/autoscaling.v2.HorizontalPodAutoscaler.json create mode 100644 testdata/v1.33.0/autoscaling.v2.HorizontalPodAutoscaler.pb create mode 100644 testdata/v1.33.0/autoscaling.v2.HorizontalPodAutoscaler.yaml create mode 100644 testdata/v1.33.0/autoscaling.v2beta1.HorizontalPodAutoscaler.json create mode 100644 testdata/v1.33.0/autoscaling.v2beta1.HorizontalPodAutoscaler.pb create mode 100644 testdata/v1.33.0/autoscaling.v2beta1.HorizontalPodAutoscaler.yaml create mode 100644 testdata/v1.33.0/autoscaling.v2beta2.HorizontalPodAutoscaler.json create mode 100644 testdata/v1.33.0/autoscaling.v2beta2.HorizontalPodAutoscaler.pb create mode 100644 testdata/v1.33.0/autoscaling.v2beta2.HorizontalPodAutoscaler.yaml create mode 100644 testdata/v1.33.0/batch.v1.CronJob.json create mode 100644 testdata/v1.33.0/batch.v1.CronJob.pb create mode 100644 testdata/v1.33.0/batch.v1.CronJob.yaml create mode 100644 testdata/v1.33.0/batch.v1.Job.json create mode 100644 testdata/v1.33.0/batch.v1.Job.pb create mode 100644 testdata/v1.33.0/batch.v1.Job.yaml create mode 100644 testdata/v1.33.0/batch.v1beta1.CronJob.json create mode 100644 testdata/v1.33.0/batch.v1beta1.CronJob.pb create mode 100644 testdata/v1.33.0/batch.v1beta1.CronJob.yaml create mode 100644 testdata/v1.33.0/certificates.k8s.io.v1.CertificateSigningRequest.json create mode 100644 testdata/v1.33.0/certificates.k8s.io.v1.CertificateSigningRequest.pb create mode 100644 testdata/v1.33.0/certificates.k8s.io.v1.CertificateSigningRequest.yaml create mode 100644 testdata/v1.33.0/certificates.k8s.io.v1alpha1.ClusterTrustBundle.json create mode 100644 testdata/v1.33.0/certificates.k8s.io.v1alpha1.ClusterTrustBundle.pb create mode 100644 testdata/v1.33.0/certificates.k8s.io.v1alpha1.ClusterTrustBundle.yaml create mode 100644 testdata/v1.33.0/certificates.k8s.io.v1beta1.CertificateSigningRequest.json create mode 100644 testdata/v1.33.0/certificates.k8s.io.v1beta1.CertificateSigningRequest.pb create mode 100644 testdata/v1.33.0/certificates.k8s.io.v1beta1.CertificateSigningRequest.yaml create mode 100644 testdata/v1.33.0/certificates.k8s.io.v1beta1.ClusterTrustBundle.json create mode 100644 testdata/v1.33.0/certificates.k8s.io.v1beta1.ClusterTrustBundle.pb create mode 100644 testdata/v1.33.0/certificates.k8s.io.v1beta1.ClusterTrustBundle.yaml create mode 100644 testdata/v1.33.0/coordination.k8s.io.v1.Lease.json create mode 100644 testdata/v1.33.0/coordination.k8s.io.v1.Lease.pb create mode 100644 testdata/v1.33.0/coordination.k8s.io.v1.Lease.yaml create mode 100644 testdata/v1.33.0/coordination.k8s.io.v1alpha2.LeaseCandidate.json create mode 100644 testdata/v1.33.0/coordination.k8s.io.v1alpha2.LeaseCandidate.pb create mode 100644 testdata/v1.33.0/coordination.k8s.io.v1alpha2.LeaseCandidate.yaml create mode 100644 testdata/v1.33.0/coordination.k8s.io.v1beta1.Lease.json create mode 100644 testdata/v1.33.0/coordination.k8s.io.v1beta1.Lease.pb create mode 100644 testdata/v1.33.0/coordination.k8s.io.v1beta1.Lease.yaml create mode 100644 testdata/v1.33.0/coordination.k8s.io.v1beta1.LeaseCandidate.json create mode 100644 testdata/v1.33.0/coordination.k8s.io.v1beta1.LeaseCandidate.pb create mode 100644 testdata/v1.33.0/coordination.k8s.io.v1beta1.LeaseCandidate.yaml create mode 100644 testdata/v1.33.0/core.v1.APIGroup.json create mode 100644 testdata/v1.33.0/core.v1.APIGroup.pb create mode 100644 testdata/v1.33.0/core.v1.APIGroup.yaml create mode 100644 testdata/v1.33.0/core.v1.APIVersions.json create mode 100644 testdata/v1.33.0/core.v1.APIVersions.pb create mode 100644 testdata/v1.33.0/core.v1.APIVersions.yaml create mode 100644 testdata/v1.33.0/core.v1.Binding.json create mode 100644 testdata/v1.33.0/core.v1.Binding.pb create mode 100644 testdata/v1.33.0/core.v1.Binding.yaml create mode 100644 testdata/v1.33.0/core.v1.ComponentStatus.json create mode 100644 testdata/v1.33.0/core.v1.ComponentStatus.pb create mode 100644 testdata/v1.33.0/core.v1.ComponentStatus.yaml create mode 100644 testdata/v1.33.0/core.v1.ConfigMap.json create mode 100644 testdata/v1.33.0/core.v1.ConfigMap.pb create mode 100644 testdata/v1.33.0/core.v1.ConfigMap.yaml create mode 100644 testdata/v1.33.0/core.v1.CreateOptions.json create mode 100644 testdata/v1.33.0/core.v1.CreateOptions.pb create mode 100644 testdata/v1.33.0/core.v1.CreateOptions.yaml create mode 100644 testdata/v1.33.0/core.v1.DeleteOptions.json create mode 100644 testdata/v1.33.0/core.v1.DeleteOptions.pb create mode 100644 testdata/v1.33.0/core.v1.DeleteOptions.yaml create mode 100644 testdata/v1.33.0/core.v1.Endpoints.json create mode 100644 testdata/v1.33.0/core.v1.Endpoints.pb create mode 100644 testdata/v1.33.0/core.v1.Endpoints.yaml create mode 100644 testdata/v1.33.0/core.v1.Event.json create mode 100644 testdata/v1.33.0/core.v1.Event.pb create mode 100644 testdata/v1.33.0/core.v1.Event.yaml create mode 100644 testdata/v1.33.0/core.v1.GetOptions.json create mode 100644 testdata/v1.33.0/core.v1.GetOptions.pb create mode 100644 testdata/v1.33.0/core.v1.GetOptions.yaml create mode 100644 testdata/v1.33.0/core.v1.LimitRange.json create mode 100644 testdata/v1.33.0/core.v1.LimitRange.pb create mode 100644 testdata/v1.33.0/core.v1.LimitRange.yaml create mode 100644 testdata/v1.33.0/core.v1.ListOptions.json create mode 100644 testdata/v1.33.0/core.v1.ListOptions.pb create mode 100644 testdata/v1.33.0/core.v1.ListOptions.yaml create mode 100644 testdata/v1.33.0/core.v1.Namespace.json create mode 100644 testdata/v1.33.0/core.v1.Namespace.pb create mode 100644 testdata/v1.33.0/core.v1.Namespace.yaml create mode 100644 testdata/v1.33.0/core.v1.Node.json create mode 100644 testdata/v1.33.0/core.v1.Node.pb create mode 100644 testdata/v1.33.0/core.v1.Node.yaml create mode 100644 testdata/v1.33.0/core.v1.NodeProxyOptions.json create mode 100644 testdata/v1.33.0/core.v1.NodeProxyOptions.pb create mode 100644 testdata/v1.33.0/core.v1.NodeProxyOptions.yaml create mode 100644 testdata/v1.33.0/core.v1.PatchOptions.json create mode 100644 testdata/v1.33.0/core.v1.PatchOptions.pb create mode 100644 testdata/v1.33.0/core.v1.PatchOptions.yaml create mode 100644 testdata/v1.33.0/core.v1.PersistentVolume.json create mode 100644 testdata/v1.33.0/core.v1.PersistentVolume.pb create mode 100644 testdata/v1.33.0/core.v1.PersistentVolume.yaml create mode 100644 testdata/v1.33.0/core.v1.PersistentVolumeClaim.json create mode 100644 testdata/v1.33.0/core.v1.PersistentVolumeClaim.pb create mode 100644 testdata/v1.33.0/core.v1.PersistentVolumeClaim.yaml create mode 100644 testdata/v1.33.0/core.v1.Pod.json create mode 100644 testdata/v1.33.0/core.v1.Pod.pb create mode 100644 testdata/v1.33.0/core.v1.Pod.yaml create mode 100644 testdata/v1.33.0/core.v1.PodAttachOptions.json create mode 100644 testdata/v1.33.0/core.v1.PodAttachOptions.pb create mode 100644 testdata/v1.33.0/core.v1.PodAttachOptions.yaml create mode 100644 testdata/v1.33.0/core.v1.PodExecOptions.json create mode 100644 testdata/v1.33.0/core.v1.PodExecOptions.pb create mode 100644 testdata/v1.33.0/core.v1.PodExecOptions.yaml create mode 100644 testdata/v1.33.0/core.v1.PodLogOptions.json create mode 100644 testdata/v1.33.0/core.v1.PodLogOptions.pb create mode 100644 testdata/v1.33.0/core.v1.PodLogOptions.yaml create mode 100644 testdata/v1.33.0/core.v1.PodPortForwardOptions.json create mode 100644 testdata/v1.33.0/core.v1.PodPortForwardOptions.pb create mode 100644 testdata/v1.33.0/core.v1.PodPortForwardOptions.yaml create mode 100644 testdata/v1.33.0/core.v1.PodProxyOptions.json create mode 100644 testdata/v1.33.0/core.v1.PodProxyOptions.pb create mode 100644 testdata/v1.33.0/core.v1.PodProxyOptions.yaml create mode 100644 testdata/v1.33.0/core.v1.PodStatusResult.json create mode 100644 testdata/v1.33.0/core.v1.PodStatusResult.pb create mode 100644 testdata/v1.33.0/core.v1.PodStatusResult.yaml create mode 100644 testdata/v1.33.0/core.v1.PodTemplate.json create mode 100644 testdata/v1.33.0/core.v1.PodTemplate.pb create mode 100644 testdata/v1.33.0/core.v1.PodTemplate.yaml create mode 100644 testdata/v1.33.0/core.v1.RangeAllocation.json create mode 100644 testdata/v1.33.0/core.v1.RangeAllocation.pb create mode 100644 testdata/v1.33.0/core.v1.RangeAllocation.yaml create mode 100644 testdata/v1.33.0/core.v1.ReplicationController.json create mode 100644 testdata/v1.33.0/core.v1.ReplicationController.pb create mode 100644 testdata/v1.33.0/core.v1.ReplicationController.yaml create mode 100644 testdata/v1.33.0/core.v1.ResourceQuota.json create mode 100644 testdata/v1.33.0/core.v1.ResourceQuota.pb create mode 100644 testdata/v1.33.0/core.v1.ResourceQuota.yaml create mode 100644 testdata/v1.33.0/core.v1.Secret.json create mode 100644 testdata/v1.33.0/core.v1.Secret.pb create mode 100644 testdata/v1.33.0/core.v1.Secret.yaml create mode 100644 testdata/v1.33.0/core.v1.SerializedReference.json create mode 100644 testdata/v1.33.0/core.v1.SerializedReference.pb create mode 100644 testdata/v1.33.0/core.v1.SerializedReference.yaml create mode 100644 testdata/v1.33.0/core.v1.Service.json create mode 100644 testdata/v1.33.0/core.v1.Service.pb create mode 100644 testdata/v1.33.0/core.v1.Service.yaml create mode 100644 testdata/v1.33.0/core.v1.ServiceAccount.json create mode 100644 testdata/v1.33.0/core.v1.ServiceAccount.pb create mode 100644 testdata/v1.33.0/core.v1.ServiceAccount.yaml create mode 100644 testdata/v1.33.0/core.v1.ServiceProxyOptions.json create mode 100644 testdata/v1.33.0/core.v1.ServiceProxyOptions.pb create mode 100644 testdata/v1.33.0/core.v1.ServiceProxyOptions.yaml create mode 100644 testdata/v1.33.0/core.v1.Status.json create mode 100644 testdata/v1.33.0/core.v1.Status.pb create mode 100644 testdata/v1.33.0/core.v1.Status.yaml create mode 100644 testdata/v1.33.0/core.v1.UpdateOptions.json create mode 100644 testdata/v1.33.0/core.v1.UpdateOptions.pb create mode 100644 testdata/v1.33.0/core.v1.UpdateOptions.yaml create mode 100644 testdata/v1.33.0/core.v1.WatchEvent.json create mode 100644 testdata/v1.33.0/core.v1.WatchEvent.pb create mode 100644 testdata/v1.33.0/core.v1.WatchEvent.yaml create mode 100644 testdata/v1.33.0/discovery.k8s.io.v1.EndpointSlice.json create mode 100644 testdata/v1.33.0/discovery.k8s.io.v1.EndpointSlice.pb create mode 100644 testdata/v1.33.0/discovery.k8s.io.v1.EndpointSlice.yaml create mode 100644 testdata/v1.33.0/discovery.k8s.io.v1beta1.EndpointSlice.json create mode 100644 testdata/v1.33.0/discovery.k8s.io.v1beta1.EndpointSlice.pb create mode 100644 testdata/v1.33.0/discovery.k8s.io.v1beta1.EndpointSlice.yaml create mode 100644 testdata/v1.33.0/events.k8s.io.v1.Event.json create mode 100644 testdata/v1.33.0/events.k8s.io.v1.Event.pb create mode 100644 testdata/v1.33.0/events.k8s.io.v1.Event.yaml create mode 100644 testdata/v1.33.0/events.k8s.io.v1beta1.Event.json create mode 100644 testdata/v1.33.0/events.k8s.io.v1beta1.Event.pb create mode 100644 testdata/v1.33.0/events.k8s.io.v1beta1.Event.yaml create mode 100644 testdata/v1.33.0/extensions.v1beta1.DaemonSet.json create mode 100644 testdata/v1.33.0/extensions.v1beta1.DaemonSet.pb create mode 100644 testdata/v1.33.0/extensions.v1beta1.DaemonSet.yaml create mode 100644 testdata/v1.33.0/extensions.v1beta1.Deployment.json create mode 100644 testdata/v1.33.0/extensions.v1beta1.Deployment.pb create mode 100644 testdata/v1.33.0/extensions.v1beta1.Deployment.yaml create mode 100644 testdata/v1.33.0/extensions.v1beta1.DeploymentRollback.json create mode 100644 testdata/v1.33.0/extensions.v1beta1.DeploymentRollback.pb create mode 100644 testdata/v1.33.0/extensions.v1beta1.DeploymentRollback.yaml create mode 100644 testdata/v1.33.0/extensions.v1beta1.Ingress.json create mode 100644 testdata/v1.33.0/extensions.v1beta1.Ingress.pb create mode 100644 testdata/v1.33.0/extensions.v1beta1.Ingress.yaml create mode 100644 testdata/v1.33.0/extensions.v1beta1.NetworkPolicy.json create mode 100644 testdata/v1.33.0/extensions.v1beta1.NetworkPolicy.pb create mode 100644 testdata/v1.33.0/extensions.v1beta1.NetworkPolicy.yaml create mode 100644 testdata/v1.33.0/extensions.v1beta1.ReplicaSet.json create mode 100644 testdata/v1.33.0/extensions.v1beta1.ReplicaSet.pb create mode 100644 testdata/v1.33.0/extensions.v1beta1.ReplicaSet.yaml create mode 100644 testdata/v1.33.0/extensions.v1beta1.Scale.json create mode 100644 testdata/v1.33.0/extensions.v1beta1.Scale.pb create mode 100644 testdata/v1.33.0/extensions.v1beta1.Scale.yaml create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1.FlowSchema.json create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1.FlowSchema.pb create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1.FlowSchema.yaml create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1.PriorityLevelConfiguration.json create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1.PriorityLevelConfiguration.pb create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1.PriorityLevelConfiguration.yaml create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta1.FlowSchema.json create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta1.FlowSchema.pb create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta1.FlowSchema.yaml create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta1.PriorityLevelConfiguration.json create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta1.PriorityLevelConfiguration.pb create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta1.PriorityLevelConfiguration.yaml create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta2.FlowSchema.json create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta2.FlowSchema.pb create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta2.FlowSchema.yaml create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta2.PriorityLevelConfiguration.json create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta2.PriorityLevelConfiguration.pb create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta2.PriorityLevelConfiguration.yaml create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta3.FlowSchema.json create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta3.FlowSchema.pb create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta3.FlowSchema.yaml create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.json create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.pb create mode 100644 testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.yaml create mode 100644 testdata/v1.33.0/imagepolicy.k8s.io.v1alpha1.ImageReview.json create mode 100644 testdata/v1.33.0/imagepolicy.k8s.io.v1alpha1.ImageReview.pb create mode 100644 testdata/v1.33.0/imagepolicy.k8s.io.v1alpha1.ImageReview.yaml create mode 100644 testdata/v1.33.0/internal.apiserver.k8s.io.v1alpha1.StorageVersion.json create mode 100644 testdata/v1.33.0/internal.apiserver.k8s.io.v1alpha1.StorageVersion.pb create mode 100644 testdata/v1.33.0/internal.apiserver.k8s.io.v1alpha1.StorageVersion.yaml create mode 100644 testdata/v1.33.0/networking.k8s.io.v1.IPAddress.json create mode 100644 testdata/v1.33.0/networking.k8s.io.v1.IPAddress.pb create mode 100644 testdata/v1.33.0/networking.k8s.io.v1.IPAddress.yaml create mode 100644 testdata/v1.33.0/networking.k8s.io.v1.Ingress.json create mode 100644 testdata/v1.33.0/networking.k8s.io.v1.Ingress.pb create mode 100644 testdata/v1.33.0/networking.k8s.io.v1.Ingress.yaml create mode 100644 testdata/v1.33.0/networking.k8s.io.v1.IngressClass.json create mode 100644 testdata/v1.33.0/networking.k8s.io.v1.IngressClass.pb create mode 100644 testdata/v1.33.0/networking.k8s.io.v1.IngressClass.yaml create mode 100644 testdata/v1.33.0/networking.k8s.io.v1.NetworkPolicy.json create mode 100644 testdata/v1.33.0/networking.k8s.io.v1.NetworkPolicy.pb create mode 100644 testdata/v1.33.0/networking.k8s.io.v1.NetworkPolicy.yaml create mode 100644 testdata/v1.33.0/networking.k8s.io.v1.ServiceCIDR.json create mode 100644 testdata/v1.33.0/networking.k8s.io.v1.ServiceCIDR.pb create mode 100644 testdata/v1.33.0/networking.k8s.io.v1.ServiceCIDR.yaml create mode 100644 testdata/v1.33.0/networking.k8s.io.v1alpha1.IPAddress.json create mode 100644 testdata/v1.33.0/networking.k8s.io.v1alpha1.IPAddress.pb create mode 100644 testdata/v1.33.0/networking.k8s.io.v1alpha1.IPAddress.yaml create mode 100644 testdata/v1.33.0/networking.k8s.io.v1alpha1.ServiceCIDR.json create mode 100644 testdata/v1.33.0/networking.k8s.io.v1alpha1.ServiceCIDR.pb create mode 100644 testdata/v1.33.0/networking.k8s.io.v1alpha1.ServiceCIDR.yaml create mode 100644 testdata/v1.33.0/networking.k8s.io.v1beta1.IPAddress.json create mode 100644 testdata/v1.33.0/networking.k8s.io.v1beta1.IPAddress.pb create mode 100644 testdata/v1.33.0/networking.k8s.io.v1beta1.IPAddress.yaml create mode 100644 testdata/v1.33.0/networking.k8s.io.v1beta1.Ingress.json create mode 100644 testdata/v1.33.0/networking.k8s.io.v1beta1.Ingress.pb create mode 100644 testdata/v1.33.0/networking.k8s.io.v1beta1.Ingress.yaml create mode 100644 testdata/v1.33.0/networking.k8s.io.v1beta1.IngressClass.json create mode 100644 testdata/v1.33.0/networking.k8s.io.v1beta1.IngressClass.pb create mode 100644 testdata/v1.33.0/networking.k8s.io.v1beta1.IngressClass.yaml create mode 100644 testdata/v1.33.0/networking.k8s.io.v1beta1.ServiceCIDR.json create mode 100644 testdata/v1.33.0/networking.k8s.io.v1beta1.ServiceCIDR.pb create mode 100644 testdata/v1.33.0/networking.k8s.io.v1beta1.ServiceCIDR.yaml create mode 100644 testdata/v1.33.0/node.k8s.io.v1.RuntimeClass.json create mode 100644 testdata/v1.33.0/node.k8s.io.v1.RuntimeClass.pb create mode 100644 testdata/v1.33.0/node.k8s.io.v1.RuntimeClass.yaml create mode 100644 testdata/v1.33.0/node.k8s.io.v1alpha1.RuntimeClass.json create mode 100644 testdata/v1.33.0/node.k8s.io.v1alpha1.RuntimeClass.pb create mode 100644 testdata/v1.33.0/node.k8s.io.v1alpha1.RuntimeClass.yaml create mode 100644 testdata/v1.33.0/node.k8s.io.v1beta1.RuntimeClass.json create mode 100644 testdata/v1.33.0/node.k8s.io.v1beta1.RuntimeClass.pb create mode 100644 testdata/v1.33.0/node.k8s.io.v1beta1.RuntimeClass.yaml create mode 100644 testdata/v1.33.0/policy.v1.Eviction.json create mode 100644 testdata/v1.33.0/policy.v1.Eviction.pb create mode 100644 testdata/v1.33.0/policy.v1.Eviction.yaml create mode 100644 testdata/v1.33.0/policy.v1.PodDisruptionBudget.json create mode 100644 testdata/v1.33.0/policy.v1.PodDisruptionBudget.pb create mode 100644 testdata/v1.33.0/policy.v1.PodDisruptionBudget.yaml create mode 100644 testdata/v1.33.0/policy.v1beta1.Eviction.json create mode 100644 testdata/v1.33.0/policy.v1beta1.Eviction.pb create mode 100644 testdata/v1.33.0/policy.v1beta1.Eviction.yaml create mode 100644 testdata/v1.33.0/policy.v1beta1.PodDisruptionBudget.json create mode 100644 testdata/v1.33.0/policy.v1beta1.PodDisruptionBudget.pb create mode 100644 testdata/v1.33.0/policy.v1beta1.PodDisruptionBudget.yaml create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1.ClusterRole.json create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1.ClusterRole.pb create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1.ClusterRole.yaml create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.json create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.pb create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.yaml create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1.Role.json create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1.Role.pb create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1.Role.yaml create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1.RoleBinding.json create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1.RoleBinding.pb create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1.RoleBinding.yaml create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.ClusterRole.json create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.ClusterRole.pb create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.ClusterRole.yaml create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.json create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.pb create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.yaml create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.Role.json create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.Role.pb create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.Role.yaml create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.RoleBinding.json create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.RoleBinding.pb create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.RoleBinding.yaml create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.ClusterRole.json create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.ClusterRole.pb create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.ClusterRole.yaml create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.ClusterRoleBinding.json create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.ClusterRoleBinding.pb create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.ClusterRoleBinding.yaml create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.Role.json create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.Role.pb create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.Role.yaml create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.json create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.pb create mode 100644 testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.yaml create mode 100644 testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceClass.json create mode 100644 testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceClass.pb create mode 100644 testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceClass.yaml create mode 100644 testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceTaintRule.json create mode 100644 testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceTaintRule.pb create mode 100644 testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceTaintRule.yaml create mode 100644 testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceClaim.json create mode 100644 testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceClaim.pb create mode 100644 testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceClaim.yaml create mode 100644 testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.json create mode 100644 testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.pb create mode 100644 testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.yaml create mode 100644 testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceSlice.json create mode 100644 testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceSlice.pb create mode 100644 testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceSlice.yaml create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta1.DeviceClass.json create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta1.DeviceClass.pb create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta1.DeviceClass.yaml create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceClaim.json create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceClaim.pb create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceClaim.yaml create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceClaimTemplate.json create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceClaimTemplate.pb create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceClaimTemplate.yaml create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceSlice.json create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceSlice.pb create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceSlice.yaml create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta2.DeviceClass.json create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta2.DeviceClass.pb create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta2.DeviceClass.yaml create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta2.ResourceClaim.json create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta2.ResourceClaim.pb create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta2.ResourceClaim.yaml create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta2.ResourceClaimTemplate.json create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta2.ResourceClaimTemplate.pb create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta2.ResourceClaimTemplate.yaml create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta2.ResourceSlice.json create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta2.ResourceSlice.pb create mode 100644 testdata/v1.33.0/resource.k8s.io.v1beta2.ResourceSlice.yaml create mode 100644 testdata/v1.33.0/scheduling.k8s.io.v1.PriorityClass.json create mode 100644 testdata/v1.33.0/scheduling.k8s.io.v1.PriorityClass.pb create mode 100644 testdata/v1.33.0/scheduling.k8s.io.v1.PriorityClass.yaml create mode 100644 testdata/v1.33.0/scheduling.k8s.io.v1alpha1.PriorityClass.json create mode 100644 testdata/v1.33.0/scheduling.k8s.io.v1alpha1.PriorityClass.pb create mode 100644 testdata/v1.33.0/scheduling.k8s.io.v1alpha1.PriorityClass.yaml create mode 100644 testdata/v1.33.0/scheduling.k8s.io.v1beta1.PriorityClass.json create mode 100644 testdata/v1.33.0/scheduling.k8s.io.v1beta1.PriorityClass.pb create mode 100644 testdata/v1.33.0/scheduling.k8s.io.v1beta1.PriorityClass.yaml create mode 100644 testdata/v1.33.0/storage.k8s.io.v1.CSIDriver.json create mode 100644 testdata/v1.33.0/storage.k8s.io.v1.CSIDriver.pb create mode 100644 testdata/v1.33.0/storage.k8s.io.v1.CSIDriver.yaml create mode 100644 testdata/v1.33.0/storage.k8s.io.v1.CSINode.json create mode 100644 testdata/v1.33.0/storage.k8s.io.v1.CSINode.pb create mode 100644 testdata/v1.33.0/storage.k8s.io.v1.CSINode.yaml create mode 100644 testdata/v1.33.0/storage.k8s.io.v1.CSIStorageCapacity.json create mode 100644 testdata/v1.33.0/storage.k8s.io.v1.CSIStorageCapacity.pb create mode 100644 testdata/v1.33.0/storage.k8s.io.v1.CSIStorageCapacity.yaml create mode 100644 testdata/v1.33.0/storage.k8s.io.v1.StorageClass.json create mode 100644 testdata/v1.33.0/storage.k8s.io.v1.StorageClass.pb create mode 100644 testdata/v1.33.0/storage.k8s.io.v1.StorageClass.yaml create mode 100644 testdata/v1.33.0/storage.k8s.io.v1.VolumeAttachment.json create mode 100644 testdata/v1.33.0/storage.k8s.io.v1.VolumeAttachment.pb create mode 100644 testdata/v1.33.0/storage.k8s.io.v1.VolumeAttachment.yaml create mode 100644 testdata/v1.33.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.json create mode 100644 testdata/v1.33.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.pb create mode 100644 testdata/v1.33.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.yaml create mode 100644 testdata/v1.33.0/storage.k8s.io.v1alpha1.VolumeAttachment.json create mode 100644 testdata/v1.33.0/storage.k8s.io.v1alpha1.VolumeAttachment.pb create mode 100644 testdata/v1.33.0/storage.k8s.io.v1alpha1.VolumeAttachment.yaml create mode 100644 testdata/v1.33.0/storage.k8s.io.v1alpha1.VolumeAttributesClass.json create mode 100644 testdata/v1.33.0/storage.k8s.io.v1alpha1.VolumeAttributesClass.pb create mode 100644 testdata/v1.33.0/storage.k8s.io.v1alpha1.VolumeAttributesClass.yaml create mode 100644 testdata/v1.33.0/storage.k8s.io.v1beta1.CSIDriver.json create mode 100644 testdata/v1.33.0/storage.k8s.io.v1beta1.CSIDriver.pb create mode 100644 testdata/v1.33.0/storage.k8s.io.v1beta1.CSIDriver.yaml create mode 100644 testdata/v1.33.0/storage.k8s.io.v1beta1.CSINode.json create mode 100644 testdata/v1.33.0/storage.k8s.io.v1beta1.CSINode.pb create mode 100644 testdata/v1.33.0/storage.k8s.io.v1beta1.CSINode.yaml create mode 100644 testdata/v1.33.0/storage.k8s.io.v1beta1.CSIStorageCapacity.json create mode 100644 testdata/v1.33.0/storage.k8s.io.v1beta1.CSIStorageCapacity.pb create mode 100644 testdata/v1.33.0/storage.k8s.io.v1beta1.CSIStorageCapacity.yaml create mode 100644 testdata/v1.33.0/storage.k8s.io.v1beta1.StorageClass.json create mode 100644 testdata/v1.33.0/storage.k8s.io.v1beta1.StorageClass.pb create mode 100644 testdata/v1.33.0/storage.k8s.io.v1beta1.StorageClass.yaml create mode 100644 testdata/v1.33.0/storage.k8s.io.v1beta1.VolumeAttachment.json create mode 100644 testdata/v1.33.0/storage.k8s.io.v1beta1.VolumeAttachment.pb create mode 100644 testdata/v1.33.0/storage.k8s.io.v1beta1.VolumeAttachment.yaml create mode 100644 testdata/v1.33.0/storage.k8s.io.v1beta1.VolumeAttributesClass.json create mode 100644 testdata/v1.33.0/storage.k8s.io.v1beta1.VolumeAttributesClass.pb create mode 100644 testdata/v1.33.0/storage.k8s.io.v1beta1.VolumeAttributesClass.yaml create mode 100644 testdata/v1.33.0/storagemigration.k8s.io.v1alpha1.StorageVersionMigration.json create mode 100644 testdata/v1.33.0/storagemigration.k8s.io.v1alpha1.StorageVersionMigration.pb create mode 100644 testdata/v1.33.0/storagemigration.k8s.io.v1alpha1.StorageVersionMigration.yaml diff --git a/testdata/v1.33.0/admission.k8s.io.v1.AdmissionReview.json b/testdata/v1.33.0/admission.k8s.io.v1.AdmissionReview.json new file mode 100644 index 0000000000..c34bd5e439 --- /dev/null +++ b/testdata/v1.33.0/admission.k8s.io.v1.AdmissionReview.json @@ -0,0 +1,113 @@ +{ + "kind": "AdmissionReview", + "apiVersion": "admission.k8s.io/v1", + "request": { + "uid": "uidValue", + "kind": { + "group": "groupValue", + "version": "versionValue", + "kind": "kindValue" + }, + "resource": { + "group": "groupValue", + "version": "versionValue", + "resource": "resourceValue" + }, + "subResource": "subResourceValue", + "requestKind": { + "group": "groupValue", + "version": "versionValue", + "kind": "kindValue" + }, + "requestResource": { + "group": "groupValue", + "version": "versionValue", + "resource": "resourceValue" + }, + "requestSubResource": "requestSubResourceValue", + "name": "nameValue", + "namespace": "namespaceValue", + "operation": "operationValue", + "userInfo": { + "username": "usernameValue", + "uid": "uidValue", + "groups": [ + "groupsValue" + ], + "extra": { + "extraKey": [ + "extraValue" + ] + } + }, + "object": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + }, + "oldObject": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + }, + "dryRun": true, + "options": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + } + }, + "response": { + "uid": "uidValue", + "allowed": true, + "status": { + "metadata": { + "selfLink": "selfLinkValue", + "resourceVersion": "resourceVersionValue", + "continue": "continueValue", + "remainingItemCount": 4 + }, + "status": "statusValue", + "message": "messageValue", + "reason": "reasonValue", + "details": { + "name": "nameValue", + "group": "groupValue", + "kind": "kindValue", + "uid": "uidValue", + "causes": [ + { + "reason": "reasonValue", + "message": "messageValue", + "field": "fieldValue" + } + ], + "retryAfterSeconds": 5 + }, + "code": 6 + }, + "patch": "BA==", + "patchType": "patchTypeValue", + "auditAnnotations": { + "auditAnnotationsKey": "auditAnnotationsValue" + }, + "warnings": [ + "warningsValue" + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/admission.k8s.io.v1.AdmissionReview.pb b/testdata/v1.33.0/admission.k8s.io.v1.AdmissionReview.pb new file mode 100644 index 0000000000000000000000000000000000000000..73532668dba3d212d13240cff17c6be6e9f3e483 GIT binary patch literal 973 zcmchW%T60H6o!*3wBTe?GwBYDHer9c!)_NUv}7wYS5lfK@$6^Aera6+$Mk?R&& zc4BB>~d7?yr{BrGw2%9$KO7F$I(8rGHGisWT<4!V_z zn$Lr?uF_z*y=}Ssog@yyEE4Eq(zG4s#MtCLS%y<<_zyUv9YTT~Jo{rZx?o(3!?+2{ z7@YD_7tqgD>92%suxc%@?>V%p{B@?mYp5Y-*#$G83z2hV+2*BJEw|3wzT%9Ff{zNQ z9GAmq>2lN@JxiazPlLcb9fI>U1OFVL{rP|ediCNCzSU;>ze%=8f>0bE2ssTeNZ&4a zs>7J%N?IXZ1nEPIw&UZ3oV4SqLOz)z*fzj%PI2!yx#N%4V6WlLK9PC~y;m(I#{!D@ z4?Zsq7C?S`$(pTRS96>HsUQl23^x2fbYo$6q*NXr4>neezI!N!=qx$mMhZEJRHqHr FxB*=FPSXGY literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/admission.k8s.io.v1.AdmissionReview.yaml b/testdata/v1.33.0/admission.k8s.io.v1.AdmissionReview.yaml new file mode 100644 index 0000000000..c278ba71e7 --- /dev/null +++ b/testdata/v1.33.0/admission.k8s.io.v1.AdmissionReview.yaml @@ -0,0 +1,84 @@ +apiVersion: admission.k8s.io/v1 +kind: AdmissionReview +request: + dryRun: true + kind: + group: groupValue + kind: kindValue + version: versionValue + name: nameValue + namespace: namespaceValue + object: + apiVersion: example.com/v1 + kind: CustomType + spec: + replicas: 1 + status: + available: 1 + oldObject: + apiVersion: example.com/v1 + kind: CustomType + spec: + replicas: 1 + status: + available: 1 + operation: operationValue + options: + apiVersion: example.com/v1 + kind: CustomType + spec: + replicas: 1 + status: + available: 1 + requestKind: + group: groupValue + kind: kindValue + version: versionValue + requestResource: + group: groupValue + resource: resourceValue + version: versionValue + requestSubResource: requestSubResourceValue + resource: + group: groupValue + resource: resourceValue + version: versionValue + subResource: subResourceValue + uid: uidValue + userInfo: + extra: + extraKey: + - extraValue + groups: + - groupsValue + uid: uidValue + username: usernameValue +response: + allowed: true + auditAnnotations: + auditAnnotationsKey: auditAnnotationsValue + patch: BA== + patchType: patchTypeValue + status: + code: 6 + details: + causes: + - field: fieldValue + message: messageValue + reason: reasonValue + group: groupValue + kind: kindValue + name: nameValue + retryAfterSeconds: 5 + uid: uidValue + message: messageValue + metadata: + continue: continueValue + remainingItemCount: 4 + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + reason: reasonValue + status: statusValue + uid: uidValue + warnings: + - warningsValue diff --git a/testdata/v1.33.0/admission.k8s.io.v1beta1.AdmissionReview.json b/testdata/v1.33.0/admission.k8s.io.v1beta1.AdmissionReview.json new file mode 100644 index 0000000000..ee068e50c6 --- /dev/null +++ b/testdata/v1.33.0/admission.k8s.io.v1beta1.AdmissionReview.json @@ -0,0 +1,113 @@ +{ + "kind": "AdmissionReview", + "apiVersion": "admission.k8s.io/v1beta1", + "request": { + "uid": "uidValue", + "kind": { + "group": "groupValue", + "version": "versionValue", + "kind": "kindValue" + }, + "resource": { + "group": "groupValue", + "version": "versionValue", + "resource": "resourceValue" + }, + "subResource": "subResourceValue", + "requestKind": { + "group": "groupValue", + "version": "versionValue", + "kind": "kindValue" + }, + "requestResource": { + "group": "groupValue", + "version": "versionValue", + "resource": "resourceValue" + }, + "requestSubResource": "requestSubResourceValue", + "name": "nameValue", + "namespace": "namespaceValue", + "operation": "operationValue", + "userInfo": { + "username": "usernameValue", + "uid": "uidValue", + "groups": [ + "groupsValue" + ], + "extra": { + "extraKey": [ + "extraValue" + ] + } + }, + "object": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + }, + "oldObject": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + }, + "dryRun": true, + "options": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + } + }, + "response": { + "uid": "uidValue", + "allowed": true, + "status": { + "metadata": { + "selfLink": "selfLinkValue", + "resourceVersion": "resourceVersionValue", + "continue": "continueValue", + "remainingItemCount": 4 + }, + "status": "statusValue", + "message": "messageValue", + "reason": "reasonValue", + "details": { + "name": "nameValue", + "group": "groupValue", + "kind": "kindValue", + "uid": "uidValue", + "causes": [ + { + "reason": "reasonValue", + "message": "messageValue", + "field": "fieldValue" + } + ], + "retryAfterSeconds": 5 + }, + "code": 6 + }, + "patch": "BA==", + "patchType": "patchTypeValue", + "auditAnnotations": { + "auditAnnotationsKey": "auditAnnotationsValue" + }, + "warnings": [ + "warningsValue" + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/admission.k8s.io.v1beta1.AdmissionReview.pb b/testdata/v1.33.0/admission.k8s.io.v1beta1.AdmissionReview.pb new file mode 100644 index 0000000000000000000000000000000000000000..a5b36e718dd7cc14a4350cabe61aa15eebc66bf0 GIT binary patch literal 978 zcmchW%We}f6owNNpmj2#GDTFgLY5E^s+44bs#&#V2dn}rY|l(igUO6-d`WNWi}Y3c zW~}P5({$(pb=BSRfA03@`L1b^_hbvE6*q=UF`Vz3A(uOgQH~Zy^x6K6XMzik$Mo_k z`P(6Dj!zGvbVy$lGSkwjc2!f1i)|Q}PnybLT|gC` z<9=-#1b1Q7$r&rF@23jAW)v1IJ7*eI$qO(n8(nzSf_2{Z6&Juu z$V;pp7n29+^0S>kNT1*LgFxROg0q(z|2Q=E+Z`6@<)d5pHrnY`n|vgR!Sd)U7xVCf zbaTa16UL;F!gApvNUu7y8y_d+q&-iSf!Pwlu0}9RiU&W)Eq}BDdjoIwhBQ;?Kh;ul z#IcP3;O*n_3dj#nSi3XmE3n0{8lo`Bc$+*2H|2I;2mVpYK-q&x4z&iPp$CPE2sKJAqR`vy=Iv(O$;>jd8;#-@ z@LPBj{0P1EDD*p&9z6REbatlMEIoUB^M7yN{NDdfHr5_`itf_soN3LZP>?cRC|a0! zI~(h5CLb;y;lZo2Fq%l;Lo|~zdnQG~($dx8AJ@=%8+8Sp!#m1Lz&BG6V3P29C6Qj0 z)j5q_Nw}qfCle+zdt>OAY-*#?Ed^SZ%G80Xh^#ukzVG{I-+!NU0`I^?KmYtP(IGm% zgSwnX!1YU5;!PLY8&QaQR0vsNOJUPN<7{g_JVxD&3HLBr^M^IfuupT=1lehgTdJQh zK{@+u0BxUdtq9$iQ$bTuR=_=(SM#s%$<;QYnc?E>??&K_Of%q9{dSobtSvfS(7R-5>x;`T`1pneVK@bMF4RnA^0S>~5Y zupZkfq_=``=Md@Gw6QHioKVI~1&5Necxkoa1epcQX%WvR^?riJ*;e8E$j`vtz*`PW zIt$6>qMF*hHVQPG!t*47xNwU35QF;D9>Ida$ICUj{DFI`L3DIm0TT-u+qEI S8Z@`mhfldNuKvfw3%!3N#WuD8 literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.yaml b/testdata/v1.33.0/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.yaml new file mode 100644 index 0000000000..34b84f2179 --- /dev/null +++ b/testdata/v1.33.0/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.yaml @@ -0,0 +1,80 @@ +apiVersion: admissionregistration.k8s.io/v1 +kind: MutatingWebhookConfiguration +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +webhooks: +- admissionReviewVersions: + - admissionReviewVersionsValue + clientConfig: + caBundle: Ag== + service: + name: nameValue + namespace: namespaceValue + path: pathValue + port: 4 + url: urlValue + failurePolicy: failurePolicyValue + matchConditions: + - expression: expressionValue + name: nameValue + matchPolicy: matchPolicyValue + name: nameValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + objectSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + reinvocationPolicy: reinvocationPolicyValue + rules: + - apiGroups: + - apiGroupsValue + apiVersions: + - apiVersionsValue + operations: + - operationsValue + resources: + - resourcesValue + scope: scopeValue + sideEffects: sideEffectsValue + timeoutSeconds: 7 diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.json b/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.json new file mode 100644 index 0000000000..f5e514c906 --- /dev/null +++ b/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.json @@ -0,0 +1,171 @@ +{ + "kind": "ValidatingAdmissionPolicy", + "apiVersion": "admissionregistration.k8s.io/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "paramKind": { + "apiVersion": "apiVersionValue", + "kind": "kindValue" + }, + "matchConstraints": { + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "objectSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "resourceRules": [ + { + "resourceNames": [ + "resourceNamesValue" + ], + "operations": [ + "operationsValue" + ], + "apiGroups": [ + "apiGroupsValue" + ], + "apiVersions": [ + "apiVersionsValue" + ], + "resources": [ + "resourcesValue" + ], + "scope": "scopeValue" + } + ], + "excludeResourceRules": [ + { + "resourceNames": [ + "resourceNamesValue" + ], + "operations": [ + "operationsValue" + ], + "apiGroups": [ + "apiGroupsValue" + ], + "apiVersions": [ + "apiVersionsValue" + ], + "resources": [ + "resourcesValue" + ], + "scope": "scopeValue" + } + ], + "matchPolicy": "matchPolicyValue" + }, + "validations": [ + { + "expression": "expressionValue", + "message": "messageValue", + "reason": "reasonValue", + "messageExpression": "messageExpressionValue" + } + ], + "failurePolicy": "failurePolicyValue", + "auditAnnotations": [ + { + "key": "keyValue", + "valueExpression": "valueExpressionValue" + } + ], + "matchConditions": [ + { + "name": "nameValue", + "expression": "expressionValue" + } + ], + "variables": [ + { + "name": "nameValue", + "expression": "expressionValue" + } + ] + }, + "status": { + "observedGeneration": 1, + "typeChecking": { + "expressionWarnings": [ + { + "fieldRef": "fieldRefValue", + "warning": "warningValue" + } + ] + }, + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "observedGeneration": 3, + "lastTransitionTime": "2004-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.pb b/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.pb new file mode 100644 index 0000000000000000000000000000000000000000..0c5cc4d84d517415479b3370959d0c1d93a13440 GIT binary patch literal 1134 zcmcgr&2G~`5O$hKIFmoKs;XiY75Ts+hXRq1q6igHfsi0V1tAXHHu1(RcGlLeT}Ue= z&b$Q&PCNo{fYb-zhB$EM4Pd-$J8lk~5VzU+`R4m(XTq_v;129lf60~Nv5+j_DwQ-v z`yd>v10LTvxkawLpb_`cD}sAv>Tw+L`HFn9;rkY}1zj>s${4vEFu@RkJtBmW~zohSO!g#3R$NBH3V~r4uMZS8zO3Y*?E!aAHcjTyS zR!u?=^;-+}U=xU}1(5emm;%aP(scf6T1~~Ny$!qTV25mF?4Ds78{%%~B=2Qpk$;Nj z20%(d`C1e`p2DD-RpC0spG){d8D~l1an`?JJZ`^)GH(ym9AUI1?|(I#n8}(W(5>D3 zFko*J7rDHn_&_3(K+wL1G1s=S4-Gz2qZYk*~ysXSjf48~b=V4vp=%RSbv;F|h CxQ%fD literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.yaml b/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.yaml new file mode 100644 index 0000000000..a7fd3ece57 --- /dev/null +++ b/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.yaml @@ -0,0 +1,108 @@ +apiVersion: admissionregistration.k8s.io/v1 +kind: ValidatingAdmissionPolicy +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + auditAnnotations: + - key: keyValue + valueExpression: valueExpressionValue + failurePolicy: failurePolicyValue + matchConditions: + - expression: expressionValue + name: nameValue + matchConstraints: + excludeResourceRules: + - apiGroups: + - apiGroupsValue + apiVersions: + - apiVersionsValue + operations: + - operationsValue + resourceNames: + - resourceNamesValue + resources: + - resourcesValue + scope: scopeValue + matchPolicy: matchPolicyValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + objectSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + resourceRules: + - apiGroups: + - apiGroupsValue + apiVersions: + - apiVersionsValue + operations: + - operationsValue + resourceNames: + - resourceNamesValue + resources: + - resourcesValue + scope: scopeValue + paramKind: + apiVersion: apiVersionValue + kind: kindValue + validations: + - expression: expressionValue + message: messageValue + messageExpression: messageExpressionValue + reason: reasonValue + variables: + - expression: expressionValue + name: nameValue +status: + conditions: + - lastTransitionTime: "2004-01-01T01:01:01Z" + message: messageValue + observedGeneration: 3 + reason: reasonValue + status: statusValue + type: typeValue + observedGeneration: 1 + typeChecking: + expressionWarnings: + - fieldRef: fieldRefValue + warning: warningValue diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.json b/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.json new file mode 100644 index 0000000000..f49ef8a364 --- /dev/null +++ b/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.json @@ -0,0 +1,142 @@ +{ + "kind": "ValidatingAdmissionPolicyBinding", + "apiVersion": "admissionregistration.k8s.io/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "policyName": "policyNameValue", + "paramRef": { + "name": "nameValue", + "namespace": "namespaceValue", + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "parameterNotFoundAction": "parameterNotFoundActionValue" + }, + "matchResources": { + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "objectSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "resourceRules": [ + { + "resourceNames": [ + "resourceNamesValue" + ], + "operations": [ + "operationsValue" + ], + "apiGroups": [ + "apiGroupsValue" + ], + "apiVersions": [ + "apiVersionsValue" + ], + "resources": [ + "resourcesValue" + ], + "scope": "scopeValue" + } + ], + "excludeResourceRules": [ + { + "resourceNames": [ + "resourceNamesValue" + ], + "operations": [ + "operationsValue" + ], + "apiGroups": [ + "apiGroupsValue" + ], + "apiVersions": [ + "apiVersionsValue" + ], + "resources": [ + "resourcesValue" + ], + "scope": "scopeValue" + } + ], + "matchPolicy": "matchPolicyValue" + }, + "validationActions": [ + "validationActionsValue" + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.pb b/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.pb new file mode 100644 index 0000000000000000000000000000000000000000..fde6678f201f8cad229abba8f02acb33af71eb3d GIT binary patch literal 1004 zcmcgrO-md>5S`TpcgwgtHXPTBdj8L z6Z{QcJbTY2|3L6RgdB4AADEi%o!P~+8L?%2K^|%NTCHHgidj^_<4jIFl@w*OUP># zr#hv9E%6sLOV0XS#OB6YBj=%sI!lUanJcVgs$gZ%?p&|Ycz*c%tL{2S7(Ko`VRQoD zSD=~D0Za53HX`#jG&cr5w5Sj=GjhzaJC&Q7^KEFxsKF%Oguh?0S!>gjPZQa!b!)19 z#szwEi3H8nyV?Lg45^?IQwAU{nHKs>`rg|%K5F>${5tD89c;#uP=6bx)|s6;%v@df zT%8XpCyc2->(EY(@0F|Mwl;118;`v{pb0~o1wZ>kqC6TYtt`;?hcJbMy{7}g} t9V71K30TBym91>qe@{nGp6hK&Ocv*VPgOQ literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.yaml b/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.yaml new file mode 100644 index 0000000000..9cd5310554 --- /dev/null +++ b/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.yaml @@ -0,0 +1,92 @@ +apiVersion: admissionregistration.k8s.io/v1 +kind: ValidatingAdmissionPolicyBinding +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + matchResources: + excludeResourceRules: + - apiGroups: + - apiGroupsValue + apiVersions: + - apiVersionsValue + operations: + - operationsValue + resourceNames: + - resourceNamesValue + resources: + - resourcesValue + scope: scopeValue + matchPolicy: matchPolicyValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + objectSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + resourceRules: + - apiGroups: + - apiGroupsValue + apiVersions: + - apiVersionsValue + operations: + - operationsValue + resourceNames: + - resourceNamesValue + resources: + - resourcesValue + scope: scopeValue + paramRef: + name: nameValue + namespace: namespaceValue + parameterNotFoundAction: parameterNotFoundActionValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + policyName: policyNameValue + validationActions: + - validationActionsValue diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.json b/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.json new file mode 100644 index 0000000000..a61187e449 --- /dev/null +++ b/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.json @@ -0,0 +1,119 @@ +{ + "kind": "ValidatingWebhookConfiguration", + "apiVersion": "admissionregistration.k8s.io/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "webhooks": [ + { + "name": "nameValue", + "clientConfig": { + "url": "urlValue", + "service": { + "namespace": "namespaceValue", + "name": "nameValue", + "path": "pathValue", + "port": 4 + }, + "caBundle": "Ag==" + }, + "rules": [ + { + "operations": [ + "operationsValue" + ], + "apiGroups": [ + "apiGroupsValue" + ], + "apiVersions": [ + "apiVersionsValue" + ], + "resources": [ + "resourcesValue" + ], + "scope": "scopeValue" + } + ], + "failurePolicy": "failurePolicyValue", + "matchPolicy": "matchPolicyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "objectSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "sideEffects": "sideEffectsValue", + "timeoutSeconds": 7, + "admissionReviewVersions": [ + "admissionReviewVersionsValue" + ], + "matchConditions": [ + { + "name": "nameValue", + "expression": "expressionValue" + } + ] + } + ] +} \ No newline at end of file diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.pb b/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.pb new file mode 100644 index 0000000000000000000000000000000000000000..6ece9204a7d5a2145aa69ba081ccf17f5471ecac GIT binary patch literal 861 zcmb_a&1%~~5SAU2%A3YkmL9?q(xO8NKBS2u#N<$DN+~3!q@lEs+e#YA8_Bz3S90o> zzCbT|h8{~Fp>I&gJCq)B&Ko4_-B=bm_crs*-#6b(I#3RJg`U!A%#>n+OGub1BrUYP zoetDC6E7yac=IF8Sfo*&e1c#kMEY9rm?fpn#FxwHZxgjS9fQs+0k0*%K?mX893q`r zROK|ZDgLU0EFLnRnu?xVvdCEdClZt>rOpF6<7CjmqeIud`f>fc@DgqyMDCeRu%b2iN^G(kA9%`qI+rebP->=y8x-@5XB0G&iLv~}v zwIW|MLDT1ZBS4SGl+y&H0dPm;v;F7v$-_3j-r?WX?ULv8bu-8!^-$KBx{Yb+|^Gz0hj@%S%1zxqZ zgq4u2OlDi#X?;(z2;RgogoQ=)Lu^!UdkPZ<7x!nf@gqB{#_06FGCJF+AEOJObFEMH IuEg=3JDxW!O8@`> literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.yaml b/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.yaml new file mode 100644 index 0000000000..58da831917 --- /dev/null +++ b/testdata/v1.33.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.yaml @@ -0,0 +1,79 @@ +apiVersion: admissionregistration.k8s.io/v1 +kind: ValidatingWebhookConfiguration +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +webhooks: +- admissionReviewVersions: + - admissionReviewVersionsValue + clientConfig: + caBundle: Ag== + service: + name: nameValue + namespace: namespaceValue + path: pathValue + port: 4 + url: urlValue + failurePolicy: failurePolicyValue + matchConditions: + - expression: expressionValue + name: nameValue + matchPolicy: matchPolicyValue + name: nameValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + objectSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + rules: + - apiGroups: + - apiGroupsValue + apiVersions: + - apiVersionsValue + operations: + - operationsValue + resources: + - resourcesValue + scope: scopeValue + sideEffects: sideEffectsValue + timeoutSeconds: 7 diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.MutatingAdmissionPolicy.json b/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.MutatingAdmissionPolicy.json new file mode 100644 index 0000000000..985735ab11 --- /dev/null +++ b/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.MutatingAdmissionPolicy.json @@ -0,0 +1,148 @@ +{ + "kind": "MutatingAdmissionPolicy", + "apiVersion": "admissionregistration.k8s.io/v1alpha1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "paramKind": { + "apiVersion": "apiVersionValue", + "kind": "kindValue" + }, + "matchConstraints": { + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "objectSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "resourceRules": [ + { + "resourceNames": [ + "resourceNamesValue" + ], + "operations": [ + "operationsValue" + ], + "apiGroups": [ + "apiGroupsValue" + ], + "apiVersions": [ + "apiVersionsValue" + ], + "resources": [ + "resourcesValue" + ], + "scope": "scopeValue" + } + ], + "excludeResourceRules": [ + { + "resourceNames": [ + "resourceNamesValue" + ], + "operations": [ + "operationsValue" + ], + "apiGroups": [ + "apiGroupsValue" + ], + "apiVersions": [ + "apiVersionsValue" + ], + "resources": [ + "resourcesValue" + ], + "scope": "scopeValue" + } + ], + "matchPolicy": "matchPolicyValue" + }, + "variables": [ + { + "name": "nameValue", + "expression": "expressionValue" + } + ], + "mutations": [ + { + "patchType": "patchTypeValue", + "applyConfiguration": { + "expression": "expressionValue" + }, + "jsonPatch": { + "expression": "expressionValue" + } + } + ], + "failurePolicy": "failurePolicyValue", + "matchConditions": [ + { + "name": "nameValue", + "expression": "expressionValue" + } + ], + "reinvocationPolicy": "reinvocationPolicyValue" + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.MutatingAdmissionPolicy.pb b/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.MutatingAdmissionPolicy.pb new file mode 100644 index 0000000000000000000000000000000000000000..fb9d898bc43fabddb989d81917baa8685f01c478 GIT binary patch literal 1013 zcmcgrPiqrF6yLOgCa-q09fZoz(}Esys5a0Na**1KpiwG_2XB+jWIOI;W|+x_#v*w3 zTX-w0WyUZmG)>g<>gOIjWsq&xZqOXH0lvywV?6YPubwSY61IM!%su z6D9~}AFV)#^QAF@ds8AvO0`R%P^!XzDIed4iLHlUSJ&%N(6eBakImbK@{<`fVeS0W zab)sQH3>J=?@ic++dyb#0DWGEAz0f}GD}W})l{O|*{gd5t&A>wyycZjFC1^q3odU9 z{ZllY0xAs^&tl2(20GQOmZ_(9bBaCJGFQt?wAzBt;IM@9=NL?4VVtG-e-RD*Wc?>_ z)Off43p(^nS(()%jt^0&irrMZ#@leG>29ivCWP@^(;8FnuS|m-O_`X>#67{W7Ml~h^^ArlI^2*%@l5JIB6DU2Z7=ug^@qFvziY1ZSx5Je ze{?j0ADhrf@R%g(3z?x68=4biADWmko)hQHl--5g^!z-6MyxfM#GCW?OE$YLEa)PU zkCk>swoWO-3H_xBnxi+BF|1B7!x51NKus=k{RMsR^%!4k`1kNsb)7>!j3l8tnF;Gm zrv^*s7d=;HTL~L!uVdgimoe*w!iY&8-O-pg45t^PqeS9n>4H(iI`beb0dD%{N7vy#v^Xq6ZB0)5iY pM$o?GnRr3m`4g~+*DOZa+y@otF~&jvy%u%sMcR*OR(p=`JOkNcS%&}s literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.MutatingAdmissionPolicyBinding.yaml b/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.MutatingAdmissionPolicyBinding.yaml new file mode 100644 index 0000000000..251870e8e6 --- /dev/null +++ b/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.MutatingAdmissionPolicyBinding.yaml @@ -0,0 +1,90 @@ +apiVersion: admissionregistration.k8s.io/v1alpha1 +kind: MutatingAdmissionPolicyBinding +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + matchResources: + excludeResourceRules: + - apiGroups: + - apiGroupsValue + apiVersions: + - apiVersionsValue + operations: + - operationsValue + resourceNames: + - resourceNamesValue + resources: + - resourcesValue + scope: scopeValue + matchPolicy: matchPolicyValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + objectSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + resourceRules: + - apiGroups: + - apiGroupsValue + apiVersions: + - apiVersionsValue + operations: + - operationsValue + resourceNames: + - resourceNamesValue + resources: + - resourcesValue + scope: scopeValue + paramRef: + name: nameValue + namespace: namespaceValue + parameterNotFoundAction: parameterNotFoundActionValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + policyName: policyNameValue diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.json b/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.json new file mode 100644 index 0000000000..d816089654 --- /dev/null +++ b/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.json @@ -0,0 +1,171 @@ +{ + "kind": "ValidatingAdmissionPolicy", + "apiVersion": "admissionregistration.k8s.io/v1alpha1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "paramKind": { + "apiVersion": "apiVersionValue", + "kind": "kindValue" + }, + "matchConstraints": { + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "objectSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "resourceRules": [ + { + "resourceNames": [ + "resourceNamesValue" + ], + "operations": [ + "operationsValue" + ], + "apiGroups": [ + "apiGroupsValue" + ], + "apiVersions": [ + "apiVersionsValue" + ], + "resources": [ + "resourcesValue" + ], + "scope": "scopeValue" + } + ], + "excludeResourceRules": [ + { + "resourceNames": [ + "resourceNamesValue" + ], + "operations": [ + "operationsValue" + ], + "apiGroups": [ + "apiGroupsValue" + ], + "apiVersions": [ + "apiVersionsValue" + ], + "resources": [ + "resourcesValue" + ], + "scope": "scopeValue" + } + ], + "matchPolicy": "matchPolicyValue" + }, + "validations": [ + { + "expression": "expressionValue", + "message": "messageValue", + "reason": "reasonValue", + "messageExpression": "messageExpressionValue" + } + ], + "failurePolicy": "failurePolicyValue", + "auditAnnotations": [ + { + "key": "keyValue", + "valueExpression": "valueExpressionValue" + } + ], + "matchConditions": [ + { + "name": "nameValue", + "expression": "expressionValue" + } + ], + "variables": [ + { + "name": "nameValue", + "expression": "expressionValue" + } + ] + }, + "status": { + "observedGeneration": 1, + "typeChecking": { + "expressionWarnings": [ + { + "fieldRef": "fieldRefValue", + "warning": "warningValue" + } + ] + }, + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "observedGeneration": 3, + "lastTransitionTime": "2004-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.pb b/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.pb new file mode 100644 index 0000000000000000000000000000000000000000..cd92e73bd3900bfcce8f32afdadbf54646501873 GIT binary patch literal 1140 zcmcgrPm9w)6i>GW)7O7-SY!<=N#C^<(;9l8q6i0lqCZBBhz5{JRR}70XMlJ?SFvMX`%8=X7 zvnrtrQ{wd$i*_w2WsXOK#^r;YWs@3SUQ}cDr$!%zdT$sV`hQC*_84hT|>qKrf#tk`G za)HZug9J6shsGSbD=KKfqz;gNoaFjT`tCN2hZ=sI{cbwe2*Ft7tLN*)Y-ZAeowx6% zj>_iMCiGIjwO}8%fyhPxdEbN?pzIY*7ss<|D^ATf>~4S^vbC{$hG}ewyPeZ~mXSsN zDViGqDFx+cQOtM>gKAer=nlSI!XL^wONxlIc?A=3`z4g|Jx~jT(UQFXHE3csYd(P< z?cRq0dz~P+>T*dJr7FA(Q_zu&s^X} zZ5ormW?kQIkgITo^z<=4V@t!f`-)0|AKrL(p`DgjN;(RER%W)p*WBFmu&!`)UcBX5 Fe*o4rkF)>) literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.yaml b/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.yaml new file mode 100644 index 0000000000..8ca6b38bc5 --- /dev/null +++ b/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.yaml @@ -0,0 +1,108 @@ +apiVersion: admissionregistration.k8s.io/v1alpha1 +kind: ValidatingAdmissionPolicy +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + auditAnnotations: + - key: keyValue + valueExpression: valueExpressionValue + failurePolicy: failurePolicyValue + matchConditions: + - expression: expressionValue + name: nameValue + matchConstraints: + excludeResourceRules: + - apiGroups: + - apiGroupsValue + apiVersions: + - apiVersionsValue + operations: + - operationsValue + resourceNames: + - resourceNamesValue + resources: + - resourcesValue + scope: scopeValue + matchPolicy: matchPolicyValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + objectSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + resourceRules: + - apiGroups: + - apiGroupsValue + apiVersions: + - apiVersionsValue + operations: + - operationsValue + resourceNames: + - resourceNamesValue + resources: + - resourcesValue + scope: scopeValue + paramKind: + apiVersion: apiVersionValue + kind: kindValue + validations: + - expression: expressionValue + message: messageValue + messageExpression: messageExpressionValue + reason: reasonValue + variables: + - expression: expressionValue + name: nameValue +status: + conditions: + - lastTransitionTime: "2004-01-01T01:01:01Z" + message: messageValue + observedGeneration: 3 + reason: reasonValue + status: statusValue + type: typeValue + observedGeneration: 1 + typeChecking: + expressionWarnings: + - fieldRef: fieldRefValue + warning: warningValue diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicyBinding.json b/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicyBinding.json new file mode 100644 index 0000000000..65c73c0394 --- /dev/null +++ b/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicyBinding.json @@ -0,0 +1,142 @@ +{ + "kind": "ValidatingAdmissionPolicyBinding", + "apiVersion": "admissionregistration.k8s.io/v1alpha1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "policyName": "policyNameValue", + "paramRef": { + "name": "nameValue", + "namespace": "namespaceValue", + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "parameterNotFoundAction": "parameterNotFoundActionValue" + }, + "matchResources": { + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "objectSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "resourceRules": [ + { + "resourceNames": [ + "resourceNamesValue" + ], + "operations": [ + "operationsValue" + ], + "apiGroups": [ + "apiGroupsValue" + ], + "apiVersions": [ + "apiVersionsValue" + ], + "resources": [ + "resourcesValue" + ], + "scope": "scopeValue" + } + ], + "excludeResourceRules": [ + { + "resourceNames": [ + "resourceNamesValue" + ], + "operations": [ + "operationsValue" + ], + "apiGroups": [ + "apiGroupsValue" + ], + "apiVersions": [ + "apiVersionsValue" + ], + "resources": [ + "resourcesValue" + ], + "scope": "scopeValue" + } + ], + "matchPolicy": "matchPolicyValue" + }, + "validationActions": [ + "validationActionsValue" + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicyBinding.pb b/testdata/v1.33.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicyBinding.pb new file mode 100644 index 0000000000000000000000000000000000000000..222018318bd57156b631af07f48a533cbbbd373e GIT binary patch literal 1010 zcmcgrKT8}z6yMVW@1AyNfNFsdKtT)=y~0W6X(UziK#?8IQ(&E@F(5Zwv5y4%&i_7}geytRze@9LEl- zP|zu}M$yQXgv*9yX9F%$+p*Cqcx3g5i`u_L} ztwT6{1?`LuS!TYlFmVpY4zh?y4%G&vp$89D5o(lLM4`9Y&D+hmlbK~^H<}jz z0sjkcf`5WHk3#>4(t~IJ1D%~|HcQXm-miJ@^S*DgvG&k2bdOHwOlu~Ef|Th((Zbl< z*;sEg`EaolK|y!$;8j_egh<~*G?OxWDn-K5(iP)x*U)(zbp@TnJIYJIH&YN`lJI&J zBE2fBa~ivna7zPECQM}Z#n3O=)LNrk3bZVhsRLDE+35KCzVDxX{r#g8cn8M%{^ysm z4$<)))a5h+u3y3uZ#vVyh(gq(LdXhR3Y!iZzODK27F51Gmr<>R74_#vQ{r9p0A0}(uQwpwoE9_7a<_w9ZQ_@TTbH~+{Tj~U<0nR{oV`%8 z%r7IsdTkdWy%mh}L!@KV#Ey{f~(kdj9}|$~cVx literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.yaml b/testdata/v1.33.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.yaml new file mode 100644 index 0000000000..14fea5b332 --- /dev/null +++ b/testdata/v1.33.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.yaml @@ -0,0 +1,80 @@ +apiVersion: admissionregistration.k8s.io/v1beta1 +kind: MutatingWebhookConfiguration +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +webhooks: +- admissionReviewVersions: + - admissionReviewVersionsValue + clientConfig: + caBundle: Ag== + service: + name: nameValue + namespace: namespaceValue + path: pathValue + port: 4 + url: urlValue + failurePolicy: failurePolicyValue + matchConditions: + - expression: expressionValue + name: nameValue + matchPolicy: matchPolicyValue + name: nameValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + objectSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + reinvocationPolicy: reinvocationPolicyValue + rules: + - apiGroups: + - apiGroupsValue + apiVersions: + - apiVersionsValue + operations: + - operationsValue + resources: + - resourcesValue + scope: scopeValue + sideEffects: sideEffectsValue + timeoutSeconds: 7 diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.json b/testdata/v1.33.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.json new file mode 100644 index 0000000000..0106a1a27f --- /dev/null +++ b/testdata/v1.33.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.json @@ -0,0 +1,171 @@ +{ + "kind": "ValidatingAdmissionPolicy", + "apiVersion": "admissionregistration.k8s.io/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "paramKind": { + "apiVersion": "apiVersionValue", + "kind": "kindValue" + }, + "matchConstraints": { + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "objectSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "resourceRules": [ + { + "resourceNames": [ + "resourceNamesValue" + ], + "operations": [ + "operationsValue" + ], + "apiGroups": [ + "apiGroupsValue" + ], + "apiVersions": [ + "apiVersionsValue" + ], + "resources": [ + "resourcesValue" + ], + "scope": "scopeValue" + } + ], + "excludeResourceRules": [ + { + "resourceNames": [ + "resourceNamesValue" + ], + "operations": [ + "operationsValue" + ], + "apiGroups": [ + "apiGroupsValue" + ], + "apiVersions": [ + "apiVersionsValue" + ], + "resources": [ + "resourcesValue" + ], + "scope": "scopeValue" + } + ], + "matchPolicy": "matchPolicyValue" + }, + "validations": [ + { + "expression": "expressionValue", + "message": "messageValue", + "reason": "reasonValue", + "messageExpression": "messageExpressionValue" + } + ], + "failurePolicy": "failurePolicyValue", + "auditAnnotations": [ + { + "key": "keyValue", + "valueExpression": "valueExpressionValue" + } + ], + "matchConditions": [ + { + "name": "nameValue", + "expression": "expressionValue" + } + ], + "variables": [ + { + "name": "nameValue", + "expression": "expressionValue" + } + ] + }, + "status": { + "observedGeneration": 1, + "typeChecking": { + "expressionWarnings": [ + { + "fieldRef": "fieldRefValue", + "warning": "warningValue" + } + ] + }, + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "observedGeneration": 3, + "lastTransitionTime": "2004-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.pb b/testdata/v1.33.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.pb new file mode 100644 index 0000000000000000000000000000000000000000..68fc6c6f9b7a70289ec2ab51fa3e02bc6979313e GIT binary patch literal 1139 zcmcgr&2G~`5O$hKIFmoKs!*|tKo;VVL!pt7q8vc2Ku8dwf)EF8>v$5jcGlLe-8LX3 z&b$Q&PCNo{fYb-zhB$EM4Pd=%J8lk~5V!f;Z@zD4HXKU}4&WvYmP|?(bAbycQ$bT@ z?}cNz$Ku;3`#z?0pIm)OBNnI>UmTS6M{&evEAq*P?_1F3bcw1cLvne692E>cEkkZU z&&q_(Oo`W%7|o}Qhx*0P&RC$W(Y8PtXF}DX$T{ig_|lHkQ@`*%=u^()REyDRr{?RLARaSp3?B+{CCr_MhXn0K)zTdW-^l&Y`uMV z=*Y~kCZUJ=tp&TV2}ITc$onQtLCIdyboP2$O~tAChTSc&LtGiVXPCx@xZ63&dl^~e zpQ5=7Af=%EEQ%h_U{KAf2;EbgOV}e3XGsxp)>|+Uw_idT-vc>QFj|uLzZy-!DJFS98Cfa|ln3jdYI;Ki$2JNj4TCMAg+doa$`H0cw z-CvBx@Z}}6QyQ>TAF~-*x1qTa_|Tz3$lPc$$L>;YYQ7ynJ3$R5@fQ63n$1p^W_+2* z+eWXUx~E*AC*P5vx%#USz{Z3M8Z%`8(vexIzoPFwZsVhdo9p{k*V)HrERFQ1S!SK- zH(}++&w;CppmxHTdeww(W_+(*CFhN0+aG!C4FOG<&^-J)tUYp=@q3~=Ko^%{}(r#W1q;j)#&q^XE(5)9Whu-0{ y$@r0yMK(v=#S^fI*Qr|B+y@ zzCbT|h8#;Dp>I&gJCq)J?i)1g-B=bm_crs*-#6b(I#3RJjkahsW=b)^B_vE0k`~(D zP6uk6i5HXI01CQ`H$TvfMLNWja|lL4q^|^zSyI|`eEkUhYN9r$W6+r;;I#xe=pekC zL!>i{s+@*4#a~sB#Y4tZQ_*uv78$GmM1m5f)OjFh#0)xkeCWEjH-CP#Jm*+j-~ay9 z)(N^;N9~LTkg2yY#mm+-6@iaBlygy-jZE09`6lOb54BUq?O?Lt?^kSkU7E8xk)6h% zA-gf-T9Hqhpy~6q5ulYZH;=?xkE>2um$TVAUz_wY=rr^F?2+Ou*g0{j_O*<>564MT)NR1@a?o);vrxM`zM4B)sK21B0W_# zS2-3e;*y8CAdD*1S#B2!lgIbxd{sM=)zim|tU7SH0Yx9V*cZomY_24w`r+DOAWB(? zLODdWtC_drTQJ7i zYyx=kX%Z20Y%Ajw@`8C7x{>vrLo7$>L53{iMwV+3>XjNQzk&G(v_$67$;Mp b?Zbb$3u;-6W@q$RMqj!fP%IKTmS$@|c#reJ literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/apidiscovery.k8s.io.v2.APIGroupDiscovery.yaml b/testdata/v1.33.0/apidiscovery.k8s.io.v2.APIGroupDiscovery.yaml new file mode 100644 index 0000000000..d244a5af91 --- /dev/null +++ b/testdata/v1.33.0/apidiscovery.k8s.io.v2.APIGroupDiscovery.yaml @@ -0,0 +1,63 @@ +apiVersion: apidiscovery.k8s.io/v2 +kind: APIGroupDiscovery +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +versions: +- freshness: freshnessValue + resources: + - categories: + - categoriesValue + resource: resourceValue + responseKind: + group: groupValue + kind: kindValue + version: versionValue + scope: scopeValue + shortNames: + - shortNamesValue + singularResource: singularResourceValue + subresources: + - acceptedTypes: + - group: groupValue + kind: kindValue + version: versionValue + responseKind: + group: groupValue + kind: kindValue + version: versionValue + subresource: subresourceValue + verbs: + - verbsValue + verbs: + - verbsValue + version: versionValue diff --git a/testdata/v1.33.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.json b/testdata/v1.33.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.json new file mode 100644 index 0000000000..699ca16525 --- /dev/null +++ b/testdata/v1.33.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.json @@ -0,0 +1,93 @@ +{ + "kind": "APIGroupDiscovery", + "apiVersion": "apidiscovery.k8s.io/v2beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "versions": [ + { + "version": "versionValue", + "resources": [ + { + "resource": "resourceValue", + "responseKind": { + "group": "groupValue", + "version": "versionValue", + "kind": "kindValue" + }, + "scope": "scopeValue", + "singularResource": "singularResourceValue", + "verbs": [ + "verbsValue" + ], + "shortNames": [ + "shortNamesValue" + ], + "categories": [ + "categoriesValue" + ], + "subresources": [ + { + "subresource": "subresourceValue", + "responseKind": { + "group": "groupValue", + "version": "versionValue", + "kind": "kindValue" + }, + "acceptedTypes": [ + { + "group": "groupValue", + "version": "versionValue", + "kind": "kindValue" + } + ], + "verbs": [ + "verbsValue" + ] + } + ] + } + ], + "freshness": "freshnessValue" + } + ] +} \ No newline at end of file diff --git a/testdata/v1.33.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.pb b/testdata/v1.33.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.pb new file mode 100644 index 0000000000000000000000000000000000000000..83c2857fd8a87e2a818788f8b7243c45a8d676ad GIT binary patch literal 697 zcma)3%SyvQ6isWv_S!aWP>{F_xap$SfDpQ~2;u`NA}-ub+G#pAoe48Zp^87?2e^0b zC-?_K|3O^1cH>Ua$)u^RZo0d3?wNbfId|X)4H~e80@5X-!$z2o>jOvB3ELUjE)LPI zQQdDJ9dZ^02Pwn&%E4lgIbxTtz#U)zim|tlDt32?Zay*cT^wY^)`v`r%qo zMwGG;g>r~$SLWV|bG-+J0inra^H;w$Q&ZDr6!StF87IT_9-+u5H&URQbDwdcI7AeA zm@B|2vmo}L$~XUxv80E$$@fY{v*j@Ccg4jxNRnyhAbWe)s))#)C80un$U;#bWR{8X znSs(GWgEbYPm_pPV4HJJL7sNH&Ds!zdXbO#c^Z4XtOjzEo4B)e(Puo2PniHsy(3TS gF;1pH%ZLARm(;Qx&6?9=mV455pJI{7F*Qs30dd~-m;e9( literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.yaml b/testdata/v1.33.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.yaml new file mode 100644 index 0000000000..41d1feb4ce --- /dev/null +++ b/testdata/v1.33.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.yaml @@ -0,0 +1,63 @@ +apiVersion: apidiscovery.k8s.io/v2beta1 +kind: APIGroupDiscovery +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +versions: +- freshness: freshnessValue + resources: + - categories: + - categoriesValue + resource: resourceValue + responseKind: + group: groupValue + kind: kindValue + version: versionValue + scope: scopeValue + shortNames: + - shortNamesValue + singularResource: singularResourceValue + subresources: + - acceptedTypes: + - group: groupValue + kind: kindValue + version: versionValue + responseKind: + group: groupValue + kind: kindValue + version: versionValue + subresource: subresourceValue + verbs: + - verbsValue + verbs: + - verbsValue + version: versionValue diff --git a/testdata/v1.33.0/apps.v1.ControllerRevision.json b/testdata/v1.33.0/apps.v1.ControllerRevision.json new file mode 100644 index 0000000000..033ce01e80 --- /dev/null +++ b/testdata/v1.33.0/apps.v1.ControllerRevision.json @@ -0,0 +1,57 @@ +{ + "kind": "ControllerRevision", + "apiVersion": "apps/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "data": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + }, + "revision": 3 +} \ No newline at end of file diff --git a/testdata/v1.33.0/apps.v1.ControllerRevision.pb b/testdata/v1.33.0/apps.v1.ControllerRevision.pb new file mode 100644 index 0000000000000000000000000000000000000000..f1221277de4b8fca01bccf1f523137dbf2375383 GIT binary patch literal 501 zcmZ8e%Sr<=6rDbxov7_NxF`c|vMi#uAe33QI~5TT7w$6C+Y*~eLNZgVr9a?bxb_qL z1Ev2UE?oNun#s@y?oQ6V_uO+&COz$-LsTPD>XT{5_XmQfN-zfM2BuU~!Tpa4`Ya=t zlLYPv%fR0s0|!M?xLQ#`Bd=;n;-UrbX<(yE$|rWBUC-#yqV9nLEiz^LK;`O|?bZ7A z`ts%bt?D`F2EG2g8+48CTgYW30;Vru=I<2HPDB_r2<9m4u({!D`CIXv zt`P$^)VDKPBokIqdA{g-I*Zmx*ieTkn&XWf9AbDRiDYmbi^O~lKEnAih96`)6-lmW mI4vQ@;T$WFjK)Ocu(L3%$t5$`C{77AxiQEKi&iCYu=59y>8#=a literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/apps.v1.ControllerRevision.yaml b/testdata/v1.33.0/apps.v1.ControllerRevision.yaml new file mode 100644 index 0000000000..052b19c634 --- /dev/null +++ b/testdata/v1.33.0/apps.v1.ControllerRevision.yaml @@ -0,0 +1,42 @@ +apiVersion: apps/v1 +data: + apiVersion: example.com/v1 + kind: CustomType + spec: + replicas: 1 + status: + available: 1 +kind: ControllerRevision +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +revision: 3 diff --git a/testdata/v1.33.0/apps.v1.DaemonSet.json b/testdata/v1.33.0/apps.v1.DaemonSet.json new file mode 100644 index 0000000000..b4324a7926 --- /dev/null +++ b/testdata/v1.33.0/apps.v1.DaemonSet.json @@ -0,0 +1,1819 @@ +{ + "kind": "DaemonSet", + "apiVersion": "apps/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "template": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "volumes": [ + { + "name": "nameValue", + "hostPath": { + "path": "pathValue", + "type": "typeValue" + }, + "emptyDir": { + "medium": "mediumValue", + "sizeLimit": "0" + }, + "gcePersistentDisk": { + "pdName": "pdNameValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "awsElasticBlockStore": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "gitRepo": { + "repository": "repositoryValue", + "revision": "revisionValue", + "directory": "directoryValue" + }, + "secret": { + "secretName": "secretNameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "defaultMode": 3, + "optional": true + }, + "nfs": { + "server": "serverValue", + "path": "pathValue", + "readOnly": true + }, + "iscsi": { + "targetPortal": "targetPortalValue", + "iqn": "iqnValue", + "lun": 3, + "iscsiInterface": "iscsiInterfaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "portals": [ + "portalsValue" + ], + "chapAuthDiscovery": true, + "chapAuthSession": true, + "secretRef": { + "name": "nameValue" + }, + "initiatorName": "initiatorNameValue" + }, + "glusterfs": { + "endpoints": "endpointsValue", + "path": "pathValue", + "readOnly": true + }, + "persistentVolumeClaim": { + "claimName": "claimNameValue", + "readOnly": true + }, + "rbd": { + "monitors": [ + "monitorsValue" + ], + "image": "imageValue", + "fsType": "fsTypeValue", + "pool": "poolValue", + "user": "userValue", + "keyring": "keyringValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true + }, + "flexVolume": { + "driver": "driverValue", + "fsType": "fsTypeValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true, + "options": { + "optionsKey": "optionsValue" + } + }, + "cinder": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue" + } + }, + "cephfs": { + "monitors": [ + "monitorsValue" + ], + "path": "pathValue", + "user": "userValue", + "secretFile": "secretFileValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true + }, + "flocker": { + "datasetName": "datasetNameValue", + "datasetUUID": "datasetUUIDValue" + }, + "downwardAPI": { + "items": [ + { + "path": "pathValue", + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "mode": 4 + } + ], + "defaultMode": 2 + }, + "fc": { + "targetWWNs": [ + "targetWWNsValue" + ], + "lun": 2, + "fsType": "fsTypeValue", + "readOnly": true, + "wwids": [ + "wwidsValue" + ] + }, + "azureFile": { + "secretName": "secretNameValue", + "shareName": "shareNameValue", + "readOnly": true + }, + "configMap": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "defaultMode": 3, + "optional": true + }, + "vsphereVolume": { + "volumePath": "volumePathValue", + "fsType": "fsTypeValue", + "storagePolicyName": "storagePolicyNameValue", + "storagePolicyID": "storagePolicyIDValue" + }, + "quobyte": { + "registry": "registryValue", + "volume": "volumeValue", + "readOnly": true, + "user": "userValue", + "group": "groupValue", + "tenant": "tenantValue" + }, + "azureDisk": { + "diskName": "diskNameValue", + "diskURI": "diskURIValue", + "cachingMode": "cachingModeValue", + "fsType": "fsTypeValue", + "readOnly": true, + "kind": "kindValue" + }, + "photonPersistentDisk": { + "pdID": "pdIDValue", + "fsType": "fsTypeValue" + }, + "projected": { + "sources": [ + { + "secret": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "optional": true + }, + "downwardAPI": { + "items": [ + { + "path": "pathValue", + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "mode": 4 + } + ] + }, + "configMap": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "optional": true + }, + "serviceAccountToken": { + "audience": "audienceValue", + "expirationSeconds": 2, + "path": "pathValue" + }, + "clusterTrustBundle": { + "name": "nameValue", + "signerName": "signerNameValue", + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "optional": true, + "path": "pathValue" + } + } + ], + "defaultMode": 2 + }, + "portworxVolume": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "scaleIO": { + "gateway": "gatewayValue", + "system": "systemValue", + "secretRef": { + "name": "nameValue" + }, + "sslEnabled": true, + "protectionDomain": "protectionDomainValue", + "storagePool": "storagePoolValue", + "storageMode": "storageModeValue", + "volumeName": "volumeNameValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "storageos": { + "volumeName": "volumeNameValue", + "volumeNamespace": "volumeNamespaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue" + } + }, + "csi": { + "driver": "driverValue", + "readOnly": true, + "fsType": "fsTypeValue", + "volumeAttributes": { + "volumeAttributesKey": "volumeAttributesValue" + }, + "nodePublishSecretRef": { + "name": "nameValue" + } + }, + "ephemeral": { + "volumeClaimTemplate": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "accessModes": [ + "accessModesValue" + ], + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + } + }, + "volumeName": "volumeNameValue", + "storageClassName": "storageClassNameValue", + "volumeMode": "volumeModeValue", + "dataSource": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue" + }, + "dataSourceRef": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue", + "namespace": "namespaceValue" + }, + "volumeAttributesClassName": "volumeAttributesClassNameValue" + } + } + }, + "image": { + "reference": "referenceValue", + "pullPolicy": "pullPolicyValue" + } + } + ], + "initContainers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true + } + ], + "containers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true + } + ], + "ephemeralContainers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true, + "targetContainerName": "targetContainerNameValue" + } + ], + "restartPolicy": "restartPolicyValue", + "terminationGracePeriodSeconds": 4, + "activeDeadlineSeconds": 5, + "dnsPolicy": "dnsPolicyValue", + "nodeSelector": { + "nodeSelectorKey": "nodeSelectorValue" + }, + "serviceAccountName": "serviceAccountNameValue", + "serviceAccount": "serviceAccountValue", + "automountServiceAccountToken": true, + "nodeName": "nodeNameValue", + "hostNetwork": true, + "hostPID": true, + "hostIPC": true, + "shareProcessNamespace": true, + "securityContext": { + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 2, + "runAsGroup": 6, + "runAsNonRoot": true, + "supplementalGroups": [ + 4 + ], + "supplementalGroupsPolicy": "supplementalGroupsPolicyValue", + "fsGroup": 5, + "sysctls": [ + { + "name": "nameValue", + "value": "valueValue" + } + ], + "fsGroupChangePolicy": "fsGroupChangePolicyValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "seLinuxChangePolicy": "seLinuxChangePolicyValue" + }, + "imagePullSecrets": [ + { + "name": "nameValue" + } + ], + "hostname": "hostnameValue", + "subdomain": "subdomainValue", + "affinity": { + "nodeAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "nodeSelectorTerms": [ + { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + ] + }, + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "preference": { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + } + ] + }, + "podAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": [ + { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + ], + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "podAffinityTerm": { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + } + ] + }, + "podAntiAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": [ + { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + ], + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "podAffinityTerm": { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + } + ] + } + }, + "schedulerName": "schedulerNameValue", + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ], + "hostAliases": [ + { + "ip": "ipValue", + "hostnames": [ + "hostnamesValue" + ] + } + ], + "priorityClassName": "priorityClassNameValue", + "priority": 25, + "dnsConfig": { + "nameservers": [ + "nameserversValue" + ], + "searches": [ + "searchesValue" + ], + "options": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "readinessGates": [ + { + "conditionType": "conditionTypeValue" + } + ], + "runtimeClassName": "runtimeClassNameValue", + "enableServiceLinks": true, + "preemptionPolicy": "preemptionPolicyValue", + "overhead": { + "overheadKey": "0" + }, + "topologySpreadConstraints": [ + { + "maxSkew": 1, + "topologyKey": "topologyKeyValue", + "whenUnsatisfiable": "whenUnsatisfiableValue", + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "minDomains": 5, + "nodeAffinityPolicy": "nodeAffinityPolicyValue", + "nodeTaintsPolicy": "nodeTaintsPolicyValue", + "matchLabelKeys": [ + "matchLabelKeysValue" + ] + } + ], + "setHostnameAsFQDN": true, + "os": { + "name": "nameValue" + }, + "hostUsers": true, + "schedulingGates": [ + { + "name": "nameValue" + } + ], + "resourceClaims": [ + { + "name": "nameValue", + "resourceClaimName": "resourceClaimNameValue", + "resourceClaimTemplateName": "resourceClaimTemplateNameValue" + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + } + } + }, + "updateStrategy": { + "type": "typeValue", + "rollingUpdate": { + "maxUnavailable": "maxUnavailableValue", + "maxSurge": "maxSurgeValue" + } + }, + "minReadySeconds": 4, + "revisionHistoryLimit": 6 + }, + "status": { + "currentNumberScheduled": 1, + "numberMisscheduled": 2, + "desiredNumberScheduled": 3, + "numberReady": 4, + "observedGeneration": 5, + "updatedNumberScheduled": 6, + "numberAvailable": 7, + "numberUnavailable": 8, + "collisionCount": 9, + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "lastTransitionTime": "2003-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/apps.v1.DaemonSet.pb b/testdata/v1.33.0/apps.v1.DaemonSet.pb new file mode 100644 index 0000000000000000000000000000000000000000..37f52c28469df21fa19fd036ee31b0fb191ff303 GIT binary patch literal 11057 zcmeHNO>7)V74{oDo0*#5l>d8^$lEN7H4Chnz55L ziX$TJ+`6l(tKX~o-p}`{E}sep$Ot)VcwX?*_UCBfjKSKjv&KUD#;fE{IZ|+pHha~u zJB%J{F^Bm^$j&ECS|#cYJj0Yj^m4%L<}!CKi!bW=4!6Y9?1;|-x8vhD<_Fw$MC+-e z^ZESyZ~f)%q1wO_KK4UemW%)lw|t4;10HouAjig~WXCMmTI$7nHMG|-CcMfxY= zYrWIxsKfpD|1(${n8nGMZ3P#0J-ITCA(H#nx94j?XER+1v8caWCCdc0Y8#=swVWzl zQ{LszUm*F*Y*#*)r68`9ODk?iQ%R}mJFoP&?a6Q3AJ3Ctj;O}*)(9CR1}N?eV5ZN)?7!m*s50Rv1|u078Yu?M-%il4^uzo%ITjjz zi-jw$9~!olG0$I@hCMN;5A(nb_@WasznQp)x~jwsG)kWMSOWJntQM68eGN7#cX-GR zR3H_2=>(}T$MRh6gfZS#u~sRmn6|;&=?68~_!=prM~jvz{(|r}+O!Z^Qzg<1p6g0g z>V*!fE{4pO(CmEfw8UFOmGLxeo+U-g=jj@$(`o9^DX43NxL)eEO7XLp_0o%v+-}g- zsr<9O3S~>6WpeBBW`B{}QrEgV$qZb5p42QOGy)Y5Nz3|rjJs>_4YHx)`Z?0;^=L)- zx|Ia_+BBi2>x2f!XpwFNEqD1nEwX~Cp<3=bAS@-6E?zt@cc_-@+810qva`c2*?9v# zu@}dcV9W5cxHJK8;y0?k^ifE^3CpA^%`MfU%Oth20O5n6S#fP{?xsrVBVFzBn%#zZ zg4(ut5GIycl(UP?o&Y`Dr8;T(ZpV{ID~8N5oKU>nfkjfbcyKxW87)Px>#K{RU#pph zxrMMi=UQ>_Rlzq6vsn>We%@l*(AY{^;^@4oV z^W6}g4#vncZW|#WHLIoT6dPD0X-UPOk9Q!|cS+S}1wMe^=E!eyWcpzHItBFWPZGI^ z@&n-uefe=xHaZq(PMjqnyfcff?Rs-HrtwuZ4+yEV1Vx-eh%l!cs64orGJ^ZRhI%Lmq=Yqb7pGAyT@3qzl8c0wl7w$a{30hBHu^ kLVk9npUyn_ zbmmt%QZr1G1wmwwah!aC)G!a{Z61mpi#&Fe%lPbdOg6JNt=Dk%Lj`SpH1-_}wh;s= zP-o-6rv9VxNi;K$e<^jRG;@Fo3z&cTK*RJNX0vp%7q8vo{2iVn6`wVkpPD(XdL7%A z5kr8R{=BT(x|)WROt+0xLvj|qfSHxtgL-wx^^wf9&hR)Jc~P07mcvA=9C=*VOcIyk zmK%hNE8>TZpMWx&lI@5lh#u{GKt4K>(*s9xZL-@Nrc?!k-NU=)=MIRlNmY$f3_zjC zlC5;1>#4NejuWO)TrVNvO5f_Eve$P#10!0(<7OjP77aRk#gnVt7{kQ5gG6dw548bw@R-`lr7lD}A|CZ(U~aLPPS?j3$-DOEIO&~( zDs$BGKub|x&eL#$+4|7*k(p;s9o=}^1>F2`j(qq3yn;Dg!KXk5t%{D#Tf=}K^QTMC zB3Wu<5h6n7IrPO*!kGkYe?+jBm2Q`E^&db+N#3xe=b!}(u`RHMw(uE}<(ahLyD<;Y zGHR+5n{6{mc@RPn)j>|@mn!H|%yW?;iK$kX$+N9?U@Z8|Vh%Dgd(C5J>WS(2-cE^p z>UW&EU>(7l4xWMyon!*gQQI{QJF<`!-)$yT14KbDK;V1Le3ts z7@_Jt*r!q3r!Dd@vlYt;l#d(Fld6OH!Wy$hogu2$9a9^`FXqQ%Z#8F{5vEdkmWI1K z#OT#>G(kG%HTWiMf&X@n{BLN+&{y!z`?S-)0WRdnOJ}XW%ZGD5@KhuFO`uVVY;|lUXSfM{;)KU<3a9E5rzCv!iBne7 zqrJ3IQ)uI1P|rSbO3w89#7Uv38JqaH6Q^4Mci{8NnQG5Ly;6bGi>%p1)+BPt=_7Yx zk{sody3`co=JoqfCViUdv%^*u|63Ev%SDOfae! zU(fwIN>%qH&)V3|7IW5}0BapVlN+0HZQ^i~YGkbA5u2QA;?)jZJw@8aXw-2552!+w zM9uG)hTq7&Qzrcsq@RNHYq$N{ZHMWY2K8&V=neX{+lK{K?J%Pr~A#egN@VcshYG&8Y zB5%M_=GI+RUHx9w`}w|CwSGJpBU9vn;d#Nc8=t1+6!UC%tH+#>zWM_BV~!LYqsLw_ z>^`FhJIrCe5wi11lU9j(1J5w!5WO5QyM2~B>*9-gzRxZ3)R^>H;P!nS$NYf1j%Yo8 zpq0?tHMu?M$?way0 z#$0}m6xO*Tf2?Kl>!~#Ls^M`}ka;)`eznaV!{%2}KrzpCSR_P@t#V-1{)*;a6I%abe9+(&ZX_-3mX^w-jr5R3YUpUYAdS4yT8H=@a;+}fL88g1PFVB^k{pG~Un@!BMrCI!z3yK;*P zVY2y@l46fpyx)^O;{@ilW2ER=sVC85J2RG<@mbJkNqNJy`#pB%l>BOVM17uAedf6V z4_!Yo3!iQ9)W5Wf#eHU`-HlI?YQRjNh1q`(DMpnEKQkW5(9}pVVE#s8|4Ki!Hps!y z@H;GAa{bV-rHpz0l638vaeaaZX28!lA@kcwfT*iV%tN!}iI1h>o`B_|vY;=*8s!cT zxq%9#0xupV73Nr;%bieuMpdzvDXEyY!F%ZkHCX)$Dfe8Q$&Edm65d0v79wk^M0&w< zU8zdF&_~t9kVXmJ&gV`?yfsxBPr%w~QnY-Yu8}&OrVgEjx<-iWrGcvyKZ{u}Kl9M- z23?)XKRv8awgg%xw;pfy=eR9(t*evF!_}uq%`!qGQ0*aUSy_qg?izfJtg3eXBpHr- zv?8M2Qeyhr9HFM`ga*fak!}Pn4@5pK@`BlYwcK?;vy`TE>C$<*r?uR`zTn!C%}s8} z&KvO2?RH!Vx`v-+rWtq{zftw253}@}aF$f1yQNwTxTH26p!uNDEV(u}w^F6_$$|EG z&2B@Bptck-6RN>nzZ( zevp=nR=z9y!dQNUl#RZ{nG@qAH1Et~>zhi@qt$?SRIkzY6dPcGOPq8LYPsLRLSpvm zqSHxfsZm3Q?1tS@)%-qO8i;{47#OX8f=tLMPlln-*ZLt7z-?-{Q5ecVjCvPt?I*AA zAHkUq9?twcM{0&?vLJ~3G0v<{lNus%-s7Rzu_$6kSjJ~BA=u2?v|-29_ta?XQ*rEA zu#F%{4Yd*fHH{z5kD;4+{P{GT(kuWfJfQX5u7>GD+-C9Eu)Pk7^LKcXRD9NEe(L75 z>h*0~W(;B6^v7k@*Hsu>k1M4ar*c0wOE92leWv>m!}%oZ>MWc}AI{mP4Rbjv}sW zCcvfGb%XHClK5fs6;MV~vJue)(W89_$opqN2O!<5;!!UKW|zf;x_(HJd|+>m zkl{I~GDi&=V=2PrJWVHv*7wcrpa0151FMg_fNMX>k#GN>S1^Yw_!!8bRWY!67ck++ z{OR%&NS1n7hKMZl9LC}Za3%@cpA@WRX)vT*{RdzHCvR9Xa?pZ>wk>Q8ec_WN!qXoB~NsEfwAB-3rj=XurGMbOd~Np zw7pYWKK1*~$zTPIH61()t2)U9pi{PM8g}F%OTODqs0tQ(-gnHm0KNzC13;+%ERt!A zz5I&!Ev*j3B3y{!hMRD7hm{u4Ud(VCj;Ov_wUAbu*;d?v$KA{B!pF(Mgm0y5PboGb z)k4l5u^6H1J=md9+o3IrFpY}k1j@(Fr%2U7yl{cpqRtT2>kg_7;uoz$akM&VnvqSV z@+?jac8Jl-5Yh!LQyj|@nI)Uw*c|C#|lNURZb+rjWabyvGLr_#VK&0MB?B>xrXGg$!QHVQtvOlh7_! z%pxWj)r+s^ei1>{ZQxm(-t01G#R;(15wy9n7S|^B7E~i+JruFYlWn}*fvcxT+nkCz zF5&@IsFJAGPB8pN?#(h8L68vy8P#q_wc9?^5eAKFw-^mZwc7_JR_zgva2~OCOK0R| znuTpQaDJGBn>n=7L>ZThKFGC)+S;AyU2FFXGF=C(-qN|Ku7y5W1Eyh!L7zUp&XkW%oJR}vx>*v)e zi&zK``w}1Nc%*Fv@vYQ)3G05*$%~k%fp7)V74{oD*i-YHivQA^MBZjutXW`<#Y)ylNU@!O>~*qc5|fodh<10)xZZaDq8fQ*r0!}Ed{x4%e9gLyVLjSDQKzg;7L%8|TdwAt4U zyTj2OOt&5rska63MZV}8J0N3_lj zFN}#znSnX*D^2bgHouAjig~WX1}U};$7nHMG|;l^MfxY= zYrWIxsKfma{xet|n8nGMZ3P#1J-IXWA(H#fcNeNbXCvJSv8k^&Mu4sm)T?cT=H^PO zc2#+o%Rf&>w%D$GE=f^bDVbK-jwX|GYwv!oe{fI!;Qn}?{AyHnk2gojILUiPxG9e) zA0~%SDJis>#XD`;Ge}@YJ4Fhfm3k5_G&5tF9Gn7uij=lpyVGV%XXIDCBWg3G;xo?; zc+5r~ajtE$%Zj?VkMtsRYdQS(vRmp%_&r{N!LHLtP_ZA?rCTglns3qHYj&^ z$PH8=6?pk1DKp3NT<(POGpdT!prmZt25+YyRAK!aq||nCCO7tMN_ZQ+T8ONv66tx* zb)_n`drEXGw3| zqh%58Ruj|LrU^A&Cp0+bi}WC9sVnknkrzx2Rdd$?%~G1urAz1KnO1XM=Yo4jc6PWW zJ8!_J_u6qe*fjhsGfl!9_>HPBeUzo&gcVYe?v`rN<&xTXfaZfnv+81g+)b6zN4whN zJ-ZDH1hsAPAWS^7AZHhcJqdbtN;T5*-HsAep>1X65a-rq6eFjEM2gOJH+ z)@$Trp6`YjbTCVvaocDDQnPBhPqBm5la^Hch4=(geV0{zR^dbVU5@-FN2U*Uu2Vq2 z`6MkDt^7dtg|YkuDH$D$GbhGLXx^E})^?PjM=Jqusa~TUDmK6XmpJJ(RC9lT#l-B> zO{b&MQlo|p+4Z`ks`-7m)D;7(&^22B962VZoDV~vZ*)Q?fZJGaqcD`N81)g{Izrw$ z(uXro9?twaN2-QtvLJ~3G0v>dlPV%{-sYh=u_$6kSjK0sA=u2?v|h*657lUEV{z47u3cDy?prc?!!-NU;U<_~CL$5l0o zu>lH2mTjdALr=NwcAPNH;(8G&SNc{PlfAy{8JN)$CN~@LvS`rRE1ult`ZxmT4pP-^ z)?kM9iet;v*Z4V*9|I|quJfYjRDe_&f$9JTc!aictMk!`h)2B;n42sn)U^pk@~*Qv zL3-z)${bZ>jKv6-^E90xS|6G|GV`gq;q|9oz>S~g$oK!xJD9^AdQ8ec|&Y!#SuSHpG0#PgB&KStkY`%$z*zK|#T;a0_63ibX(Xl- zdpo7&Q@`WP2Wx1o>EJ0?*GVP-9kX52uprlq*XJuUN2K;k` z+y>GhtK@(+M|#k47cuf4{;Yo6ND~d;5``keD3-@-0dzpz6ZxYggU7TtSWA5qarB4U&CP5ik7cTbVFJ{EOc z#0#oWB~c6e!SEZocT1!XLHZD+U%TzsZaYjz7}T%bVl?R2ZXcFdwa2)^dCb}^os>V* zEbjRO=k*-i%&DcoTRFJX)o?ersMNhRyabbfZ6XFxeyP$=b+unaC}690({WEqHLjRdl1ZGtzpS!TVlwV;UJ?wXmh zd%8RQv+FfN0wW~k3&YwV_ zwX?`;VJUN)sj9AeRqv<1uim?K)E~oBc#rP7{tIiLC*`F;4`?^EmS{l!^eX;y0herj zKwr_VkdnPUYEuseoK2e4TGZ>ix*>*WRi9ej)6Blazi1RgX7XRn36J_t=)pMZ`OL9- z>(M>!V)4B<{`%G~Wo!X{{p$X^@M{sTOyiQJuTsl@nQoA>_{qOm)o@L>Z3o1JNqDy+ z{pVvYzKBbgm@O7oGx@btnnqoBnJma0I*Pn{m)W|-u7H4io@;0oR|dMR_o&AkNX>Dh z{U_q9!_#Q6hkNh+XIvR;!erDk{c{_xIGNTiT=@2P+KL~prYFG<^`n&{BBwFzYoG^4 z|8%--Mfxw6e-0Nf(GBstDnxOFWNLXWnoP*8zWw!);vT=^J~)ftoRHn)jR|n2lB)-O zp`ucdD4!5q9#E5o1JN^%(VTi1mt8aUBvS5X#xgxVgR~i3U308(Ku?_zUk#6F%;CC6 zUB_pE<0WR{(KVL(ms&HKM~$?*`8izoso~KeTX(-?RGIM8-vr~3Jy>1d98uBLQP^;qdkA>kLL!Gj8pcl|8 zVKxhx4jV`XUO0qn)HYp**@5_s$YON}t{Ilj2I&V1TKNX94jh=ti9MTOHUO{YBCE1Q zTFG@Bv6V(Cgst--%?h}k$Lt>e*OFyChE`AFvgxt(jO6K5dFTvks2DqL8n`O)Z$9hA z=O3zWq{&lxCx3QbT;x+DFPPb-6s{pKOJPdq&z}`KRSG%1z}eyT zb!Ljr>*$%yc3kuOx|iKd)97{hM&2)Zn5Ex9r*U1lTe^#!OR7^om=74uqGK^*Bi)oX zk!z37>=tTc*lmybLE@QZF*{fGG}1CHHE_>!LRVN?IiR*~2mH@%bP88Z=3hz|BbDgy za_1E9R~17y`e2r495cRtW#gMg&FmVygWyVa&82ruQ!T0m79Y-23Z#9A?V? zh96K7&4!J9()FAGf)3o0C!7J8fY_Omo>S~#t)wLtza48J-S2|DpGEXO`h5Zau7GE^ zr`H)ozWF#U7p#0+_64#0Ag=16$*3LUBrxyHV;k#I&?9x9^<=M6cN7~yfJ>Zo7Ab{4 zqWQ$^(?cf{!cwD#4A~94qrCHb=zJ~)DkwKv`wZSEraT@59$O6q%7NSDa3eRAT#Wh< z-Q10Tv3mq(9zUGBP`?5*8ps0ZR)V&YCCGQ zjmbE6%v-wer-s^$S54zb>sfF!m%WsRQ<4Qhi3hY_+}1E{h}$e29=6xKIR8LT{l;lmY;) zY7}uDBLObuzT*d{7Wsm$pCM^9!D|ss;63X15&rm_oNW6hR}bW)VM`}j63 z?0~$DN^F39BMX+)1)--la6&ssZ*i>xlq>z$m=wL9;p$;+-d<<=Ac z=Mbps8tqWs{F-fvtFQBOgnxu^4d?Vl&d30%UPQ_m1bBe9;;2iJM)*&y>>GU=6Y9o( zN%EX-4&vcCh%|=+jIk2oa+Y2vfYx`-?wDdzkO+dAPvqvn3Z}l$PqEX$VEs8MBnrZve$E_o{ZUbIeq85K=h~De=$_;#p_Wn3p z9XE`~rc!wp_T@YH=uS17ARTi7eGB!G_f`S_Z`KS~BN9Qe^`JQ0-chq&nC|)Hu$!rNb+lSkZZs0O#6 znQ^u2=wC&A3*io4#M^vxB-T{2_U8_5UU-_>1}|K zbG7a;%H5Ye_`(We(dN{E`CGJ;zau!vPu8B*k(PHPKk#H*_Unj55ZMeZ2{YV4BjN-J zIEhn@h*NTXjfhkBrbmWpqbkwHouHm0;*{j{M#M>?s2Q91q!Xu`2;D|slya&=iF)Y; zPAk)H7g!U=lC!(-paXah6V#p55`->b;9WH3dd%@yu#tasd+qcL`U5Ci%HLif-F&(@icX?5(hVBteF3EVwk1Dap)K0^OSkmI3rz*CtL8N6D6 zw_yh|p?!EUig5lQ-Z&&dMf{Y-@==~u~M`{14(}Uylm@hI)f7Nm_HmVeznwj1}hP}I00EH zI2WOqdepK6sm8crCA!2f!#q$z!Bblk@n$=632kd%=t7Mo6ah$ewXnjMWQpW`shI+0 PwKZ~TyHHlgw6XsJzNy7a literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/apps.v1.StatefulSet.yaml b/testdata/v1.33.0/apps.v1.StatefulSet.yaml new file mode 100644 index 0000000000..fc94ffd200 --- /dev/null +++ b/testdata/v1.33.0/apps.v1.StatefulSet.yaml @@ -0,0 +1,1340 @@ +apiVersion: apps/v1 +kind: StatefulSet +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + minReadySeconds: 9 + ordinals: + start: 1 + persistentVolumeClaimRetentionPolicy: + whenDeleted: whenDeletedValue + whenScaled: whenScaledValue + podManagementPolicy: podManagementPolicyValue + replicas: 1 + revisionHistoryLimit: 8 + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + serviceName: serviceNameValue + template: + metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + activeDeadlineSeconds: 5 + affinity: + nodeAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - preference: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + podAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + automountServiceAccountToken: true + containers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + dnsConfig: + nameservers: + - nameserversValue + options: + - name: nameValue + value: valueValue + searches: + - searchesValue + dnsPolicy: dnsPolicyValue + enableServiceLinks: true + ephemeralContainers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + targetContainerName: targetContainerNameValue + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + hostAliases: + - hostnames: + - hostnamesValue + ip: ipValue + hostIPC: true + hostNetwork: true + hostPID: true + hostUsers: true + hostname: hostnameValue + imagePullSecrets: + - name: nameValue + initContainers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + nodeName: nodeNameValue + nodeSelector: + nodeSelectorKey: nodeSelectorValue + os: + name: nameValue + overhead: + overheadKey: "0" + preemptionPolicy: preemptionPolicyValue + priority: 25 + priorityClassName: priorityClassNameValue + readinessGates: + - conditionType: conditionTypeValue + resourceClaims: + - name: nameValue + resourceClaimName: resourceClaimNameValue + resourceClaimTemplateName: resourceClaimTemplateNameValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + runtimeClassName: runtimeClassNameValue + schedulerName: schedulerNameValue + schedulingGates: + - name: nameValue + securityContext: + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + fsGroup: 5 + fsGroupChangePolicy: fsGroupChangePolicyValue + runAsGroup: 6 + runAsNonRoot: true + runAsUser: 2 + seLinuxChangePolicy: seLinuxChangePolicyValue + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + supplementalGroups: + - 4 + supplementalGroupsPolicy: supplementalGroupsPolicyValue + sysctls: + - name: nameValue + value: valueValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + serviceAccount: serviceAccountValue + serviceAccountName: serviceAccountNameValue + setHostnameAsFQDN: true + shareProcessNamespace: true + subdomain: subdomainValue + terminationGracePeriodSeconds: 4 + tolerations: + - effect: effectValue + key: keyValue + operator: operatorValue + tolerationSeconds: 5 + value: valueValue + topologySpreadConstraints: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + maxSkew: 1 + minDomains: 5 + nodeAffinityPolicy: nodeAffinityPolicyValue + nodeTaintsPolicy: nodeTaintsPolicyValue + topologyKey: topologyKeyValue + whenUnsatisfiable: whenUnsatisfiableValue + volumes: + - awsElasticBlockStore: + fsType: fsTypeValue + partition: 3 + readOnly: true + volumeID: volumeIDValue + azureDisk: + cachingMode: cachingModeValue + diskName: diskNameValue + diskURI: diskURIValue + fsType: fsTypeValue + kind: kindValue + readOnly: true + azureFile: + readOnly: true + secretName: secretNameValue + shareName: shareNameValue + cephfs: + monitors: + - monitorsValue + path: pathValue + readOnly: true + secretFile: secretFileValue + secretRef: + name: nameValue + user: userValue + cinder: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + volumeID: volumeIDValue + configMap: + defaultMode: 3 + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + csi: + driver: driverValue + fsType: fsTypeValue + nodePublishSecretRef: + name: nameValue + readOnly: true + volumeAttributes: + volumeAttributesKey: volumeAttributesValue + downwardAPI: + defaultMode: 2 + items: + - fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + mode: 4 + path: pathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + emptyDir: + medium: mediumValue + sizeLimit: "0" + ephemeral: + volumeClaimTemplate: + metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + accessModes: + - accessModesValue + dataSource: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + dataSourceRef: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resources: + limits: + limitsKey: "0" + requests: + requestsKey: "0" + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + storageClassName: storageClassNameValue + volumeAttributesClassName: volumeAttributesClassNameValue + volumeMode: volumeModeValue + volumeName: volumeNameValue + fc: + fsType: fsTypeValue + lun: 2 + readOnly: true + targetWWNs: + - targetWWNsValue + wwids: + - wwidsValue + flexVolume: + driver: driverValue + fsType: fsTypeValue + options: + optionsKey: optionsValue + readOnly: true + secretRef: + name: nameValue + flocker: + datasetName: datasetNameValue + datasetUUID: datasetUUIDValue + gcePersistentDisk: + fsType: fsTypeValue + partition: 3 + pdName: pdNameValue + readOnly: true + gitRepo: + directory: directoryValue + repository: repositoryValue + revision: revisionValue + glusterfs: + endpoints: endpointsValue + path: pathValue + readOnly: true + hostPath: + path: pathValue + type: typeValue + image: + pullPolicy: pullPolicyValue + reference: referenceValue + iscsi: + chapAuthDiscovery: true + chapAuthSession: true + fsType: fsTypeValue + initiatorName: initiatorNameValue + iqn: iqnValue + iscsiInterface: iscsiInterfaceValue + lun: 3 + portals: + - portalsValue + readOnly: true + secretRef: + name: nameValue + targetPortal: targetPortalValue + name: nameValue + nfs: + path: pathValue + readOnly: true + server: serverValue + persistentVolumeClaim: + claimName: claimNameValue + readOnly: true + photonPersistentDisk: + fsType: fsTypeValue + pdID: pdIDValue + portworxVolume: + fsType: fsTypeValue + readOnly: true + volumeID: volumeIDValue + projected: + defaultMode: 2 + sources: + - clusterTrustBundle: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + name: nameValue + optional: true + path: pathValue + signerName: signerNameValue + configMap: + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + downwardAPI: + items: + - fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + mode: 4 + path: pathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secret: + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + serviceAccountToken: + audience: audienceValue + expirationSeconds: 2 + path: pathValue + quobyte: + group: groupValue + readOnly: true + registry: registryValue + tenant: tenantValue + user: userValue + volume: volumeValue + rbd: + fsType: fsTypeValue + image: imageValue + keyring: keyringValue + monitors: + - monitorsValue + pool: poolValue + readOnly: true + secretRef: + name: nameValue + user: userValue + scaleIO: + fsType: fsTypeValue + gateway: gatewayValue + protectionDomain: protectionDomainValue + readOnly: true + secretRef: + name: nameValue + sslEnabled: true + storageMode: storageModeValue + storagePool: storagePoolValue + system: systemValue + volumeName: volumeNameValue + secret: + defaultMode: 3 + items: + - key: keyValue + mode: 3 + path: pathValue + optional: true + secretName: secretNameValue + storageos: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + volumeName: volumeNameValue + volumeNamespace: volumeNamespaceValue + vsphereVolume: + fsType: fsTypeValue + storagePolicyID: storagePolicyIDValue + storagePolicyName: storagePolicyNameValue + volumePath: volumePathValue + updateStrategy: + rollingUpdate: + maxUnavailable: maxUnavailableValue + partition: 1 + type: typeValue + volumeClaimTemplates: + - metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + accessModes: + - accessModesValue + dataSource: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + dataSourceRef: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resources: + limits: + limitsKey: "0" + requests: + requestsKey: "0" + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + storageClassName: storageClassNameValue + volumeAttributesClassName: volumeAttributesClassNameValue + volumeMode: volumeModeValue + volumeName: volumeNameValue + status: + accessModes: + - accessModesValue + allocatedResourceStatuses: + allocatedResourceStatusesKey: allocatedResourceStatusesValue + allocatedResources: + allocatedResourcesKey: "0" + capacity: + capacityKey: "0" + conditions: + - lastProbeTime: "2003-01-01T01:01:01Z" + lastTransitionTime: "2004-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue + currentVolumeAttributesClassName: currentVolumeAttributesClassNameValue + modifyVolumeStatus: + status: statusValue + targetVolumeAttributesClassName: targetVolumeAttributesClassNameValue + phase: phaseValue +status: + availableReplicas: 11 + collisionCount: 9 + conditions: + - lastTransitionTime: "2003-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue + currentReplicas: 4 + currentRevision: currentRevisionValue + observedGeneration: 1 + readyReplicas: 3 + replicas: 2 + updateRevision: updateRevisionValue + updatedReplicas: 5 diff --git a/testdata/v1.33.0/apps.v1beta1.ControllerRevision.json b/testdata/v1.33.0/apps.v1beta1.ControllerRevision.json new file mode 100644 index 0000000000..2b4ec8589e --- /dev/null +++ b/testdata/v1.33.0/apps.v1beta1.ControllerRevision.json @@ -0,0 +1,57 @@ +{ + "kind": "ControllerRevision", + "apiVersion": "apps/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "data": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + }, + "revision": 3 +} \ No newline at end of file diff --git a/testdata/v1.33.0/apps.v1beta1.ControllerRevision.pb b/testdata/v1.33.0/apps.v1beta1.ControllerRevision.pb new file mode 100644 index 0000000000000000000000000000000000000000..59c57ae9a561f78f1d0aec74249c1f84a55384d3 GIT binary patch literal 506 zcmZ8e%}&BV5H3H7up-pP1L<*(#Hf&%kRIWt#u#Hfc$=1itZcWN-Ij=i7w|1S`v|^) zhIcR?Jo^T^-3B4vzWrwAn{U3I_O(MOX@Hdac-9Rug|6of6OpQfb5z$jW11zxd#{j> zGN}uQ@fLW7-u?syDoF8iP5I5dswG543*FPm#}`aY?L?=Rv5`f+1BE)tl<7m2t6R3e zGpN;8&tI=q*Euuj<@?Q`D{|K+bq*nNeU5W)w}5scq@)Q#Bq^ju#FpKyx9zzY&v_P_LBPXSPNwvmI0B4WJpw)RQg`^RKfC(x~c+EuS_pj~y|7EDT;dAv< zah;wKLq5_sb6F%4R7rWU9Jo3Q|B|qwj!3wm8#^?h_yDowcoZeE`5$^n^J5G@%ygQ> oxuW5;#E1q9s!(zkfu=!sX;_m>X0TD50W-OA%nQqQ#doOl3n=BTxc~qF literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/apps.v1beta1.ControllerRevision.yaml b/testdata/v1.33.0/apps.v1beta1.ControllerRevision.yaml new file mode 100644 index 0000000000..b592efec3c --- /dev/null +++ b/testdata/v1.33.0/apps.v1beta1.ControllerRevision.yaml @@ -0,0 +1,42 @@ +apiVersion: apps/v1beta1 +data: + apiVersion: example.com/v1 + kind: CustomType + spec: + replicas: 1 + status: + available: 1 +kind: ControllerRevision +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +revision: 3 diff --git a/testdata/v1.33.0/apps.v1beta1.Deployment.json b/testdata/v1.33.0/apps.v1beta1.Deployment.json new file mode 100644 index 0000000000..9e092cb87e --- /dev/null +++ b/testdata/v1.33.0/apps.v1beta1.Deployment.json @@ -0,0 +1,1825 @@ +{ + "kind": "Deployment", + "apiVersion": "apps/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "replicas": 1, + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "template": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "volumes": [ + { + "name": "nameValue", + "hostPath": { + "path": "pathValue", + "type": "typeValue" + }, + "emptyDir": { + "medium": "mediumValue", + "sizeLimit": "0" + }, + "gcePersistentDisk": { + "pdName": "pdNameValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "awsElasticBlockStore": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "gitRepo": { + "repository": "repositoryValue", + "revision": "revisionValue", + "directory": "directoryValue" + }, + "secret": { + "secretName": "secretNameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "defaultMode": 3, + "optional": true + }, + "nfs": { + "server": "serverValue", + "path": "pathValue", + "readOnly": true + }, + "iscsi": { + "targetPortal": "targetPortalValue", + "iqn": "iqnValue", + "lun": 3, + "iscsiInterface": "iscsiInterfaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "portals": [ + "portalsValue" + ], + "chapAuthDiscovery": true, + "chapAuthSession": true, + "secretRef": { + "name": "nameValue" + }, + "initiatorName": "initiatorNameValue" + }, + "glusterfs": { + "endpoints": "endpointsValue", + "path": "pathValue", + "readOnly": true + }, + "persistentVolumeClaim": { + "claimName": "claimNameValue", + "readOnly": true + }, + "rbd": { + "monitors": [ + "monitorsValue" + ], + "image": "imageValue", + "fsType": "fsTypeValue", + "pool": "poolValue", + "user": "userValue", + "keyring": "keyringValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true + }, + "flexVolume": { + "driver": "driverValue", + "fsType": "fsTypeValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true, + "options": { + "optionsKey": "optionsValue" + } + }, + "cinder": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue" + } + }, + "cephfs": { + "monitors": [ + "monitorsValue" + ], + "path": "pathValue", + "user": "userValue", + "secretFile": "secretFileValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true + }, + "flocker": { + "datasetName": "datasetNameValue", + "datasetUUID": "datasetUUIDValue" + }, + "downwardAPI": { + "items": [ + { + "path": "pathValue", + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "mode": 4 + } + ], + "defaultMode": 2 + }, + "fc": { + "targetWWNs": [ + "targetWWNsValue" + ], + "lun": 2, + "fsType": "fsTypeValue", + "readOnly": true, + "wwids": [ + "wwidsValue" + ] + }, + "azureFile": { + "secretName": "secretNameValue", + "shareName": "shareNameValue", + "readOnly": true + }, + "configMap": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "defaultMode": 3, + "optional": true + }, + "vsphereVolume": { + "volumePath": "volumePathValue", + "fsType": "fsTypeValue", + "storagePolicyName": "storagePolicyNameValue", + "storagePolicyID": "storagePolicyIDValue" + }, + "quobyte": { + "registry": "registryValue", + "volume": "volumeValue", + "readOnly": true, + "user": "userValue", + "group": "groupValue", + "tenant": "tenantValue" + }, + "azureDisk": { + "diskName": "diskNameValue", + "diskURI": "diskURIValue", + "cachingMode": "cachingModeValue", + "fsType": "fsTypeValue", + "readOnly": true, + "kind": "kindValue" + }, + "photonPersistentDisk": { + "pdID": "pdIDValue", + "fsType": "fsTypeValue" + }, + "projected": { + "sources": [ + { + "secret": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "optional": true + }, + "downwardAPI": { + "items": [ + { + "path": "pathValue", + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "mode": 4 + } + ] + }, + "configMap": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "optional": true + }, + "serviceAccountToken": { + "audience": "audienceValue", + "expirationSeconds": 2, + "path": "pathValue" + }, + "clusterTrustBundle": { + "name": "nameValue", + "signerName": "signerNameValue", + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "optional": true, + "path": "pathValue" + } + } + ], + "defaultMode": 2 + }, + "portworxVolume": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "scaleIO": { + "gateway": "gatewayValue", + "system": "systemValue", + "secretRef": { + "name": "nameValue" + }, + "sslEnabled": true, + "protectionDomain": "protectionDomainValue", + "storagePool": "storagePoolValue", + "storageMode": "storageModeValue", + "volumeName": "volumeNameValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "storageos": { + "volumeName": "volumeNameValue", + "volumeNamespace": "volumeNamespaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue" + } + }, + "csi": { + "driver": "driverValue", + "readOnly": true, + "fsType": "fsTypeValue", + "volumeAttributes": { + "volumeAttributesKey": "volumeAttributesValue" + }, + "nodePublishSecretRef": { + "name": "nameValue" + } + }, + "ephemeral": { + "volumeClaimTemplate": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "accessModes": [ + "accessModesValue" + ], + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + } + }, + "volumeName": "volumeNameValue", + "storageClassName": "storageClassNameValue", + "volumeMode": "volumeModeValue", + "dataSource": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue" + }, + "dataSourceRef": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue", + "namespace": "namespaceValue" + }, + "volumeAttributesClassName": "volumeAttributesClassNameValue" + } + } + }, + "image": { + "reference": "referenceValue", + "pullPolicy": "pullPolicyValue" + } + } + ], + "initContainers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true + } + ], + "containers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true + } + ], + "ephemeralContainers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true, + "targetContainerName": "targetContainerNameValue" + } + ], + "restartPolicy": "restartPolicyValue", + "terminationGracePeriodSeconds": 4, + "activeDeadlineSeconds": 5, + "dnsPolicy": "dnsPolicyValue", + "nodeSelector": { + "nodeSelectorKey": "nodeSelectorValue" + }, + "serviceAccountName": "serviceAccountNameValue", + "serviceAccount": "serviceAccountValue", + "automountServiceAccountToken": true, + "nodeName": "nodeNameValue", + "hostNetwork": true, + "hostPID": true, + "hostIPC": true, + "shareProcessNamespace": true, + "securityContext": { + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 2, + "runAsGroup": 6, + "runAsNonRoot": true, + "supplementalGroups": [ + 4 + ], + "supplementalGroupsPolicy": "supplementalGroupsPolicyValue", + "fsGroup": 5, + "sysctls": [ + { + "name": "nameValue", + "value": "valueValue" + } + ], + "fsGroupChangePolicy": "fsGroupChangePolicyValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "seLinuxChangePolicy": "seLinuxChangePolicyValue" + }, + "imagePullSecrets": [ + { + "name": "nameValue" + } + ], + "hostname": "hostnameValue", + "subdomain": "subdomainValue", + "affinity": { + "nodeAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "nodeSelectorTerms": [ + { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + ] + }, + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "preference": { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + } + ] + }, + "podAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": [ + { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + ], + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "podAffinityTerm": { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + } + ] + }, + "podAntiAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": [ + { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + ], + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "podAffinityTerm": { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + } + ] + } + }, + "schedulerName": "schedulerNameValue", + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ], + "hostAliases": [ + { + "ip": "ipValue", + "hostnames": [ + "hostnamesValue" + ] + } + ], + "priorityClassName": "priorityClassNameValue", + "priority": 25, + "dnsConfig": { + "nameservers": [ + "nameserversValue" + ], + "searches": [ + "searchesValue" + ], + "options": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "readinessGates": [ + { + "conditionType": "conditionTypeValue" + } + ], + "runtimeClassName": "runtimeClassNameValue", + "enableServiceLinks": true, + "preemptionPolicy": "preemptionPolicyValue", + "overhead": { + "overheadKey": "0" + }, + "topologySpreadConstraints": [ + { + "maxSkew": 1, + "topologyKey": "topologyKeyValue", + "whenUnsatisfiable": "whenUnsatisfiableValue", + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "minDomains": 5, + "nodeAffinityPolicy": "nodeAffinityPolicyValue", + "nodeTaintsPolicy": "nodeTaintsPolicyValue", + "matchLabelKeys": [ + "matchLabelKeysValue" + ] + } + ], + "setHostnameAsFQDN": true, + "os": { + "name": "nameValue" + }, + "hostUsers": true, + "schedulingGates": [ + { + "name": "nameValue" + } + ], + "resourceClaims": [ + { + "name": "nameValue", + "resourceClaimName": "resourceClaimNameValue", + "resourceClaimTemplateName": "resourceClaimTemplateNameValue" + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + } + } + }, + "strategy": { + "type": "typeValue", + "rollingUpdate": { + "maxUnavailable": "maxUnavailableValue", + "maxSurge": "maxSurgeValue" + } + }, + "minReadySeconds": 5, + "revisionHistoryLimit": 6, + "paused": true, + "rollbackTo": { + "revision": 1 + }, + "progressDeadlineSeconds": 9 + }, + "status": { + "observedGeneration": 1, + "replicas": 2, + "updatedReplicas": 3, + "readyReplicas": 7, + "availableReplicas": 4, + "unavailableReplicas": 5, + "terminatingReplicas": 9, + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "lastUpdateTime": "2006-01-01T01:01:01Z", + "lastTransitionTime": "2007-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ], + "collisionCount": 8 + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/apps.v1beta1.Deployment.pb b/testdata/v1.33.0/apps.v1beta1.Deployment.pb new file mode 100644 index 0000000000000000000000000000000000000000..d32ff614d6a1e04bd3bf1edd705879c214838f38 GIT binary patch literal 11081 zcmeHNO^h5z72Y>%+ zba%RYcD+VOV1$Hx0p$dd5-FBImO(=D(K#TT3q%Tsa6t$pVk8a`hrkKA!0W31sTr@G zMP3U_nOk>Nb@h8y@8|no)ukih7%@nN`F{B9`g5y1V$V@>ocoTq+2d|RufItCTp%Tv z_4td->2tcb%UvF@h@VNDj9T0q`pi;8%xcJ;&MDzul3z57ePPR|`H6ssUO&KbJP3v7 z%GM)$+Qs5KZ~XPmU5&9teEQi3Z{yPvxiC#i4qN3;_(i@+%j!{nv1*bUb6qcD5l$kz z8``@ZbMbjnx+GlnV(=ZQP^ZxIdjCznIY7kh~^xr z2i*5U5qUvs76D%unSU8ITLj$7y5~Pb>LIrR9_9btuNhS?{PcJ%L(3rLkO%9j{cHWu zUMG7a7Ib;ER-aAH`Ydh_SftgIwd+oRuuCXA`Ow;fxexvJ4A7ts*;S{MWcgwUGa7kk-MDszTS@IlVZDvZD z69etZn%#spL2bJtj8e}mtJ&pdPlK87Qj>H8ukR~MD@WXAZX{oB!AVlJMR+Ou8Lh;x zE6XQkztOOmwT5PS+Ow1Ns~g`e%;#zFHegEi?X5z|9XR}8(|a4f2c*))yuZPcFjEdU z!-%VBHf-dRe&9tIbTCUE_j+goO0!0`PKkrH(w0p8cCrJRzKgm(OYkoIwm^PUAhX-s z*BPK+dz6-oR=zF!!dQNgR9W8^+)Z#2ns@H8%?&N+(RwJly4M&xiVZNprA|5vjlv&b zAvODK(dmS;)VLu>cEj$dYkn8b55&L*42(8EMfRyFk3~@+R{If`z-@B4Q5woXjCvn# z>?S|iJ%Tfj9?tx-KpM=lco@e1m}J(cNdu9%=!r<~SRAoqEEDjT5p3pd#<1g>J8HDe z$s~3xI4le^L!D3ln#GUSC(zA&@j@0(X&wMI9?*V%Tf@vDZnJoJ*j@+4`3F2nY60)? zAaiqC_xp~cGKMs6`qQfJ>pBdnSY8jwhGH#d36YiBgJylh3y{uqkBbD2Jfls~C?L?P z#u3-EQs7cv^TO!llKf%oHPA*=vL4d}*<*Yc$cJZgy6sGE92ks-8CAh#cmJ;Tv29w| z0bPwsVt`VSMMvwx&{OMqeK*RoxLHBUmAy45Rd3+=3^Q8Fq{wU)IcUj7+m^P5zVK<1 z<4jr#yo3iBIW;wj!`Hc@JZM4?S3-^!7i$<&tkbb0$*Go4kte#nkSzq<#?p{r&RL&Z zStO?W@9k8UPlLXDEL=fj%?8iF1(W0g&`HO$m=k-*Qs8w`s)B`{4;}MufbRqR5D@A= zi)0#OuedCKOX~x%2p3|w;W`}JVx=XtmowaigSv0lZKTy!z7@CNard&@@JX^a zQ;JPUwUD#NEJmt&2exQ5wrGnZ%zVvuL+#_%Q>5-9UO3AgS!amrb$j&&`HS}cBw8J_ ztk|Y9c^3B#cF57o)p&wz%uDbMScBlr0{P#p8B-&upxC-!oNe!@Suaj^LWw;V)|i_T zMWxX;jCos5aVYHjzJvJ#xwRwzrEkW?>5yaXwSV~@0j}t9{VG&rZ*$Wk?lq`k_Oo-Y z_6q!~NNxgICQD?SHAlMLapy4d?)**@cDoVG_A}Bzk=Cj~@X18}N*W^PW7))X3n~0@j8- zJPBRHidoDA<9hM6!mnbedJlLurZ(2NyW)me>j*o7ttPdJodwm%SogmBici`%2 z(zYh!j&pcG73n0Zy%h|9rSMjjj3CGef{bdnquOnsn+StOwOfn^quTBL607kLM>r2z zyQS0WGR?w0H*kJbfa?Xl6nLWmw+0$+7Z$X-w}FRX>eeP=0PRYZd3d1x96|v{zZQC@ z@bJfa=I8VSfH`tN9;#t-zP#eHbtdpqXo48%KG{{puCsl-ke1*nJPd<2I_ein##e9v z9+b)g_6z#7Wh{nAeT9)sJl1Amax=AA!P;MZ`XVQr$9tW>`{QePH?@UNx8M6YJ{{R} Lw1`uWnPdM2;Lb!? literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/apps.v1beta1.Deployment.yaml b/testdata/v1.33.0/apps.v1beta1.Deployment.yaml new file mode 100644 index 0000000000..c2819ce7e0 --- /dev/null +++ b/testdata/v1.33.0/apps.v1beta1.Deployment.yaml @@ -0,0 +1,1254 @@ +apiVersion: apps/v1beta1 +kind: Deployment +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + minReadySeconds: 5 + paused: true + progressDeadlineSeconds: 9 + replicas: 1 + revisionHistoryLimit: 6 + rollbackTo: + revision: 1 + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + strategy: + rollingUpdate: + maxSurge: maxSurgeValue + maxUnavailable: maxUnavailableValue + type: typeValue + template: + metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + activeDeadlineSeconds: 5 + affinity: + nodeAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - preference: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + podAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + automountServiceAccountToken: true + containers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + dnsConfig: + nameservers: + - nameserversValue + options: + - name: nameValue + value: valueValue + searches: + - searchesValue + dnsPolicy: dnsPolicyValue + enableServiceLinks: true + ephemeralContainers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + targetContainerName: targetContainerNameValue + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + hostAliases: + - hostnames: + - hostnamesValue + ip: ipValue + hostIPC: true + hostNetwork: true + hostPID: true + hostUsers: true + hostname: hostnameValue + imagePullSecrets: + - name: nameValue + initContainers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + nodeName: nodeNameValue + nodeSelector: + nodeSelectorKey: nodeSelectorValue + os: + name: nameValue + overhead: + overheadKey: "0" + preemptionPolicy: preemptionPolicyValue + priority: 25 + priorityClassName: priorityClassNameValue + readinessGates: + - conditionType: conditionTypeValue + resourceClaims: + - name: nameValue + resourceClaimName: resourceClaimNameValue + resourceClaimTemplateName: resourceClaimTemplateNameValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + runtimeClassName: runtimeClassNameValue + schedulerName: schedulerNameValue + schedulingGates: + - name: nameValue + securityContext: + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + fsGroup: 5 + fsGroupChangePolicy: fsGroupChangePolicyValue + runAsGroup: 6 + runAsNonRoot: true + runAsUser: 2 + seLinuxChangePolicy: seLinuxChangePolicyValue + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + supplementalGroups: + - 4 + supplementalGroupsPolicy: supplementalGroupsPolicyValue + sysctls: + - name: nameValue + value: valueValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + serviceAccount: serviceAccountValue + serviceAccountName: serviceAccountNameValue + setHostnameAsFQDN: true + shareProcessNamespace: true + subdomain: subdomainValue + terminationGracePeriodSeconds: 4 + tolerations: + - effect: effectValue + key: keyValue + operator: operatorValue + tolerationSeconds: 5 + value: valueValue + topologySpreadConstraints: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + maxSkew: 1 + minDomains: 5 + nodeAffinityPolicy: nodeAffinityPolicyValue + nodeTaintsPolicy: nodeTaintsPolicyValue + topologyKey: topologyKeyValue + whenUnsatisfiable: whenUnsatisfiableValue + volumes: + - awsElasticBlockStore: + fsType: fsTypeValue + partition: 3 + readOnly: true + volumeID: volumeIDValue + azureDisk: + cachingMode: cachingModeValue + diskName: diskNameValue + diskURI: diskURIValue + fsType: fsTypeValue + kind: kindValue + readOnly: true + azureFile: + readOnly: true + secretName: secretNameValue + shareName: shareNameValue + cephfs: + monitors: + - monitorsValue + path: pathValue + readOnly: true + secretFile: secretFileValue + secretRef: + name: nameValue + user: userValue + cinder: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + volumeID: volumeIDValue + configMap: + defaultMode: 3 + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + csi: + driver: driverValue + fsType: fsTypeValue + nodePublishSecretRef: + name: nameValue + readOnly: true + volumeAttributes: + volumeAttributesKey: volumeAttributesValue + downwardAPI: + defaultMode: 2 + items: + - fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + mode: 4 + path: pathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + emptyDir: + medium: mediumValue + sizeLimit: "0" + ephemeral: + volumeClaimTemplate: + metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + accessModes: + - accessModesValue + dataSource: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + dataSourceRef: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resources: + limits: + limitsKey: "0" + requests: + requestsKey: "0" + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + storageClassName: storageClassNameValue + volumeAttributesClassName: volumeAttributesClassNameValue + volumeMode: volumeModeValue + volumeName: volumeNameValue + fc: + fsType: fsTypeValue + lun: 2 + readOnly: true + targetWWNs: + - targetWWNsValue + wwids: + - wwidsValue + flexVolume: + driver: driverValue + fsType: fsTypeValue + options: + optionsKey: optionsValue + readOnly: true + secretRef: + name: nameValue + flocker: + datasetName: datasetNameValue + datasetUUID: datasetUUIDValue + gcePersistentDisk: + fsType: fsTypeValue + partition: 3 + pdName: pdNameValue + readOnly: true + gitRepo: + directory: directoryValue + repository: repositoryValue + revision: revisionValue + glusterfs: + endpoints: endpointsValue + path: pathValue + readOnly: true + hostPath: + path: pathValue + type: typeValue + image: + pullPolicy: pullPolicyValue + reference: referenceValue + iscsi: + chapAuthDiscovery: true + chapAuthSession: true + fsType: fsTypeValue + initiatorName: initiatorNameValue + iqn: iqnValue + iscsiInterface: iscsiInterfaceValue + lun: 3 + portals: + - portalsValue + readOnly: true + secretRef: + name: nameValue + targetPortal: targetPortalValue + name: nameValue + nfs: + path: pathValue + readOnly: true + server: serverValue + persistentVolumeClaim: + claimName: claimNameValue + readOnly: true + photonPersistentDisk: + fsType: fsTypeValue + pdID: pdIDValue + portworxVolume: + fsType: fsTypeValue + readOnly: true + volumeID: volumeIDValue + projected: + defaultMode: 2 + sources: + - clusterTrustBundle: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + name: nameValue + optional: true + path: pathValue + signerName: signerNameValue + configMap: + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + downwardAPI: + items: + - fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + mode: 4 + path: pathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secret: + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + serviceAccountToken: + audience: audienceValue + expirationSeconds: 2 + path: pathValue + quobyte: + group: groupValue + readOnly: true + registry: registryValue + tenant: tenantValue + user: userValue + volume: volumeValue + rbd: + fsType: fsTypeValue + image: imageValue + keyring: keyringValue + monitors: + - monitorsValue + pool: poolValue + readOnly: true + secretRef: + name: nameValue + user: userValue + scaleIO: + fsType: fsTypeValue + gateway: gatewayValue + protectionDomain: protectionDomainValue + readOnly: true + secretRef: + name: nameValue + sslEnabled: true + storageMode: storageModeValue + storagePool: storagePoolValue + system: systemValue + volumeName: volumeNameValue + secret: + defaultMode: 3 + items: + - key: keyValue + mode: 3 + path: pathValue + optional: true + secretName: secretNameValue + storageos: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + volumeName: volumeNameValue + volumeNamespace: volumeNamespaceValue + vsphereVolume: + fsType: fsTypeValue + storagePolicyID: storagePolicyIDValue + storagePolicyName: storagePolicyNameValue + volumePath: volumePathValue +status: + availableReplicas: 4 + collisionCount: 8 + conditions: + - lastTransitionTime: "2007-01-01T01:01:01Z" + lastUpdateTime: "2006-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue + observedGeneration: 1 + readyReplicas: 7 + replicas: 2 + terminatingReplicas: 9 + unavailableReplicas: 5 + updatedReplicas: 3 diff --git a/testdata/v1.33.0/apps.v1beta1.DeploymentRollback.json b/testdata/v1.33.0/apps.v1beta1.DeploymentRollback.json new file mode 100644 index 0000000000..b2c53b6afd --- /dev/null +++ b/testdata/v1.33.0/apps.v1beta1.DeploymentRollback.json @@ -0,0 +1,11 @@ +{ + "kind": "DeploymentRollback", + "apiVersion": "apps/v1beta1", + "name": "nameValue", + "updatedAnnotations": { + "updatedAnnotationsKey": "updatedAnnotationsValue" + }, + "rollbackTo": { + "revision": 1 + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/apps.v1beta1.DeploymentRollback.pb b/testdata/v1.33.0/apps.v1beta1.DeploymentRollback.pb new file mode 100644 index 0000000000000000000000000000000000000000..acf1d1c08d6f323b42f6221213e46c4b13116bf7 GIT binary patch literal 111 zcmd0{C}!YN;^IjxC@9u1GfYY?Ni-A^a!D=7$*;^!%_|AY&&f$jOwJZ^O>9(eERgmB*$6mCBLh;z6iU<`C-X`s|tl4hD?nbEM5BL#+XFtI| z5c&_|!Lxs$n+>hi+nYBtZ{ED5uN<;RnviAc@U|19h7R2rj({V5s*?8#sSB9l74RJC z_7nw5(0IP2Lci#$3`XThw558w|o?WjI5*Q&NUqC)Vq#(r-$T9~cOI(}-!nuS<;gAyoMM6g65OFY^fE?g;RsU4a zuAN0*3rm^XOjUK&t9n26ef8d@W5F0ch|7lO1<$X&uu4PY1yWiHjgWQ*_7V-rpI*g( zR&dcV`t%jU9#FEkOC9RNfU`-HR*iZC&oIRhy%JEnbDBAq_!srUfLZ)kW5TC_JMdu~ z^#kTQy!F_gR-y3Tn}2<4mpZlpzkYfDUHG+#SEg~%Hdd(}e3fpHlK9ELSk-aWa2yxJ zgh_a}D*fkUF20D1mzX0K)-w6^RGNCt@R%&f96E;lT8BA?&8~oee4cA)6_@*lV|1y{ z8%WjlqWvf0Ys1s%u!no^{byVqYrtgGwt{mTo;aE2F06d}J1sRBtfnWy5A~y!0wSj| z?5l5tX76;mZB_a&mVXu(F3}C~yCOt!g=AW3Et*Wot-byAk>Vb|;yyTwe>EYy$D0#) z3Ku;i>fAE z{-u7@TElxo!|&2?(e*>a7BUvtYr?gs$Mt z<@h(B_2P36RX5V*sr;9QHQLI`{3Z1G- zPA_nFczvB&qVqa>db1r@gP!4MH`6qF9lnwGOCDzFH_&NZ6YiGoBIlCYQ~>4!MziSJ z%-l#frBCGA<1@R3S{QcQWkHyDW=YJ>l|7C0OiOj#_1%FdEUgq$$8bXa=QcWpD;5hb zrHher^mn;^iuY@(X_!4Q%QLPOU%#^P&7wwj4c z!M{`R?Dq6JgUB}@r{#i`Z_BQYqTB31`yy9 zC!IyA@<%kEn0 zcePGz)4~qO+bG8d$TzZJOI;9ps(p9hgy}7=mw|Gn|LT*X*LOVwZnT8SH6mUX4SMOa zCr-IJ1;BX#RCSHEsbPK1vBlNb{u#nQLb!@^`XXm!fK)3WbqoSLKwELt#YiLkr(O!o z9*qfgeZM4mPB(|}@Ek;%Lj}fIj&M0kuMXgspVo39K>+L4Rm;mljhK#&u|MJl6|vg0j)MORoq5Tx|iKS zpT>I=zLlOmAYb+18Gl^}=)~ z;MilnXE+H_6g%36F>lK$4hI9zv*G>#Zf*0mWMy2O4k*064lZvJ;ED{_ucAuiZBFut zdkt0L_Omjsb{+kzfNvq(#*28HZ;oWUa$>rcJg-w2l>g`vo_N5j^qcPY|DNfkq9DN16#rj zH_(VUK>|+VR3qY)Twf#Nl)dSZVcMukv~ee>=ZH8ZIlU2ak|=7%CO+xJ=_W$A(HEqg z>QJIydV$kRw9^6B#IfY;?mOrJ-opfSC)EU@3mAA8O?f_ZeHL!yA06L82i`|bta7Z% zGqvIa0)-fc5BF${T_41N{(#UuG{LiV7GzpoCoNd`5KRJi4_Tk)SGD)2V!LMF5aFJ=)FjNXf{DZh=N>L&24O|AE+v+M-$))91=u^PWk>@27T#=1XZ zlP5Y*+ySR2N!y%^I?h3YDwIi7YbzLjU3t5LM-XHLK}K)4qqo}u)d2>L-fkfpjNWb^ zbg^oWkivPyw_7qTifQIIRp9(YK{pinDe$I(Zs!{ADD%?0w+2ZtQMCyeKq{%ykL23V z0Ti(1ve3KAqo?)s5B7}G{-d;iRC1LEpifxZU;DL!vDbqlI*#MXrXmUrK(T2+i8R2^ z1QhEp%h|0Gq-4TDjMSlo_@j63LkV$KOk9V83nPeYrW<8=m5%a)e7X7|JZacb1}&sk zJ9gHzR-^ePd}vc|RN@V#jeO9N2ln#WThBlW9LgEOS9l?6R=$(h$inCGQ4w+;K90y6 zt*deBCr$J;rajj>!|Sc11cwaO>+*3O20C$or`Q3iUtV^MHG@Hkc+4M;7rs(#KaJIh zU7Uoh6r77tOf70zf>dMNuo7M3mth_#q2Q^liFmVZxrDa4Z{R_VBoqNib+xd<7iEd$ UeQB8jWwq6FYP(R<#`LlO0wR6KA^-pY literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/apps.v1beta1.StatefulSet.yaml b/testdata/v1.33.0/apps.v1beta1.StatefulSet.yaml new file mode 100644 index 0000000000..a204277282 --- /dev/null +++ b/testdata/v1.33.0/apps.v1beta1.StatefulSet.yaml @@ -0,0 +1,1340 @@ +apiVersion: apps/v1beta1 +kind: StatefulSet +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + minReadySeconds: 9 + ordinals: + start: 1 + persistentVolumeClaimRetentionPolicy: + whenDeleted: whenDeletedValue + whenScaled: whenScaledValue + podManagementPolicy: podManagementPolicyValue + replicas: 1 + revisionHistoryLimit: 8 + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + serviceName: serviceNameValue + template: + metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + activeDeadlineSeconds: 5 + affinity: + nodeAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - preference: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + podAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + automountServiceAccountToken: true + containers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + dnsConfig: + nameservers: + - nameserversValue + options: + - name: nameValue + value: valueValue + searches: + - searchesValue + dnsPolicy: dnsPolicyValue + enableServiceLinks: true + ephemeralContainers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + targetContainerName: targetContainerNameValue + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + hostAliases: + - hostnames: + - hostnamesValue + ip: ipValue + hostIPC: true + hostNetwork: true + hostPID: true + hostUsers: true + hostname: hostnameValue + imagePullSecrets: + - name: nameValue + initContainers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + nodeName: nodeNameValue + nodeSelector: + nodeSelectorKey: nodeSelectorValue + os: + name: nameValue + overhead: + overheadKey: "0" + preemptionPolicy: preemptionPolicyValue + priority: 25 + priorityClassName: priorityClassNameValue + readinessGates: + - conditionType: conditionTypeValue + resourceClaims: + - name: nameValue + resourceClaimName: resourceClaimNameValue + resourceClaimTemplateName: resourceClaimTemplateNameValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + runtimeClassName: runtimeClassNameValue + schedulerName: schedulerNameValue + schedulingGates: + - name: nameValue + securityContext: + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + fsGroup: 5 + fsGroupChangePolicy: fsGroupChangePolicyValue + runAsGroup: 6 + runAsNonRoot: true + runAsUser: 2 + seLinuxChangePolicy: seLinuxChangePolicyValue + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + supplementalGroups: + - 4 + supplementalGroupsPolicy: supplementalGroupsPolicyValue + sysctls: + - name: nameValue + value: valueValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + serviceAccount: serviceAccountValue + serviceAccountName: serviceAccountNameValue + setHostnameAsFQDN: true + shareProcessNamespace: true + subdomain: subdomainValue + terminationGracePeriodSeconds: 4 + tolerations: + - effect: effectValue + key: keyValue + operator: operatorValue + tolerationSeconds: 5 + value: valueValue + topologySpreadConstraints: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + maxSkew: 1 + minDomains: 5 + nodeAffinityPolicy: nodeAffinityPolicyValue + nodeTaintsPolicy: nodeTaintsPolicyValue + topologyKey: topologyKeyValue + whenUnsatisfiable: whenUnsatisfiableValue + volumes: + - awsElasticBlockStore: + fsType: fsTypeValue + partition: 3 + readOnly: true + volumeID: volumeIDValue + azureDisk: + cachingMode: cachingModeValue + diskName: diskNameValue + diskURI: diskURIValue + fsType: fsTypeValue + kind: kindValue + readOnly: true + azureFile: + readOnly: true + secretName: secretNameValue + shareName: shareNameValue + cephfs: + monitors: + - monitorsValue + path: pathValue + readOnly: true + secretFile: secretFileValue + secretRef: + name: nameValue + user: userValue + cinder: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + volumeID: volumeIDValue + configMap: + defaultMode: 3 + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + csi: + driver: driverValue + fsType: fsTypeValue + nodePublishSecretRef: + name: nameValue + readOnly: true + volumeAttributes: + volumeAttributesKey: volumeAttributesValue + downwardAPI: + defaultMode: 2 + items: + - fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + mode: 4 + path: pathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + emptyDir: + medium: mediumValue + sizeLimit: "0" + ephemeral: + volumeClaimTemplate: + metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + accessModes: + - accessModesValue + dataSource: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + dataSourceRef: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resources: + limits: + limitsKey: "0" + requests: + requestsKey: "0" + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + storageClassName: storageClassNameValue + volumeAttributesClassName: volumeAttributesClassNameValue + volumeMode: volumeModeValue + volumeName: volumeNameValue + fc: + fsType: fsTypeValue + lun: 2 + readOnly: true + targetWWNs: + - targetWWNsValue + wwids: + - wwidsValue + flexVolume: + driver: driverValue + fsType: fsTypeValue + options: + optionsKey: optionsValue + readOnly: true + secretRef: + name: nameValue + flocker: + datasetName: datasetNameValue + datasetUUID: datasetUUIDValue + gcePersistentDisk: + fsType: fsTypeValue + partition: 3 + pdName: pdNameValue + readOnly: true + gitRepo: + directory: directoryValue + repository: repositoryValue + revision: revisionValue + glusterfs: + endpoints: endpointsValue + path: pathValue + readOnly: true + hostPath: + path: pathValue + type: typeValue + image: + pullPolicy: pullPolicyValue + reference: referenceValue + iscsi: + chapAuthDiscovery: true + chapAuthSession: true + fsType: fsTypeValue + initiatorName: initiatorNameValue + iqn: iqnValue + iscsiInterface: iscsiInterfaceValue + lun: 3 + portals: + - portalsValue + readOnly: true + secretRef: + name: nameValue + targetPortal: targetPortalValue + name: nameValue + nfs: + path: pathValue + readOnly: true + server: serverValue + persistentVolumeClaim: + claimName: claimNameValue + readOnly: true + photonPersistentDisk: + fsType: fsTypeValue + pdID: pdIDValue + portworxVolume: + fsType: fsTypeValue + readOnly: true + volumeID: volumeIDValue + projected: + defaultMode: 2 + sources: + - clusterTrustBundle: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + name: nameValue + optional: true + path: pathValue + signerName: signerNameValue + configMap: + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + downwardAPI: + items: + - fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + mode: 4 + path: pathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secret: + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + serviceAccountToken: + audience: audienceValue + expirationSeconds: 2 + path: pathValue + quobyte: + group: groupValue + readOnly: true + registry: registryValue + tenant: tenantValue + user: userValue + volume: volumeValue + rbd: + fsType: fsTypeValue + image: imageValue + keyring: keyringValue + monitors: + - monitorsValue + pool: poolValue + readOnly: true + secretRef: + name: nameValue + user: userValue + scaleIO: + fsType: fsTypeValue + gateway: gatewayValue + protectionDomain: protectionDomainValue + readOnly: true + secretRef: + name: nameValue + sslEnabled: true + storageMode: storageModeValue + storagePool: storagePoolValue + system: systemValue + volumeName: volumeNameValue + secret: + defaultMode: 3 + items: + - key: keyValue + mode: 3 + path: pathValue + optional: true + secretName: secretNameValue + storageos: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + volumeName: volumeNameValue + volumeNamespace: volumeNamespaceValue + vsphereVolume: + fsType: fsTypeValue + storagePolicyID: storagePolicyIDValue + storagePolicyName: storagePolicyNameValue + volumePath: volumePathValue + updateStrategy: + rollingUpdate: + maxUnavailable: maxUnavailableValue + partition: 1 + type: typeValue + volumeClaimTemplates: + - metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + accessModes: + - accessModesValue + dataSource: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + dataSourceRef: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resources: + limits: + limitsKey: "0" + requests: + requestsKey: "0" + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + storageClassName: storageClassNameValue + volumeAttributesClassName: volumeAttributesClassNameValue + volumeMode: volumeModeValue + volumeName: volumeNameValue + status: + accessModes: + - accessModesValue + allocatedResourceStatuses: + allocatedResourceStatusesKey: allocatedResourceStatusesValue + allocatedResources: + allocatedResourcesKey: "0" + capacity: + capacityKey: "0" + conditions: + - lastProbeTime: "2003-01-01T01:01:01Z" + lastTransitionTime: "2004-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue + currentVolumeAttributesClassName: currentVolumeAttributesClassNameValue + modifyVolumeStatus: + status: statusValue + targetVolumeAttributesClassName: targetVolumeAttributesClassNameValue + phase: phaseValue +status: + availableReplicas: 11 + collisionCount: 9 + conditions: + - lastTransitionTime: "2003-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue + currentReplicas: 4 + currentRevision: currentRevisionValue + observedGeneration: 1 + readyReplicas: 3 + replicas: 2 + updateRevision: updateRevisionValue + updatedReplicas: 5 diff --git a/testdata/v1.33.0/apps.v1beta2.ControllerRevision.json b/testdata/v1.33.0/apps.v1beta2.ControllerRevision.json new file mode 100644 index 0000000000..60c5f5767e --- /dev/null +++ b/testdata/v1.33.0/apps.v1beta2.ControllerRevision.json @@ -0,0 +1,57 @@ +{ + "kind": "ControllerRevision", + "apiVersion": "apps/v1beta2", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "data": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + }, + "revision": 3 +} \ No newline at end of file diff --git a/testdata/v1.33.0/apps.v1beta2.ControllerRevision.pb b/testdata/v1.33.0/apps.v1beta2.ControllerRevision.pb new file mode 100644 index 0000000000000000000000000000000000000000..869de5ce53ffe662fc426736417767fea066c4ed GIT binary patch literal 506 zcmZ8e%}&BV5H3H7up-pP1L<*(#Hf&%kRIWt#u#Hfc$=1itZcWN-Ij=i7w|1S`v|^) zhIcR?Jo^T^-3B4vzWrwAn{U3I_O(MOX@Hdac-9Rug`VdP6OpQfb5z$jW11zxd#{j> zGN}uQ@fLW7-u?syDoF8iP5I5dswG543*FPm#}`aY?L?=Rv5`f+1BE)tl<7m2t6R3e zGpN;8&tI=q*Euuj<@?Q`D{|K+bq*nNeU5W)w}5scq@)Q#Bq^ju#FpKyx9zzY&v_P_LBPXSPNwvmI0B4WJpw)RQg`^RKfC(x~c+EuS_pj~y|7EDT;dAv< zah;wKLq5_sb6F%4R7rWU9Jo3Q|B|qwj!3wm8#^?h_yDowcoZeE`5$^n^J5G@%ygQ> oxuW5;#E1q9s!(zkfu=!sX;_m>X0TD50W-OA%nQqQ#doOl3o6X6x&QzG literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/apps.v1beta2.ControllerRevision.yaml b/testdata/v1.33.0/apps.v1beta2.ControllerRevision.yaml new file mode 100644 index 0000000000..136b0cd03b --- /dev/null +++ b/testdata/v1.33.0/apps.v1beta2.ControllerRevision.yaml @@ -0,0 +1,42 @@ +apiVersion: apps/v1beta2 +data: + apiVersion: example.com/v1 + kind: CustomType + spec: + replicas: 1 + status: + available: 1 +kind: ControllerRevision +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +revision: 3 diff --git a/testdata/v1.33.0/apps.v1beta2.DaemonSet.json b/testdata/v1.33.0/apps.v1beta2.DaemonSet.json new file mode 100644 index 0000000000..04da689bf5 --- /dev/null +++ b/testdata/v1.33.0/apps.v1beta2.DaemonSet.json @@ -0,0 +1,1819 @@ +{ + "kind": "DaemonSet", + "apiVersion": "apps/v1beta2", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "template": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "volumes": [ + { + "name": "nameValue", + "hostPath": { + "path": "pathValue", + "type": "typeValue" + }, + "emptyDir": { + "medium": "mediumValue", + "sizeLimit": "0" + }, + "gcePersistentDisk": { + "pdName": "pdNameValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "awsElasticBlockStore": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "gitRepo": { + "repository": "repositoryValue", + "revision": "revisionValue", + "directory": "directoryValue" + }, + "secret": { + "secretName": "secretNameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "defaultMode": 3, + "optional": true + }, + "nfs": { + "server": "serverValue", + "path": "pathValue", + "readOnly": true + }, + "iscsi": { + "targetPortal": "targetPortalValue", + "iqn": "iqnValue", + "lun": 3, + "iscsiInterface": "iscsiInterfaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "portals": [ + "portalsValue" + ], + "chapAuthDiscovery": true, + "chapAuthSession": true, + "secretRef": { + "name": "nameValue" + }, + "initiatorName": "initiatorNameValue" + }, + "glusterfs": { + "endpoints": "endpointsValue", + "path": "pathValue", + "readOnly": true + }, + "persistentVolumeClaim": { + "claimName": "claimNameValue", + "readOnly": true + }, + "rbd": { + "monitors": [ + "monitorsValue" + ], + "image": "imageValue", + "fsType": "fsTypeValue", + "pool": "poolValue", + "user": "userValue", + "keyring": "keyringValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true + }, + "flexVolume": { + "driver": "driverValue", + "fsType": "fsTypeValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true, + "options": { + "optionsKey": "optionsValue" + } + }, + "cinder": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue" + } + }, + "cephfs": { + "monitors": [ + "monitorsValue" + ], + "path": "pathValue", + "user": "userValue", + "secretFile": "secretFileValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true + }, + "flocker": { + "datasetName": "datasetNameValue", + "datasetUUID": "datasetUUIDValue" + }, + "downwardAPI": { + "items": [ + { + "path": "pathValue", + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "mode": 4 + } + ], + "defaultMode": 2 + }, + "fc": { + "targetWWNs": [ + "targetWWNsValue" + ], + "lun": 2, + "fsType": "fsTypeValue", + "readOnly": true, + "wwids": [ + "wwidsValue" + ] + }, + "azureFile": { + "secretName": "secretNameValue", + "shareName": "shareNameValue", + "readOnly": true + }, + "configMap": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "defaultMode": 3, + "optional": true + }, + "vsphereVolume": { + "volumePath": "volumePathValue", + "fsType": "fsTypeValue", + "storagePolicyName": "storagePolicyNameValue", + "storagePolicyID": "storagePolicyIDValue" + }, + "quobyte": { + "registry": "registryValue", + "volume": "volumeValue", + "readOnly": true, + "user": "userValue", + "group": "groupValue", + "tenant": "tenantValue" + }, + "azureDisk": { + "diskName": "diskNameValue", + "diskURI": "diskURIValue", + "cachingMode": "cachingModeValue", + "fsType": "fsTypeValue", + "readOnly": true, + "kind": "kindValue" + }, + "photonPersistentDisk": { + "pdID": "pdIDValue", + "fsType": "fsTypeValue" + }, + "projected": { + "sources": [ + { + "secret": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "optional": true + }, + "downwardAPI": { + "items": [ + { + "path": "pathValue", + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "mode": 4 + } + ] + }, + "configMap": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "optional": true + }, + "serviceAccountToken": { + "audience": "audienceValue", + "expirationSeconds": 2, + "path": "pathValue" + }, + "clusterTrustBundle": { + "name": "nameValue", + "signerName": "signerNameValue", + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "optional": true, + "path": "pathValue" + } + } + ], + "defaultMode": 2 + }, + "portworxVolume": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "scaleIO": { + "gateway": "gatewayValue", + "system": "systemValue", + "secretRef": { + "name": "nameValue" + }, + "sslEnabled": true, + "protectionDomain": "protectionDomainValue", + "storagePool": "storagePoolValue", + "storageMode": "storageModeValue", + "volumeName": "volumeNameValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "storageos": { + "volumeName": "volumeNameValue", + "volumeNamespace": "volumeNamespaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue" + } + }, + "csi": { + "driver": "driverValue", + "readOnly": true, + "fsType": "fsTypeValue", + "volumeAttributes": { + "volumeAttributesKey": "volumeAttributesValue" + }, + "nodePublishSecretRef": { + "name": "nameValue" + } + }, + "ephemeral": { + "volumeClaimTemplate": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "accessModes": [ + "accessModesValue" + ], + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + } + }, + "volumeName": "volumeNameValue", + "storageClassName": "storageClassNameValue", + "volumeMode": "volumeModeValue", + "dataSource": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue" + }, + "dataSourceRef": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue", + "namespace": "namespaceValue" + }, + "volumeAttributesClassName": "volumeAttributesClassNameValue" + } + } + }, + "image": { + "reference": "referenceValue", + "pullPolicy": "pullPolicyValue" + } + } + ], + "initContainers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true + } + ], + "containers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true + } + ], + "ephemeralContainers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true, + "targetContainerName": "targetContainerNameValue" + } + ], + "restartPolicy": "restartPolicyValue", + "terminationGracePeriodSeconds": 4, + "activeDeadlineSeconds": 5, + "dnsPolicy": "dnsPolicyValue", + "nodeSelector": { + "nodeSelectorKey": "nodeSelectorValue" + }, + "serviceAccountName": "serviceAccountNameValue", + "serviceAccount": "serviceAccountValue", + "automountServiceAccountToken": true, + "nodeName": "nodeNameValue", + "hostNetwork": true, + "hostPID": true, + "hostIPC": true, + "shareProcessNamespace": true, + "securityContext": { + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 2, + "runAsGroup": 6, + "runAsNonRoot": true, + "supplementalGroups": [ + 4 + ], + "supplementalGroupsPolicy": "supplementalGroupsPolicyValue", + "fsGroup": 5, + "sysctls": [ + { + "name": "nameValue", + "value": "valueValue" + } + ], + "fsGroupChangePolicy": "fsGroupChangePolicyValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "seLinuxChangePolicy": "seLinuxChangePolicyValue" + }, + "imagePullSecrets": [ + { + "name": "nameValue" + } + ], + "hostname": "hostnameValue", + "subdomain": "subdomainValue", + "affinity": { + "nodeAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "nodeSelectorTerms": [ + { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + ] + }, + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "preference": { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + } + ] + }, + "podAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": [ + { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + ], + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "podAffinityTerm": { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + } + ] + }, + "podAntiAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": [ + { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + ], + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "podAffinityTerm": { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + } + ] + } + }, + "schedulerName": "schedulerNameValue", + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ], + "hostAliases": [ + { + "ip": "ipValue", + "hostnames": [ + "hostnamesValue" + ] + } + ], + "priorityClassName": "priorityClassNameValue", + "priority": 25, + "dnsConfig": { + "nameservers": [ + "nameserversValue" + ], + "searches": [ + "searchesValue" + ], + "options": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "readinessGates": [ + { + "conditionType": "conditionTypeValue" + } + ], + "runtimeClassName": "runtimeClassNameValue", + "enableServiceLinks": true, + "preemptionPolicy": "preemptionPolicyValue", + "overhead": { + "overheadKey": "0" + }, + "topologySpreadConstraints": [ + { + "maxSkew": 1, + "topologyKey": "topologyKeyValue", + "whenUnsatisfiable": "whenUnsatisfiableValue", + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "minDomains": 5, + "nodeAffinityPolicy": "nodeAffinityPolicyValue", + "nodeTaintsPolicy": "nodeTaintsPolicyValue", + "matchLabelKeys": [ + "matchLabelKeysValue" + ] + } + ], + "setHostnameAsFQDN": true, + "os": { + "name": "nameValue" + }, + "hostUsers": true, + "schedulingGates": [ + { + "name": "nameValue" + } + ], + "resourceClaims": [ + { + "name": "nameValue", + "resourceClaimName": "resourceClaimNameValue", + "resourceClaimTemplateName": "resourceClaimTemplateNameValue" + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + } + } + }, + "updateStrategy": { + "type": "typeValue", + "rollingUpdate": { + "maxUnavailable": "maxUnavailableValue", + "maxSurge": "maxSurgeValue" + } + }, + "minReadySeconds": 4, + "revisionHistoryLimit": 6 + }, + "status": { + "currentNumberScheduled": 1, + "numberMisscheduled": 2, + "desiredNumberScheduled": 3, + "numberReady": 4, + "observedGeneration": 5, + "updatedNumberScheduled": 6, + "numberAvailable": 7, + "numberUnavailable": 8, + "collisionCount": 9, + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "lastTransitionTime": "2003-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/apps.v1beta2.DaemonSet.pb b/testdata/v1.33.0/apps.v1beta2.DaemonSet.pb new file mode 100644 index 0000000000000000000000000000000000000000..4b8d6dd6e850174ff970db42d8cb28e3518b0097 GIT binary patch literal 11062 zcmeHNO>7)V74{n^o0*#5RBXrYO(JizEY>Wr#$u&tB&5Vn0GlLuop`ef2vP2?8CTNN z-P_$`$3aLCgoJWol@qK4(nbPB;eeE5_JGJU%%mtGaYF93fMr!hAn`Y2$NiJYsXSbb|4&=bq&eedAT~rvfRt ztjk|zPLI?59q#ggMf^w&5Z>-^m+k~<3T7q zSGFGAH(xBi|JGmL-qRRa!lz%{e-EFQ$%RQ$a@ZPo!mscxT2_zpi#3zfnCp5Gi*ORz z-O%3Un2Rry(k0=l9~-&+W+qLu&U~Q@G7Co`sJDg79B~B&l=EDJHB#v^mvwj`8)(h* zWBpU{jlpS5)ZyOy{~2wJ%;99*vBPs)zFL{q9#Z($x91ySZ!KF1xv0NeA*Tpx)n$>j zekxPCp}ni0zd(wY_?CLEDnUFYmr>q`r&3bWcU~E8+mqk6Kb|4K9Mg^CtuZn|NdE~93PfLmGj+-FHWa;y3{nnxu#uu)>xcOb zvOi)$heyj^5HUx|SQM`-!=4;94~WnT#iASWpq;vhrmn;+v?{**SONDKtdz9{eGS&A za782-Dv$}hbePn*Yx|yXqXh4|SSys&EQg71_CW(Ke2rAmqs7aVd_hDPZCZ+K=n|PF z-}96z%~B6lmqX?%Xm){cJMyii%XkddPLi@6h-{7Y=?s17G&BuDJU??=mE>8@dhx|a zZa0|vRKdwXh4LjZa=Fc9v%e@DrE624WEQSGPZ~ChSg7M6ZCPDSaCa5HK`!XHevS-! zJzA5#ZaIa%F+-^3xe*f>EwYWE)jq#x#8xo9r%|{D2ulT}^XJc~9cmQ%_666DY;Fo$ zbzX;0Jc#33xXyw+E=|Il_>HbFeH7Afz$sE!=9X#EXOhN5i10zsEPIZywlby6vA*_X z&2GUwL2WxCj8e-itJ&pdPlB26Qj>H7ujebIl_TylHdK<* zHyReR))AJcJv#}$I{0Q_E)Rlt00XLTZ|6$x!jVTq?>+cFkV*%m{w7P@OgY>NBd)yJ zAjrr4z>Co7V2nKBbrAwevqrW~iGj7!mQ4KlWCt>RmvnuW;RE<>f&8XGW_Gr((?Gxe zB$10K-x0phmmeZk*0Tk7lPn40om*^kQ*(N>9*T}`HO8*y2I$~YBb|Xp;SaEo!aiGc zI;M~sH{^NUpgHQA--GjgKCl6Oqs>o~18U0SQ51-^Uc_bEHa^%Wfzs!rK7^Zl$OP#K{*(1M_gv6_MPr*ki}JOu%2qWHWCw1`XHTRnRua6W_7m zurSPkI+y%4^B=8GqM7;POPM>RxdYT#!2HWQ8fFeKo24UzcUZ&7!us{=T+U-^)#end0nI$inEv{%&gQNH0zsQfMlj~LL}M9i`o>80w!A3*yDOu znz)qLy)ar_mOpI$1hmnVY{WD{_88v-^3jo;?l_VgQ~lmBqbeBe9^N&7e1`~|($%OW z0F;U>Ia(LGo?6%IxltCy%?c8(?5#PjdIQgA7|~K5Hy5+Ac+knqzFOth1SZZsB&r*H zg){rBuA@TV%1?p(5J-*m?H4_*CrI@oG)B z{ORJeNS3--gou%O8hvq`aHat}7?Z4Jx!6J zFW~`3PEAeX@C~jg4?+myI>@o&QVm^-bviaAIn~N3@@%IYvW0-#+(ky_ob|btd189- z!A^yI8uZ-b;VObP8$1mcOp*&g#~sgNPHZ8|f!9u{3YK|3a?E!CegNa79nouR=ApHa9KdUV|D&KRf4Y*WsT< zatp``StdKJIqr1aIrO}{KkJ`I$zNfYtElyOfg}M^iI~wqU+pD5 zL*kUz^ynaMG&I_{8`N`1oYFJBA#u_uYR)D;?!@UPz-{=vcBVRTP_I?s%rbAcku}L& za%S%xm?HaxqVBYoX6PynybBY4AiO|CTm41HcVX%SXpx4@Rpm*o`hem!3>IJ)G2lyA@84u@Od6cP;*cNOpsZH!|QjLuDV9X|uxAAHRuAU}sYdr2a zhX+)VPNL?wOT(`h-l>vd3NlPVhPB&a?Y75FOoN8CTl5CQ+U>&vtMM2|IFDJorIYG1 z&B6mWaDG&P8wI@-c(VYv`x@>P7PPvzfrnt~&L-vn+LbEvNMHLoOa&bMQs~{n;~(o8 zU(gQ#X33O1RKwtWdDUebOyHH!Bx9flWLFit&i3#^n#`xB_sl+Hyn-EgK$;$n9V>ph tw9+?i8H?djFUgVc>gK=Sy^mKnO+4UcVRA#YS-~n`d=4Y0HAc*l{{og4Ke+$^ literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/apps.v1beta2.DaemonSet.yaml b/testdata/v1.33.0/apps.v1beta2.DaemonSet.yaml new file mode 100644 index 0000000000..a146f83aa3 --- /dev/null +++ b/testdata/v1.33.0/apps.v1beta2.DaemonSet.yaml @@ -0,0 +1,1249 @@ +apiVersion: apps/v1beta2 +kind: DaemonSet +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + minReadySeconds: 4 + revisionHistoryLimit: 6 + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + template: + metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + activeDeadlineSeconds: 5 + affinity: + nodeAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - preference: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + podAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + automountServiceAccountToken: true + containers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + dnsConfig: + nameservers: + - nameserversValue + options: + - name: nameValue + value: valueValue + searches: + - searchesValue + dnsPolicy: dnsPolicyValue + enableServiceLinks: true + ephemeralContainers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + targetContainerName: targetContainerNameValue + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + hostAliases: + - hostnames: + - hostnamesValue + ip: ipValue + hostIPC: true + hostNetwork: true + hostPID: true + hostUsers: true + hostname: hostnameValue + imagePullSecrets: + - name: nameValue + initContainers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + nodeName: nodeNameValue + nodeSelector: + nodeSelectorKey: nodeSelectorValue + os: + name: nameValue + overhead: + overheadKey: "0" + preemptionPolicy: preemptionPolicyValue + priority: 25 + priorityClassName: priorityClassNameValue + readinessGates: + - conditionType: conditionTypeValue + resourceClaims: + - name: nameValue + resourceClaimName: resourceClaimNameValue + resourceClaimTemplateName: resourceClaimTemplateNameValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + runtimeClassName: runtimeClassNameValue + schedulerName: schedulerNameValue + schedulingGates: + - name: nameValue + securityContext: + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + fsGroup: 5 + fsGroupChangePolicy: fsGroupChangePolicyValue + runAsGroup: 6 + runAsNonRoot: true + runAsUser: 2 + seLinuxChangePolicy: seLinuxChangePolicyValue + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + supplementalGroups: + - 4 + supplementalGroupsPolicy: supplementalGroupsPolicyValue + sysctls: + - name: nameValue + value: valueValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + serviceAccount: serviceAccountValue + serviceAccountName: serviceAccountNameValue + setHostnameAsFQDN: true + shareProcessNamespace: true + subdomain: subdomainValue + terminationGracePeriodSeconds: 4 + tolerations: + - effect: effectValue + key: keyValue + operator: operatorValue + tolerationSeconds: 5 + value: valueValue + topologySpreadConstraints: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + maxSkew: 1 + minDomains: 5 + nodeAffinityPolicy: nodeAffinityPolicyValue + nodeTaintsPolicy: nodeTaintsPolicyValue + topologyKey: topologyKeyValue + whenUnsatisfiable: whenUnsatisfiableValue + volumes: + - awsElasticBlockStore: + fsType: fsTypeValue + partition: 3 + readOnly: true + volumeID: volumeIDValue + azureDisk: + cachingMode: cachingModeValue + diskName: diskNameValue + diskURI: diskURIValue + fsType: fsTypeValue + kind: kindValue + readOnly: true + azureFile: + readOnly: true + secretName: secretNameValue + shareName: shareNameValue + cephfs: + monitors: + - monitorsValue + path: pathValue + readOnly: true + secretFile: secretFileValue + secretRef: + name: nameValue + user: userValue + cinder: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + volumeID: volumeIDValue + configMap: + defaultMode: 3 + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + csi: + driver: driverValue + fsType: fsTypeValue + nodePublishSecretRef: + name: nameValue + readOnly: true + volumeAttributes: + volumeAttributesKey: volumeAttributesValue + downwardAPI: + defaultMode: 2 + items: + - fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + mode: 4 + path: pathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + emptyDir: + medium: mediumValue + sizeLimit: "0" + ephemeral: + volumeClaimTemplate: + metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + accessModes: + - accessModesValue + dataSource: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + dataSourceRef: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resources: + limits: + limitsKey: "0" + requests: + requestsKey: "0" + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + storageClassName: storageClassNameValue + volumeAttributesClassName: volumeAttributesClassNameValue + volumeMode: volumeModeValue + volumeName: volumeNameValue + fc: + fsType: fsTypeValue + lun: 2 + readOnly: true + targetWWNs: + - targetWWNsValue + wwids: + - wwidsValue + flexVolume: + driver: driverValue + fsType: fsTypeValue + options: + optionsKey: optionsValue + readOnly: true + secretRef: + name: nameValue + flocker: + datasetName: datasetNameValue + datasetUUID: datasetUUIDValue + gcePersistentDisk: + fsType: fsTypeValue + partition: 3 + pdName: pdNameValue + readOnly: true + gitRepo: + directory: directoryValue + repository: repositoryValue + revision: revisionValue + glusterfs: + endpoints: endpointsValue + path: pathValue + readOnly: true + hostPath: + path: pathValue + type: typeValue + image: + pullPolicy: pullPolicyValue + reference: referenceValue + iscsi: + chapAuthDiscovery: true + chapAuthSession: true + fsType: fsTypeValue + initiatorName: initiatorNameValue + iqn: iqnValue + iscsiInterface: iscsiInterfaceValue + lun: 3 + portals: + - portalsValue + readOnly: true + secretRef: + name: nameValue + targetPortal: targetPortalValue + name: nameValue + nfs: + path: pathValue + readOnly: true + server: serverValue + persistentVolumeClaim: + claimName: claimNameValue + readOnly: true + photonPersistentDisk: + fsType: fsTypeValue + pdID: pdIDValue + portworxVolume: + fsType: fsTypeValue + readOnly: true + volumeID: volumeIDValue + projected: + defaultMode: 2 + sources: + - clusterTrustBundle: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + name: nameValue + optional: true + path: pathValue + signerName: signerNameValue + configMap: + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + downwardAPI: + items: + - fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + mode: 4 + path: pathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secret: + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + serviceAccountToken: + audience: audienceValue + expirationSeconds: 2 + path: pathValue + quobyte: + group: groupValue + readOnly: true + registry: registryValue + tenant: tenantValue + user: userValue + volume: volumeValue + rbd: + fsType: fsTypeValue + image: imageValue + keyring: keyringValue + monitors: + - monitorsValue + pool: poolValue + readOnly: true + secretRef: + name: nameValue + user: userValue + scaleIO: + fsType: fsTypeValue + gateway: gatewayValue + protectionDomain: protectionDomainValue + readOnly: true + secretRef: + name: nameValue + sslEnabled: true + storageMode: storageModeValue + storagePool: storagePoolValue + system: systemValue + volumeName: volumeNameValue + secret: + defaultMode: 3 + items: + - key: keyValue + mode: 3 + path: pathValue + optional: true + secretName: secretNameValue + storageos: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + volumeName: volumeNameValue + volumeNamespace: volumeNamespaceValue + vsphereVolume: + fsType: fsTypeValue + storagePolicyID: storagePolicyIDValue + storagePolicyName: storagePolicyNameValue + volumePath: volumePathValue + updateStrategy: + rollingUpdate: + maxSurge: maxSurgeValue + maxUnavailable: maxUnavailableValue + type: typeValue +status: + collisionCount: 9 + conditions: + - lastTransitionTime: "2003-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue + currentNumberScheduled: 1 + desiredNumberScheduled: 3 + numberAvailable: 7 + numberMisscheduled: 2 + numberReady: 4 + numberUnavailable: 8 + observedGeneration: 5 + updatedNumberScheduled: 6 diff --git a/testdata/v1.33.0/apps.v1beta2.Deployment.json b/testdata/v1.33.0/apps.v1beta2.Deployment.json new file mode 100644 index 0000000000..8e96d2b935 --- /dev/null +++ b/testdata/v1.33.0/apps.v1beta2.Deployment.json @@ -0,0 +1,1822 @@ +{ + "kind": "Deployment", + "apiVersion": "apps/v1beta2", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "replicas": 1, + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "template": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "volumes": [ + { + "name": "nameValue", + "hostPath": { + "path": "pathValue", + "type": "typeValue" + }, + "emptyDir": { + "medium": "mediumValue", + "sizeLimit": "0" + }, + "gcePersistentDisk": { + "pdName": "pdNameValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "awsElasticBlockStore": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "gitRepo": { + "repository": "repositoryValue", + "revision": "revisionValue", + "directory": "directoryValue" + }, + "secret": { + "secretName": "secretNameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "defaultMode": 3, + "optional": true + }, + "nfs": { + "server": "serverValue", + "path": "pathValue", + "readOnly": true + }, + "iscsi": { + "targetPortal": "targetPortalValue", + "iqn": "iqnValue", + "lun": 3, + "iscsiInterface": "iscsiInterfaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "portals": [ + "portalsValue" + ], + "chapAuthDiscovery": true, + "chapAuthSession": true, + "secretRef": { + "name": "nameValue" + }, + "initiatorName": "initiatorNameValue" + }, + "glusterfs": { + "endpoints": "endpointsValue", + "path": "pathValue", + "readOnly": true + }, + "persistentVolumeClaim": { + "claimName": "claimNameValue", + "readOnly": true + }, + "rbd": { + "monitors": [ + "monitorsValue" + ], + "image": "imageValue", + "fsType": "fsTypeValue", + "pool": "poolValue", + "user": "userValue", + "keyring": "keyringValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true + }, + "flexVolume": { + "driver": "driverValue", + "fsType": "fsTypeValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true, + "options": { + "optionsKey": "optionsValue" + } + }, + "cinder": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue" + } + }, + "cephfs": { + "monitors": [ + "monitorsValue" + ], + "path": "pathValue", + "user": "userValue", + "secretFile": "secretFileValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true + }, + "flocker": { + "datasetName": "datasetNameValue", + "datasetUUID": "datasetUUIDValue" + }, + "downwardAPI": { + "items": [ + { + "path": "pathValue", + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "mode": 4 + } + ], + "defaultMode": 2 + }, + "fc": { + "targetWWNs": [ + "targetWWNsValue" + ], + "lun": 2, + "fsType": "fsTypeValue", + "readOnly": true, + "wwids": [ + "wwidsValue" + ] + }, + "azureFile": { + "secretName": "secretNameValue", + "shareName": "shareNameValue", + "readOnly": true + }, + "configMap": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "defaultMode": 3, + "optional": true + }, + "vsphereVolume": { + "volumePath": "volumePathValue", + "fsType": "fsTypeValue", + "storagePolicyName": "storagePolicyNameValue", + "storagePolicyID": "storagePolicyIDValue" + }, + "quobyte": { + "registry": "registryValue", + "volume": "volumeValue", + "readOnly": true, + "user": "userValue", + "group": "groupValue", + "tenant": "tenantValue" + }, + "azureDisk": { + "diskName": "diskNameValue", + "diskURI": "diskURIValue", + "cachingMode": "cachingModeValue", + "fsType": "fsTypeValue", + "readOnly": true, + "kind": "kindValue" + }, + "photonPersistentDisk": { + "pdID": "pdIDValue", + "fsType": "fsTypeValue" + }, + "projected": { + "sources": [ + { + "secret": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "optional": true + }, + "downwardAPI": { + "items": [ + { + "path": "pathValue", + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "mode": 4 + } + ] + }, + "configMap": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "optional": true + }, + "serviceAccountToken": { + "audience": "audienceValue", + "expirationSeconds": 2, + "path": "pathValue" + }, + "clusterTrustBundle": { + "name": "nameValue", + "signerName": "signerNameValue", + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "optional": true, + "path": "pathValue" + } + } + ], + "defaultMode": 2 + }, + "portworxVolume": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "scaleIO": { + "gateway": "gatewayValue", + "system": "systemValue", + "secretRef": { + "name": "nameValue" + }, + "sslEnabled": true, + "protectionDomain": "protectionDomainValue", + "storagePool": "storagePoolValue", + "storageMode": "storageModeValue", + "volumeName": "volumeNameValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "storageos": { + "volumeName": "volumeNameValue", + "volumeNamespace": "volumeNamespaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue" + } + }, + "csi": { + "driver": "driverValue", + "readOnly": true, + "fsType": "fsTypeValue", + "volumeAttributes": { + "volumeAttributesKey": "volumeAttributesValue" + }, + "nodePublishSecretRef": { + "name": "nameValue" + } + }, + "ephemeral": { + "volumeClaimTemplate": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "accessModes": [ + "accessModesValue" + ], + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + } + }, + "volumeName": "volumeNameValue", + "storageClassName": "storageClassNameValue", + "volumeMode": "volumeModeValue", + "dataSource": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue" + }, + "dataSourceRef": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue", + "namespace": "namespaceValue" + }, + "volumeAttributesClassName": "volumeAttributesClassNameValue" + } + } + }, + "image": { + "reference": "referenceValue", + "pullPolicy": "pullPolicyValue" + } + } + ], + "initContainers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true + } + ], + "containers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true + } + ], + "ephemeralContainers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true, + "targetContainerName": "targetContainerNameValue" + } + ], + "restartPolicy": "restartPolicyValue", + "terminationGracePeriodSeconds": 4, + "activeDeadlineSeconds": 5, + "dnsPolicy": "dnsPolicyValue", + "nodeSelector": { + "nodeSelectorKey": "nodeSelectorValue" + }, + "serviceAccountName": "serviceAccountNameValue", + "serviceAccount": "serviceAccountValue", + "automountServiceAccountToken": true, + "nodeName": "nodeNameValue", + "hostNetwork": true, + "hostPID": true, + "hostIPC": true, + "shareProcessNamespace": true, + "securityContext": { + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 2, + "runAsGroup": 6, + "runAsNonRoot": true, + "supplementalGroups": [ + 4 + ], + "supplementalGroupsPolicy": "supplementalGroupsPolicyValue", + "fsGroup": 5, + "sysctls": [ + { + "name": "nameValue", + "value": "valueValue" + } + ], + "fsGroupChangePolicy": "fsGroupChangePolicyValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "seLinuxChangePolicy": "seLinuxChangePolicyValue" + }, + "imagePullSecrets": [ + { + "name": "nameValue" + } + ], + "hostname": "hostnameValue", + "subdomain": "subdomainValue", + "affinity": { + "nodeAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "nodeSelectorTerms": [ + { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + ] + }, + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "preference": { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + } + ] + }, + "podAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": [ + { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + ], + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "podAffinityTerm": { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + } + ] + }, + "podAntiAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": [ + { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + ], + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "podAffinityTerm": { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + } + ] + } + }, + "schedulerName": "schedulerNameValue", + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ], + "hostAliases": [ + { + "ip": "ipValue", + "hostnames": [ + "hostnamesValue" + ] + } + ], + "priorityClassName": "priorityClassNameValue", + "priority": 25, + "dnsConfig": { + "nameservers": [ + "nameserversValue" + ], + "searches": [ + "searchesValue" + ], + "options": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "readinessGates": [ + { + "conditionType": "conditionTypeValue" + } + ], + "runtimeClassName": "runtimeClassNameValue", + "enableServiceLinks": true, + "preemptionPolicy": "preemptionPolicyValue", + "overhead": { + "overheadKey": "0" + }, + "topologySpreadConstraints": [ + { + "maxSkew": 1, + "topologyKey": "topologyKeyValue", + "whenUnsatisfiable": "whenUnsatisfiableValue", + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "minDomains": 5, + "nodeAffinityPolicy": "nodeAffinityPolicyValue", + "nodeTaintsPolicy": "nodeTaintsPolicyValue", + "matchLabelKeys": [ + "matchLabelKeysValue" + ] + } + ], + "setHostnameAsFQDN": true, + "os": { + "name": "nameValue" + }, + "hostUsers": true, + "schedulingGates": [ + { + "name": "nameValue" + } + ], + "resourceClaims": [ + { + "name": "nameValue", + "resourceClaimName": "resourceClaimNameValue", + "resourceClaimTemplateName": "resourceClaimTemplateNameValue" + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + } + } + }, + "strategy": { + "type": "typeValue", + "rollingUpdate": { + "maxUnavailable": "maxUnavailableValue", + "maxSurge": "maxSurgeValue" + } + }, + "minReadySeconds": 5, + "revisionHistoryLimit": 6, + "paused": true, + "progressDeadlineSeconds": 9 + }, + "status": { + "observedGeneration": 1, + "replicas": 2, + "updatedReplicas": 3, + "readyReplicas": 7, + "availableReplicas": 4, + "unavailableReplicas": 5, + "terminatingReplicas": 9, + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "lastUpdateTime": "2006-01-01T01:01:01Z", + "lastTransitionTime": "2007-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ], + "collisionCount": 8 + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/apps.v1beta2.Deployment.pb b/testdata/v1.33.0/apps.v1beta2.Deployment.pb new file mode 100644 index 0000000000000000000000000000000000000000..cf661d025fb90d8991eefbca722b1b171e344772 GIT binary patch literal 11077 zcmeHNO^h5z72Y>%rvQ zg)1V#P=QR~#Y3dVUEBAB8>!EzF4i(7HOpb5mwnKH3tu7Co`*AeiDy$Hdg#?sWJ8z8 zEcu?NRB4v_sJa}|s-W8i!tKhpwl3pQSUo|?b|A7f(x)@@p)=4l2=V+Za8;6LIqSt| z9=hFN>Qec1$kzghL`ahU0?bzOTPi9NL{&Grp16u8dD*f4;syq=Ll;vQ_7qe zXiwJc7R(dWwkyIY^~|!GU2gU?nE5U>NjLENzOuA(#9ih_^5r(1Bvo64m$IMHO8mOA zd{Xus4U1W8XqKlvJ4wH~@y$XjPlI;=Q>t%o6-w^H;fI^vTku^Vl`iJ}4VHwNa<~~r zTt%~CBcJpGFT$XMS@O8oLlaP%HL`U|9ITzTWa7^!JCNzSsOz%?@4&AM)V362~I-u&ONrdp#?o!4@Fn^8e>PX0S36#NoS!^_#G^y zW}huOoluq5kBX*2s0{#+$&AiPRc3g8ujkYt>mv+{Ahm+-OLxyXW^9Q0Z`)s^UrN-m^s9477q{G>!3J)hbKub;2j=h zZcgid-*HsNkj71aT-AMDhanZq>mk`tti>!LvQm4{tZ#S$(wXjYk)V-hv?&?|1X|TN z;(AsJT*_-+7@b^_KWx7O+GtAFW11j)jPC$>|4dG|oym;@gV8XfDwymZ+%78+bm$jFvLFR?N%dK_@QzYL(kl2%P&! zRoD44XZ9CeN2R{ySAl#VNR15a7d@>5q*aGuG!slA33t;!s9OB>W>QK+yCbkEZ_=01~M3R3~c^c zO!x_Zy7&Z=r5=_cV#_>@u{Z{tX~GUBBx_k33@KOs0c4UCnXMuRE!k+>($>%yK1p(% zNlSs3@BkyHrY3RtI#-kjO$g#j$kF0r4MU1`I(8&E)$%FwM7I~Rg@D^w8WPMo>vJoM z#B~4toyziQ(07l8D`>3Q;2F4Jl3V~f>39}%Vh>pgyiQ70u+a0qW4;COJ%AqoLj7lv zOk?a7m*sD1eIOR$LJT+DfJ0lXw1oC@hFfq@_szPEwA#wI;x;_)UUmmQPWGmJD_eU? zu?eXba`u?TNLBB`7LCRhZE=KY)oeG^K5jon>Mr7iv)qw&hPYn0S8tHNnBSj7t7DcG z+f*jc;=aKSIeNJoPmqmy5xx#<5WG_`i3f0)#+_Z>$4QiPE?3}Az zhkq8yEg;KeiEOjxNVhxg97f)qpY_k<6m-&hyg-rwDIjJvFjjkx*WE-Tm)p9- zD0g38@WnrBi<&v-cR$)ik-3|=i@ZP>$; z&^4@>#Y`}+7hfyfoEfCV~x8jZiuyxup`)NQk&RWP>qarf6OM2b?|ZruAU}s zdou1ghX+)VPNL?wg5lQ-Z&t|&f{Y-@sCGN5-S)YOFlbb}#b_|9-99L>8jo;<^N6)u zI;}3#EZlbk=Z6KjQP4|)Hw$okpy5toL92TkcnGF$Z6XHHu2h+a2inge6maxwp?3?9 zeynGHRzCokBM0Q68Ybt7)V74{oD#8dN|ivQA^MBZjutXW{qh?T67km7Lyir2{+CnhU{5bf@oam78| zz1=-_9E1cxNGKOjPRmLlZKOp}I3VSiJ)q5AmPN~9PY4MK1&PCoL*T^E0bW=2PtDlL z8pRQjc5dBO)m86Ry`S%U)ths{5Yb4{@Vwx~tuL;#(5O?g!aSRs#swDA->#BBoxkLUulB(#lb9;2EYIqL%_@x0blGDZZ$UcDW^<>SI0&+^&z~m>+Q0 z5v_BFo1>#2y!n^6N2)`M`1H#M@8i=lS(_qx+gN9I@G{$>1^FnxSl3C}a2z)@LYzc& zSCw}$=JHDHeN{c&&&99<>VxH@;PKq7FG1|-*4Ycff zk^YJJTK_aU>Tv&q{|r}$>Npv*t>EI0CwHbXLUP~vZnGM6*VCO4oBI07D9|N>dUcG@ z+*nH0t}5?x`RB>#CfkwEB`Jz4CDRI9(PUC??cJ{p4(`bx+#k=AUyZ5m@#YwrAbHOS zH{=oJ!{qQOC4~;Nc()^ah6&7SCrQDxQct3VR%R?y!_%NolhT%JcRTFtY57(Eh}tZv z_{?(y9=d*F7CzhJsefr@i~Gz>yX#*dm4KN(3$t}66{E_8pBj#2XlSGmFn=qtf2ALq zTjWS+_-z(0yMAccQpQpKnsn`{Vf`o%%z&SDLgu%U08vwwn1x2s6CX>%Jq0TTWkX+u zb;=zcasw4e1ztQs%FMAmmph^SjH+U-P*OH+gLl#os<8GAQtG%klN)A)|zKg1hA@w4WO?>C$<5rqx`}x!~TB z?QL$!&KvOQ-F93KHVi+@OjGa%exvG3A7$w`VTn|vyQNz6xTH1_p!uNDEW4N=cT%PF zv7YvL&u&ALptfxugo$SsdINsuT@RM+(5HD=UQ?4RgG^3>RB4R3z$+pYp+mp4^BSX^xlUb0x7mJ?{6D%m?;E1 zLC9n@>o@Xo&v!!%I+!I-yB#zEsaZAMr`W+7NlPkzGd_V--$hlQW%v+&mm|N)k(vFS z>om}BK1s_(E8mxWVJtsRN=Db>%!zRlns?^0wQVKn(MrJEs@G@-iVZNpB~Cg6)!ZLo zAu;=O)9IMB)TkjtcKz)ntE;5OdhC=8`1Mtuag z4w1JG4dBd^hcmy4zKcX%jHEQ;6>mhstZ2sX1et>1C=12x*( zcpN(xY$FI#L#@ZFrtzck8FVv`e>DxKGz)+V4`{x$uVH#0w^=;dZ?C=L{2iVpWuLW} zpSn4%cwO6;8ABL1{Y6RjbrpsbO}B$&L$Vevl&WB|dw5rKexDY0 zOjV;88=z2R(N?-J^prbp*9p@st{0JVrEj%y+3UNWff+4fa`lLpMT5><@#HQyCJ;Dx zk*aR76=qnkIJQiED?bPFV<2VHb6)hE3Xm$JP#wYmkI+_bbv`-~@u(L9bA!c%x;Cju z-g7p`N&g&FnWKt~u^8cUo~9E->mxIVWv&Lm;`V}i9T_lA_K{{S*hMh#0w4w|>nwuP;sFMOV4 zIFsgmH|7CaMoo2Mvn?hm51J4}m5@`Ti)9Qc=DEm`#8fLw)bBd;!73VSI(Qn^bdm``$8Fa%?8rlweYcfR6)g08?3nKX{0QJDfKdNM zB-0ps`4zD&t@Okq+=%{$n{Z-}ofgnu%y1iytG-#WkXD=7QQU#2-OKL6XUUO-Z>4)r zDK;V1Le3ts7@_Jt*rQR~qb-Us^|Ivz%Eyi8NX0?CaDmyP&Jfk>j;IY{iRNS+t>#TL zvZ+*_#iP9)V)RNWnjjtXDtsF@z<)bO{x@sJ)Ce*tHXasdn+Iyvi&L#YV2_0j!%2vu z)My{Zyf3FX5p+Gz#{7ZY+7@f6hjDo-U|4(YUfCtURTZvZgHq&ePEy3Z4rR=KR>swC zz&}UHZ6GUTne4OXNcTJLB1YbWpY_kf^Fc$5ZUV53TC(o1LA}ia0;gy z5T_)44Tw`#)1&>gQB!E+K~T>DaZ2v=2E<9Bs2Q91q!XuG0C(U^%AIQ8MZHpi(+jNC zLe?a(&TTRmDxM{D9(*7>18| zG{&wEV?e(LxDR9Ew$8$vR@X^?SojFWk-LYy!+KYI0PrusJ08Y5;wn=igV%Cc8+P#~ zbOS495fhB+#n*H1L{N1Xc-AJiH<+{P1X$|`THIKVYZC_xs*$lyMr?Avg+F)T?kUnX z#-omlctI7aB&xX=48M_kw?qaIWB@@1wcA1Mw##&cL4(>YMuS1^_F;)tdyFfb$E@Ab zDfu(a!mdAXUeCeJoLUOJm4iDy4R>=3O5Iz-OECG@CSm~Pmn!{aPy0oL0=D{F=)K(I zU+YbeXfNYE8s2Y;y7QOS>wp5*u)}T)ZSbGVf4}zt|GCuhUfKxaUrTF6EZ#-eCjwo~ K9oB~Qq5lFaQ!M8I literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/apps.v1beta2.ReplicaSet.yaml b/testdata/v1.33.0/apps.v1beta2.ReplicaSet.yaml new file mode 100644 index 0000000000..84a17bf452 --- /dev/null +++ b/testdata/v1.33.0/apps.v1beta2.ReplicaSet.yaml @@ -0,0 +1,1241 @@ +apiVersion: apps/v1beta2 +kind: ReplicaSet +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + minReadySeconds: 4 + replicas: 1 + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + template: + metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + activeDeadlineSeconds: 5 + affinity: + nodeAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - preference: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + podAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + automountServiceAccountToken: true + containers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + dnsConfig: + nameservers: + - nameserversValue + options: + - name: nameValue + value: valueValue + searches: + - searchesValue + dnsPolicy: dnsPolicyValue + enableServiceLinks: true + ephemeralContainers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + targetContainerName: targetContainerNameValue + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + hostAliases: + - hostnames: + - hostnamesValue + ip: ipValue + hostIPC: true + hostNetwork: true + hostPID: true + hostUsers: true + hostname: hostnameValue + imagePullSecrets: + - name: nameValue + initContainers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + nodeName: nodeNameValue + nodeSelector: + nodeSelectorKey: nodeSelectorValue + os: + name: nameValue + overhead: + overheadKey: "0" + preemptionPolicy: preemptionPolicyValue + priority: 25 + priorityClassName: priorityClassNameValue + readinessGates: + - conditionType: conditionTypeValue + resourceClaims: + - name: nameValue + resourceClaimName: resourceClaimNameValue + resourceClaimTemplateName: resourceClaimTemplateNameValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + runtimeClassName: runtimeClassNameValue + schedulerName: schedulerNameValue + schedulingGates: + - name: nameValue + securityContext: + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + fsGroup: 5 + fsGroupChangePolicy: fsGroupChangePolicyValue + runAsGroup: 6 + runAsNonRoot: true + runAsUser: 2 + seLinuxChangePolicy: seLinuxChangePolicyValue + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + supplementalGroups: + - 4 + supplementalGroupsPolicy: supplementalGroupsPolicyValue + sysctls: + - name: nameValue + value: valueValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + serviceAccount: serviceAccountValue + serviceAccountName: serviceAccountNameValue + setHostnameAsFQDN: true + shareProcessNamespace: true + subdomain: subdomainValue + terminationGracePeriodSeconds: 4 + tolerations: + - effect: effectValue + key: keyValue + operator: operatorValue + tolerationSeconds: 5 + value: valueValue + topologySpreadConstraints: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + maxSkew: 1 + minDomains: 5 + nodeAffinityPolicy: nodeAffinityPolicyValue + nodeTaintsPolicy: nodeTaintsPolicyValue + topologyKey: topologyKeyValue + whenUnsatisfiable: whenUnsatisfiableValue + volumes: + - awsElasticBlockStore: + fsType: fsTypeValue + partition: 3 + readOnly: true + volumeID: volumeIDValue + azureDisk: + cachingMode: cachingModeValue + diskName: diskNameValue + diskURI: diskURIValue + fsType: fsTypeValue + kind: kindValue + readOnly: true + azureFile: + readOnly: true + secretName: secretNameValue + shareName: shareNameValue + cephfs: + monitors: + - monitorsValue + path: pathValue + readOnly: true + secretFile: secretFileValue + secretRef: + name: nameValue + user: userValue + cinder: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + volumeID: volumeIDValue + configMap: + defaultMode: 3 + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + csi: + driver: driverValue + fsType: fsTypeValue + nodePublishSecretRef: + name: nameValue + readOnly: true + volumeAttributes: + volumeAttributesKey: volumeAttributesValue + downwardAPI: + defaultMode: 2 + items: + - fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + mode: 4 + path: pathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + emptyDir: + medium: mediumValue + sizeLimit: "0" + ephemeral: + volumeClaimTemplate: + metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + accessModes: + - accessModesValue + dataSource: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + dataSourceRef: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resources: + limits: + limitsKey: "0" + requests: + requestsKey: "0" + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + storageClassName: storageClassNameValue + volumeAttributesClassName: volumeAttributesClassNameValue + volumeMode: volumeModeValue + volumeName: volumeNameValue + fc: + fsType: fsTypeValue + lun: 2 + readOnly: true + targetWWNs: + - targetWWNsValue + wwids: + - wwidsValue + flexVolume: + driver: driverValue + fsType: fsTypeValue + options: + optionsKey: optionsValue + readOnly: true + secretRef: + name: nameValue + flocker: + datasetName: datasetNameValue + datasetUUID: datasetUUIDValue + gcePersistentDisk: + fsType: fsTypeValue + partition: 3 + pdName: pdNameValue + readOnly: true + gitRepo: + directory: directoryValue + repository: repositoryValue + revision: revisionValue + glusterfs: + endpoints: endpointsValue + path: pathValue + readOnly: true + hostPath: + path: pathValue + type: typeValue + image: + pullPolicy: pullPolicyValue + reference: referenceValue + iscsi: + chapAuthDiscovery: true + chapAuthSession: true + fsType: fsTypeValue + initiatorName: initiatorNameValue + iqn: iqnValue + iscsiInterface: iscsiInterfaceValue + lun: 3 + portals: + - portalsValue + readOnly: true + secretRef: + name: nameValue + targetPortal: targetPortalValue + name: nameValue + nfs: + path: pathValue + readOnly: true + server: serverValue + persistentVolumeClaim: + claimName: claimNameValue + readOnly: true + photonPersistentDisk: + fsType: fsTypeValue + pdID: pdIDValue + portworxVolume: + fsType: fsTypeValue + readOnly: true + volumeID: volumeIDValue + projected: + defaultMode: 2 + sources: + - clusterTrustBundle: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + name: nameValue + optional: true + path: pathValue + signerName: signerNameValue + configMap: + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + downwardAPI: + items: + - fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + mode: 4 + path: pathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secret: + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + serviceAccountToken: + audience: audienceValue + expirationSeconds: 2 + path: pathValue + quobyte: + group: groupValue + readOnly: true + registry: registryValue + tenant: tenantValue + user: userValue + volume: volumeValue + rbd: + fsType: fsTypeValue + image: imageValue + keyring: keyringValue + monitors: + - monitorsValue + pool: poolValue + readOnly: true + secretRef: + name: nameValue + user: userValue + scaleIO: + fsType: fsTypeValue + gateway: gatewayValue + protectionDomain: protectionDomainValue + readOnly: true + secretRef: + name: nameValue + sslEnabled: true + storageMode: storageModeValue + storagePool: storagePoolValue + system: systemValue + volumeName: volumeNameValue + secret: + defaultMode: 3 + items: + - key: keyValue + mode: 3 + path: pathValue + optional: true + secretName: secretNameValue + storageos: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + volumeName: volumeNameValue + volumeNamespace: volumeNamespaceValue + vsphereVolume: + fsType: fsTypeValue + storagePolicyID: storagePolicyIDValue + storagePolicyName: storagePolicyNameValue + volumePath: volumePathValue +status: + availableReplicas: 5 + conditions: + - lastTransitionTime: "2003-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue + fullyLabeledReplicas: 2 + observedGeneration: 3 + readyReplicas: 4 + replicas: 1 + terminatingReplicas: 7 diff --git a/testdata/v1.33.0/apps.v1beta2.Scale.json b/testdata/v1.33.0/apps.v1beta2.Scale.json new file mode 100644 index 0000000000..ab0a7ad374 --- /dev/null +++ b/testdata/v1.33.0/apps.v1beta2.Scale.json @@ -0,0 +1,56 @@ +{ + "kind": "Scale", + "apiVersion": "apps/v1beta2", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "replicas": 1 + }, + "status": { + "replicas": 1, + "selector": { + "selectorKey": "selectorValue" + }, + "targetSelector": "targetSelectorValue" + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/apps.v1beta2.Scale.pb b/testdata/v1.33.0/apps.v1beta2.Scale.pb new file mode 100644 index 0000000000000000000000000000000000000000..d62f25ff1dad91412c7af2a2e3c8acc6f0e8cf30 GIT binary patch literal 448 zcmZ8d!AiqG5KYpG>9)2pDoF5@V=ro;P(1diB0|N3w@Eq;Yqy)QyAfLP2mA=Zv!CD} z2>l1~;MqUW&4$+M?aiB+H*emgFDge0HLwEx z?G!l*P8WYN^!@;lraOI}k zft;=zIkNk<=!_``M(5g~(Rs9E(wYK?6on!Dc9xg_FYO2aWkUVK$Kt!@S&g+I4nJAwwgEWP?9PB6%DXQTg(h98~<5`&f literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/apps.v1beta2.Scale.yaml b/testdata/v1.33.0/apps.v1beta2.Scale.yaml new file mode 100644 index 0000000000..bb916412c2 --- /dev/null +++ b/testdata/v1.33.0/apps.v1beta2.Scale.yaml @@ -0,0 +1,41 @@ +apiVersion: apps/v1beta2 +kind: Scale +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + replicas: 1 +status: + replicas: 1 + selector: + selectorKey: selectorValue + targetSelector: targetSelectorValue diff --git a/testdata/v1.33.0/apps.v1beta2.StatefulSet.json b/testdata/v1.33.0/apps.v1beta2.StatefulSet.json new file mode 100644 index 0000000000..92e8fca826 --- /dev/null +++ b/testdata/v1.33.0/apps.v1beta2.StatefulSet.json @@ -0,0 +1,1947 @@ +{ + "kind": "StatefulSet", + "apiVersion": "apps/v1beta2", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "replicas": 1, + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "template": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "volumes": [ + { + "name": "nameValue", + "hostPath": { + "path": "pathValue", + "type": "typeValue" + }, + "emptyDir": { + "medium": "mediumValue", + "sizeLimit": "0" + }, + "gcePersistentDisk": { + "pdName": "pdNameValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "awsElasticBlockStore": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "gitRepo": { + "repository": "repositoryValue", + "revision": "revisionValue", + "directory": "directoryValue" + }, + "secret": { + "secretName": "secretNameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "defaultMode": 3, + "optional": true + }, + "nfs": { + "server": "serverValue", + "path": "pathValue", + "readOnly": true + }, + "iscsi": { + "targetPortal": "targetPortalValue", + "iqn": "iqnValue", + "lun": 3, + "iscsiInterface": "iscsiInterfaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "portals": [ + "portalsValue" + ], + "chapAuthDiscovery": true, + "chapAuthSession": true, + "secretRef": { + "name": "nameValue" + }, + "initiatorName": "initiatorNameValue" + }, + "glusterfs": { + "endpoints": "endpointsValue", + "path": "pathValue", + "readOnly": true + }, + "persistentVolumeClaim": { + "claimName": "claimNameValue", + "readOnly": true + }, + "rbd": { + "monitors": [ + "monitorsValue" + ], + "image": "imageValue", + "fsType": "fsTypeValue", + "pool": "poolValue", + "user": "userValue", + "keyring": "keyringValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true + }, + "flexVolume": { + "driver": "driverValue", + "fsType": "fsTypeValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true, + "options": { + "optionsKey": "optionsValue" + } + }, + "cinder": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue" + } + }, + "cephfs": { + "monitors": [ + "monitorsValue" + ], + "path": "pathValue", + "user": "userValue", + "secretFile": "secretFileValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true + }, + "flocker": { + "datasetName": "datasetNameValue", + "datasetUUID": "datasetUUIDValue" + }, + "downwardAPI": { + "items": [ + { + "path": "pathValue", + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "mode": 4 + } + ], + "defaultMode": 2 + }, + "fc": { + "targetWWNs": [ + "targetWWNsValue" + ], + "lun": 2, + "fsType": "fsTypeValue", + "readOnly": true, + "wwids": [ + "wwidsValue" + ] + }, + "azureFile": { + "secretName": "secretNameValue", + "shareName": "shareNameValue", + "readOnly": true + }, + "configMap": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "defaultMode": 3, + "optional": true + }, + "vsphereVolume": { + "volumePath": "volumePathValue", + "fsType": "fsTypeValue", + "storagePolicyName": "storagePolicyNameValue", + "storagePolicyID": "storagePolicyIDValue" + }, + "quobyte": { + "registry": "registryValue", + "volume": "volumeValue", + "readOnly": true, + "user": "userValue", + "group": "groupValue", + "tenant": "tenantValue" + }, + "azureDisk": { + "diskName": "diskNameValue", + "diskURI": "diskURIValue", + "cachingMode": "cachingModeValue", + "fsType": "fsTypeValue", + "readOnly": true, + "kind": "kindValue" + }, + "photonPersistentDisk": { + "pdID": "pdIDValue", + "fsType": "fsTypeValue" + }, + "projected": { + "sources": [ + { + "secret": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "optional": true + }, + "downwardAPI": { + "items": [ + { + "path": "pathValue", + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "mode": 4 + } + ] + }, + "configMap": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "optional": true + }, + "serviceAccountToken": { + "audience": "audienceValue", + "expirationSeconds": 2, + "path": "pathValue" + }, + "clusterTrustBundle": { + "name": "nameValue", + "signerName": "signerNameValue", + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "optional": true, + "path": "pathValue" + } + } + ], + "defaultMode": 2 + }, + "portworxVolume": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "scaleIO": { + "gateway": "gatewayValue", + "system": "systemValue", + "secretRef": { + "name": "nameValue" + }, + "sslEnabled": true, + "protectionDomain": "protectionDomainValue", + "storagePool": "storagePoolValue", + "storageMode": "storageModeValue", + "volumeName": "volumeNameValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "storageos": { + "volumeName": "volumeNameValue", + "volumeNamespace": "volumeNamespaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue" + } + }, + "csi": { + "driver": "driverValue", + "readOnly": true, + "fsType": "fsTypeValue", + "volumeAttributes": { + "volumeAttributesKey": "volumeAttributesValue" + }, + "nodePublishSecretRef": { + "name": "nameValue" + } + }, + "ephemeral": { + "volumeClaimTemplate": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "accessModes": [ + "accessModesValue" + ], + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + } + }, + "volumeName": "volumeNameValue", + "storageClassName": "storageClassNameValue", + "volumeMode": "volumeModeValue", + "dataSource": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue" + }, + "dataSourceRef": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue", + "namespace": "namespaceValue" + }, + "volumeAttributesClassName": "volumeAttributesClassNameValue" + } + } + }, + "image": { + "reference": "referenceValue", + "pullPolicy": "pullPolicyValue" + } + } + ], + "initContainers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true + } + ], + "containers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true + } + ], + "ephemeralContainers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true, + "targetContainerName": "targetContainerNameValue" + } + ], + "restartPolicy": "restartPolicyValue", + "terminationGracePeriodSeconds": 4, + "activeDeadlineSeconds": 5, + "dnsPolicy": "dnsPolicyValue", + "nodeSelector": { + "nodeSelectorKey": "nodeSelectorValue" + }, + "serviceAccountName": "serviceAccountNameValue", + "serviceAccount": "serviceAccountValue", + "automountServiceAccountToken": true, + "nodeName": "nodeNameValue", + "hostNetwork": true, + "hostPID": true, + "hostIPC": true, + "shareProcessNamespace": true, + "securityContext": { + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 2, + "runAsGroup": 6, + "runAsNonRoot": true, + "supplementalGroups": [ + 4 + ], + "supplementalGroupsPolicy": "supplementalGroupsPolicyValue", + "fsGroup": 5, + "sysctls": [ + { + "name": "nameValue", + "value": "valueValue" + } + ], + "fsGroupChangePolicy": "fsGroupChangePolicyValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "seLinuxChangePolicy": "seLinuxChangePolicyValue" + }, + "imagePullSecrets": [ + { + "name": "nameValue" + } + ], + "hostname": "hostnameValue", + "subdomain": "subdomainValue", + "affinity": { + "nodeAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "nodeSelectorTerms": [ + { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + ] + }, + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "preference": { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + } + ] + }, + "podAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": [ + { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + ], + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "podAffinityTerm": { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + } + ] + }, + "podAntiAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": [ + { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + ], + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "podAffinityTerm": { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + } + ] + } + }, + "schedulerName": "schedulerNameValue", + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ], + "hostAliases": [ + { + "ip": "ipValue", + "hostnames": [ + "hostnamesValue" + ] + } + ], + "priorityClassName": "priorityClassNameValue", + "priority": 25, + "dnsConfig": { + "nameservers": [ + "nameserversValue" + ], + "searches": [ + "searchesValue" + ], + "options": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "readinessGates": [ + { + "conditionType": "conditionTypeValue" + } + ], + "runtimeClassName": "runtimeClassNameValue", + "enableServiceLinks": true, + "preemptionPolicy": "preemptionPolicyValue", + "overhead": { + "overheadKey": "0" + }, + "topologySpreadConstraints": [ + { + "maxSkew": 1, + "topologyKey": "topologyKeyValue", + "whenUnsatisfiable": "whenUnsatisfiableValue", + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "minDomains": 5, + "nodeAffinityPolicy": "nodeAffinityPolicyValue", + "nodeTaintsPolicy": "nodeTaintsPolicyValue", + "matchLabelKeys": [ + "matchLabelKeysValue" + ] + } + ], + "setHostnameAsFQDN": true, + "os": { + "name": "nameValue" + }, + "hostUsers": true, + "schedulingGates": [ + { + "name": "nameValue" + } + ], + "resourceClaims": [ + { + "name": "nameValue", + "resourceClaimName": "resourceClaimNameValue", + "resourceClaimTemplateName": "resourceClaimTemplateNameValue" + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + } + } + }, + "volumeClaimTemplates": [ + { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "accessModes": [ + "accessModesValue" + ], + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + } + }, + "volumeName": "volumeNameValue", + "storageClassName": "storageClassNameValue", + "volumeMode": "volumeModeValue", + "dataSource": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue" + }, + "dataSourceRef": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue", + "namespace": "namespaceValue" + }, + "volumeAttributesClassName": "volumeAttributesClassNameValue" + }, + "status": { + "phase": "phaseValue", + "accessModes": [ + "accessModesValue" + ], + "capacity": { + "capacityKey": "0" + }, + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "lastProbeTime": "2003-01-01T01:01:01Z", + "lastTransitionTime": "2004-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ], + "allocatedResources": { + "allocatedResourcesKey": "0" + }, + "allocatedResourceStatuses": { + "allocatedResourceStatusesKey": "allocatedResourceStatusesValue" + }, + "currentVolumeAttributesClassName": "currentVolumeAttributesClassNameValue", + "modifyVolumeStatus": { + "targetVolumeAttributesClassName": "targetVolumeAttributesClassNameValue", + "status": "statusValue" + } + } + } + ], + "serviceName": "serviceNameValue", + "podManagementPolicy": "podManagementPolicyValue", + "updateStrategy": { + "type": "typeValue", + "rollingUpdate": { + "partition": 1, + "maxUnavailable": "maxUnavailableValue" + } + }, + "revisionHistoryLimit": 8, + "minReadySeconds": 9, + "persistentVolumeClaimRetentionPolicy": { + "whenDeleted": "whenDeletedValue", + "whenScaled": "whenScaledValue" + }, + "ordinals": { + "start": 1 + } + }, + "status": { + "observedGeneration": 1, + "replicas": 2, + "readyReplicas": 3, + "currentReplicas": 4, + "updatedReplicas": 5, + "currentRevision": "currentRevisionValue", + "updateRevision": "updateRevisionValue", + "collisionCount": 9, + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "lastTransitionTime": "2003-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ], + "availableReplicas": 11 + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/apps.v1beta2.StatefulSet.pb b/testdata/v1.33.0/apps.v1beta2.StatefulSet.pb new file mode 100644 index 0000000000000000000000000000000000000000..66bd9f97dafdd9122aab725d301bc73d0581fcf2 GIT binary patch literal 12163 zcmeHNON<;x8Qz+;@l4IDUEW=<+YfCzPFPKVECZ3OkwEsWP4HryW!4*83ySFNu9+#j zr@PaSU9S-m7$G5FKt4evkYWjBnFEp~F3thrTtcL9$O(ZWAtP~!I2cYq4)AwXKdNWf z&LXdcrOa)ns=Dg0`XBXu_5YWT`D6GXuIR4ozqt0j7g(!}YOf9cPlL@)ix4t$~+>=+_`{(elCS><`V**d% zlB)-Op`ucdD4!5q9#E5o1JN^%(VTh&mt8aUBvS5X#xgxVgR~i3U308(Ku@0(Uk#6F z%;CC6UB_pE<0WR{(KVL(ms&HKM~$?*`59dIso~KeTX(-?RGIM8-v(t7!y>1d98uBLQP^;qdkA>kLN1d{C zpcm09VKxhx4jV`XUO0?v)HYp**@5_s$YON}t{Ilj2I&V1TKPJz4jh=ti9MTOHUO{Y zBCE1QTFG@Bv6V(Cgst--%?h}k$Lt>e*OFyCj#f|Mvgxt(jO6K5dFTvks2DqL8n`O) zZ$9g#7apl@q{&lxr-nC_9f6w3t;Ndz60^i!8}cM`=;~3dn0lc5vOOd%%geFdT|=+p z71^$z!NYNn)OfU8OiW*$#l&#zKxc4Yq>3QbT;x+DFPPb-6s{vMOJPbEE}RoORSG%1 zz}eyTb!Ljr8|c~1c3kuOx|iKd)97{hM&2)Zl%?N9XK-D(Te^#!OR7^om=74uqGK^* zBi)oXk!z37>^5p+*lmybLE@QZF*{fGG}1CHHE_>!LRVN?IiR*~2mH?+bQ)Jp=3h=1 zBbDgya_2PfR~17y`e2r49W%auW#gMg&FmVyi{MIi&8S~#t)wLtza48J-S2|DpGEW@`h5Za zu7GE^r`H)ozVRe27p#0+_64#05U%Q>$*3LUBrxyHV;k#I&?9x9^<=M6cN7~yfJ>Zo z7Ab{4qWQ$^(?cf{!cwD#4A~94qrCI`=t3?ADkwKv`xM?MraTb@9$O6q%7NSDa3eRA zT#Whv-P(BP`?5*8ps0ZR)V& zYCCGQjmbE6%v-wer-s^$S54zb>p5^Um%W^ZQ<4Qhi3hY_+SV{_h}$e28MfEFIR8M; z;F?Ff)Jxr*)ZNgs#Erp?oBX0G`??H6Duy!vvLRTDRsv)tbkL};J08%P-bogtkr$*X zlmY;)Y7}uDBLObuzT*d{7x{v%pCV~A!D|ss;63X15dP?!oNW6hR}bW)VMxlq>z$m=wL9;psVlBH z<<=Ac=Mbps8tqWs{Hkq>GU= z6Y9o(N%EX-4&mWBh%|=+jIk2oa+Y2vfYx`-?wU4)lenmxB65(D3AW8` z4SeC#IK!Ew!9fW>> z(2o#6{TG2uL+oW&__Cy)i$!n{!woml;Vn*@Lwi2MZFETX&AJJ++Q?LK2R-dxb{BmT z?@jntdiI1s6HqPS>=BFMTfK+2XjHdoiy}<3X4<~=aqB3q+kh9AsKwtIqW8MJasywY zy+4jtCk!L9sZ^eYefbVPx>JoNNXJ}6-$Z@ny;;Ejn>EALh(u6qJuJ?)chsyGrn^4J z9`k+OPKct|(Kd{ETTXG<4_()S`vbVO#n+ORacSD8@b(&B*(AVK8LnSL)yUiIBML^eZ9!VEXj zh&Vw4PU2J};*?xpBjS|3>5*aDs7kbPC#dI$I3+o~5pj|zYQ`o$?!@U9LU+*TrJU+e zqF#D|)5^5l1=hr|H7&Lmjg=jE(yM5Tj zsy;>v=P}=I$+Re@ncq}_^Wy@#S&*LsZxzs;T*KYMy!7s^LJ~|=Z2|_6N~*LYx%Tq_ z1uVHN^j_id(|X$bdq!#hQQAK$xyl33r!4KS{QF-b;oA?Ogg7fEZa~3>?#DIL%?i9qM|nZMT;mX))U7Ck7ErSj zJ8N32(fT4jw5c~L@rKeyKIq6pd-?3`=O6_RLx$=N`M3@PojAZ#>;ToTEZh2;&Y(m*<`2hH2vOhg^8$FDNJr$0z zFRyS)apt}j;4=>;MkaVeVufyFgbX>6c(E#ZwPjbNq@RuWRiSOpDT~aHmaXW(sLn1& zktnX`kPE%qRD+$aZ7*KF-;0iQs@2=ihgO$x+k{d~LX5>3&fRh*&5zKB8euGvhTpWE zt+$yOA3-UiEL-et`296at4>n74RVkRa=bpIjKuUo0~(*_TnLp3VPu5d6x>>pF7IFA zd;e{GeZ$w{x8PVEZHDncT+h=ind2hlAD_C8P~kcW6KWSupsED&P0njhuRP+3N;4e4 T2{ztKPL`Qe0E{+Vp5YE9LJM3U~<+p29c6UGD(MO3qo)#xTuIoad5jdzt%J9CFbr5ReS+wU%=T% za1$q?@1PFOzJXpZw1(pLz2Cp@=l8ofU>e#+4J`O2P)_=ola#jNfVD`vGj6-JUK#^E zgKGhdyDwGrUO^VcBRI#20C#-|6mrbrWFGSDS(atEUzGT343fbyp|R>{nu0`1bvANf zsmNs=-v|JA6)ms*cu?!yt)RZ;}<4**8$-_O9zN5iTyFj(Q*$5)lE~hr-rtm+;+Xi+}go XGQ3TM`0VovP|5M|`XMS5Kh{H>9kE_@KA!MT!bE~7KGwSdQ=gS;=z-fc3Rh@yJ0t5t>O##7M^_s z-$3X)h=OO|K$DIAp|@{mzWL^xZ^Mo>U5ZMJz zDBihWMffN{nUOJGl1QPuIYNelBzQJ2d3M&7G3nCU-iKeCKK%@4SK*^Oz zc_?JMR98D2UCWxie7}_(<2XgHKkq3zhpPsZBNAXFPjKp1a;PT)A8f)HPqcI0c2?e+ zb9(^gkg|NSxAgBX+%)SXrmIHw%#JDQL&``*A5w!_=h+OPIwp*aQ0Rhd^EkVIZr@v% z@zWbVXTL?qXs2Qr4P qB#PxfEbj0sBf(XibNvQbc%KN8WmW~ySgU$~Lh$?s-(K5b_{JY?61a~5 literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/authentication.k8s.io.v1.TokenReview.yaml b/testdata/v1.33.0/authentication.k8s.io.v1.TokenReview.yaml new file mode 100644 index 0000000000..0bf9955787 --- /dev/null +++ b/testdata/v1.33.0/authentication.k8s.io.v1.TokenReview.yaml @@ -0,0 +1,51 @@ +apiVersion: authentication.k8s.io/v1 +kind: TokenReview +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + audiences: + - audiencesValue + token: tokenValue +status: + audiences: + - audiencesValue + authenticated: true + error: errorValue + user: + extra: + extraKey: + - extraValue + groups: + - groupsValue + uid: uidValue + username: usernameValue diff --git a/testdata/v1.33.0/authentication.k8s.io.v1beta1.SelfSubjectReview.json b/testdata/v1.33.0/authentication.k8s.io.v1beta1.SelfSubjectReview.json new file mode 100644 index 0000000000..5dc2c9967f --- /dev/null +++ b/testdata/v1.33.0/authentication.k8s.io.v1beta1.SelfSubjectReview.json @@ -0,0 +1,60 @@ +{ + "kind": "SelfSubjectReview", + "apiVersion": "authentication.k8s.io/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "status": { + "userInfo": { + "username": "usernameValue", + "uid": "uidValue", + "groups": [ + "groupsValue" + ], + "extra": { + "extraKey": [ + "extraValue" + ] + } + } + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/authentication.k8s.io.v1beta1.SelfSubjectReview.pb b/testdata/v1.33.0/authentication.k8s.io.v1beta1.SelfSubjectReview.pb new file mode 100644 index 0000000000000000000000000000000000000000..8b12151619dc6006e054fcb96b0f188a4d100b95 GIT binary patch literal 486 zcmZ9IJ5Iwu5Qd$Hgfn?L7DZ%<#$}2?A|Y8+C?z0-2%?}{CzG(Tv$pmT2#5=C3n~hZ zzzvXc2Sh>54PdiY9-{kqX7-lMz-Jyxj7;&G#0uTU7#VUR@qAVCYRj%j$sil?t3unHQ5KmWEnCr{ zQQcjRB2iq=As2eTsRlbe+g`kUzZV_rM60)-53MfXrU|8(gcyrcoV(>rnjfJLHNsdT z%@L;UY`x9Q@-}`Ul>l?lnzXiwYYBP+7;%c5|$s83S|M=8%gbLS5m{5Cg3{@qNZ*pF9dgU=s YRGQ)VO|bD^aS5Kh{H>9kE_@KAzYax7A9K?t6tM->q%9z3~er*%!b8+Maw6<@%&@a!Y_ z214IK6g>L|nr!S3y?s0L%{SkC8+cNKUDzQ>e1j~eeG*g7T7f59l<2OwisOAwxl8Je!vsGwaHT^mB?^lNb(9DGSs@(@5w*q0W{- z$rF+CP{?$%s(Kq;!o&l^`&f`HvnqhXO4R`rg6B85=Gq3$)&2lQ)VgK> literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/authentication.k8s.io.v1beta1.TokenReview.yaml b/testdata/v1.33.0/authentication.k8s.io.v1beta1.TokenReview.yaml new file mode 100644 index 0000000000..0f7c240d44 --- /dev/null +++ b/testdata/v1.33.0/authentication.k8s.io.v1beta1.TokenReview.yaml @@ -0,0 +1,51 @@ +apiVersion: authentication.k8s.io/v1beta1 +kind: TokenReview +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + audiences: + - audiencesValue + token: tokenValue +status: + audiences: + - audiencesValue + authenticated: true + error: errorValue + user: + extra: + extraKey: + - extraValue + groups: + - groupsValue + uid: uidValue + username: usernameValue diff --git a/testdata/v1.33.0/authorization.k8s.io.v1.LocalSubjectAccessReview.json b/testdata/v1.33.0/authorization.k8s.io.v1.LocalSubjectAccessReview.json new file mode 100644 index 0000000000..9d6b138a15 --- /dev/null +++ b/testdata/v1.33.0/authorization.k8s.io.v1.LocalSubjectAccessReview.json @@ -0,0 +1,101 @@ +{ + "kind": "LocalSubjectAccessReview", + "apiVersion": "authorization.k8s.io/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "resourceAttributes": { + "namespace": "namespaceValue", + "verb": "verbValue", + "group": "groupValue", + "version": "versionValue", + "resource": "resourceValue", + "subresource": "subresourceValue", + "name": "nameValue", + "fieldSelector": { + "rawSelector": "rawSelectorValue", + "requirements": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "labelSelector": { + "rawSelector": "rawSelectorValue", + "requirements": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + }, + "nonResourceAttributes": { + "path": "pathValue", + "verb": "verbValue" + }, + "user": "userValue", + "groups": [ + "groupsValue" + ], + "extra": { + "extraKey": [ + "extraValue" + ] + }, + "uid": "uidValue" + }, + "status": { + "allowed": true, + "denied": true, + "reason": "reasonValue", + "evaluationError": "evaluationErrorValue" + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/authorization.k8s.io.v1.LocalSubjectAccessReview.pb b/testdata/v1.33.0/authorization.k8s.io.v1.LocalSubjectAccessReview.pb new file mode 100644 index 0000000000000000000000000000000000000000..fe26fea6f5c48df177c4ba5c2dcbfeac433b7a49 GIT binary patch literal 767 zcmbtSyKdA#6t$Ni?7NQ`D+()D$OTAS1hNQewH+(bgeZy#qM*BWZZ;D;GuDi~VT1Sq z{(_o@o+3R`K7bBUq|P5C;~8hOgp%&eeV%jfWFzIk3wVT8c_<`1#gYlWk&V;_6VGOw zVSihsnD14|5vAp;G$p0p(u~nbcy=Ftx4`FkOz$zTD1102P7+Jnxd}zRI;#pyZAsi! zlpky}o|%q;SFwGAhHH|PsHCnVsWbx<9X*(M-uc&yA1i^grO~&`pBnALhd%f@CX}l; zG!NSrnvNuf9&#>9Bg3SFrMIa$dI^5UxLq9G@{bp62CG=GWg^erkt;)eG=Z=uidz2-{pjwPSZnxmeswQ!hI$y~`|91iu+EHEp!MnVBv4hdaKf1S zy#>EqxZ`8!&qyX_X#`U#s>0y7qr(gL2Hn3V4gZ-vzSTY%Lm=^Fk8*uw(a3oMUPf~( zt!t$W+veUDgT~3tw{Z3m zd;=36z|A-~JGkrRmOpWHJN8%)ee}IzC}lwgUW;E0gE*OL5+!c$Y6g#-SrRhTFBQG2Xemci z9{_XYQ44jL9|aQIX;Ge~SIqokD*xfG&b`;F$YA(dJhgabe`04FX)X+7Ynj;Eq-CWB uV{vf~^?&S|8%Pgu*o}`YxZ2TFGsOV&$**ALVSG}Cd&Jm8$Chd-w(cQI<23#n+&2C!*MnAy6@a!k} z2PXW3@!;8uXI*vyk=wl4nK$pf9n^(^s%RG{@h#(IjAO!RWl$Ft!uHatv(tjG+e(5y zv|~RBLHLjoxO2WU=zR_4DIUT#4ij*;dq9EX7|!P{*P6bH2)Ff!wzf4*jI<5X5JUvILyKsP0n4{-pYID?V1p-Z(9c*w$( zvRIi=&-M~lGyMaU9}ub!yMOw|aMv`g3Uj9-v& B#gPC2 literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/authorization.k8s.io.v1.SelfSubjectRulesReview.yaml b/testdata/v1.33.0/authorization.k8s.io.v1.SelfSubjectRulesReview.yaml new file mode 100644 index 0000000000..835154ef29 --- /dev/null +++ b/testdata/v1.33.0/authorization.k8s.io.v1.SelfSubjectRulesReview.yaml @@ -0,0 +1,53 @@ +apiVersion: authorization.k8s.io/v1 +kind: SelfSubjectRulesReview +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + namespace: namespaceValue +status: + evaluationError: evaluationErrorValue + incomplete: true + nonResourceRules: + - nonResourceURLs: + - nonResourceURLsValue + verbs: + - verbsValue + resourceRules: + - apiGroups: + - apiGroupsValue + resourceNames: + - resourceNamesValue + resources: + - resourcesValue + verbs: + - verbsValue diff --git a/testdata/v1.33.0/authorization.k8s.io.v1.SubjectAccessReview.json b/testdata/v1.33.0/authorization.k8s.io.v1.SubjectAccessReview.json new file mode 100644 index 0000000000..ee23994da7 --- /dev/null +++ b/testdata/v1.33.0/authorization.k8s.io.v1.SubjectAccessReview.json @@ -0,0 +1,101 @@ +{ + "kind": "SubjectAccessReview", + "apiVersion": "authorization.k8s.io/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "resourceAttributes": { + "namespace": "namespaceValue", + "verb": "verbValue", + "group": "groupValue", + "version": "versionValue", + "resource": "resourceValue", + "subresource": "subresourceValue", + "name": "nameValue", + "fieldSelector": { + "rawSelector": "rawSelectorValue", + "requirements": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "labelSelector": { + "rawSelector": "rawSelectorValue", + "requirements": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + }, + "nonResourceAttributes": { + "path": "pathValue", + "verb": "verbValue" + }, + "user": "userValue", + "groups": [ + "groupsValue" + ], + "extra": { + "extraKey": [ + "extraValue" + ] + }, + "uid": "uidValue" + }, + "status": { + "allowed": true, + "denied": true, + "reason": "reasonValue", + "evaluationError": "evaluationErrorValue" + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/authorization.k8s.io.v1.SubjectAccessReview.pb b/testdata/v1.33.0/authorization.k8s.io.v1.SubjectAccessReview.pb new file mode 100644 index 0000000000000000000000000000000000000000..00e714385aca58733dc9732cae433bcd6609c983 GIT binary patch literal 762 zcmbtSJx|*}7`6jd?KfY>Ac{Oy9$G0w+D1Z(vJr^|s;UCS(CwVONiKHI)}0*)h(Ex; zU}j-w=w68*z*aGI?msB!JCmg8*zLLZ^Ld{4!nQD=32#W2j$%$PNJ?YY4BMhf;}6qM z?&fh8jIo#Q^?E485l$(dx!+&G&l1>-Oz@OM8M+%oWXMU1UtU69EzgRC^mK_|6&MXZ zQx>X@hLzF2Lai;1BF?z1LoVcU6>Y!nTGqqOulse!IFRV}_YaA_!nYl;BNAXF4sqs| zHB=pe4>iJAoGJw>?JT`j&3G5=kTSj4Tk!YiY#Mcv&}AYY&9=$w1IkE5FC;-V=h_UQ zG9io%k*k1Pi<4ac3w>{Oj4w4jJ^Wd7jFudRQD2piS!nNez~SWV7$bS*xRCP>tPp2fT2)Ic zQeJtQlhZyN{70|54R%7(kzTT-%FaaLs$W(D^{&PaSa_atk{`YTps;Fg&9CRZw@kOp Yk%;0Od0Uv%RfpNP|x-<8A&bgCD%7O@vOWQlgZ)j-=8wOf*^9w-iz=6D<2l<|6TaK}HKvl*;n&K8Mm+L0|+4;jad zooj+-&R08z&IxjykTe0mC-O@FE&bsBm{4o@b@O-0vxa&YWe4iREU%pzEko<`m$9eH zcDhohr8GE;~{-5}wyZq8-Kyf zC-4VId;l9_U}j(k*J(?Ek?rI@&OPTifhRPyg_dy=pEFJ_aZDI32c9Ssww_jeh;hYU zY(RL{Nc;{oggAnfz=eG?jb0{@NpTlWaF~ES*9Hn4$8az#ImLcgM7WuaxCJ4} z_6ZHtM#)G>OQGsK2f-39=YR{TLRGz)x?w!sy**4>+O9_N}Y zWl(MSE-GS5S*)z6wl(&xW;&b53<%8*JKy@x!>4c*iE>=~grB$ra4;$)Wpf0Tp@^+QL` zI{KBPZKl9|b<{y^&XP!BH!sVh^h$*vOw~W!wQukB8nQUPkWVdNnGNi$A|rraX04D} z8?>BU+83AQu=|f)djXjdj?c3rW3JW=-Oh2qV(=?C^Uy!3!rkF~pkqaMG*|lq_>A~6 literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/authorization.k8s.io.v1beta1.SelfSubjectAccessReview.yaml b/testdata/v1.33.0/authorization.k8s.io.v1beta1.SelfSubjectAccessReview.yaml new file mode 100644 index 0000000000..1a548c4a76 --- /dev/null +++ b/testdata/v1.33.0/authorization.k8s.io.v1beta1.SelfSubjectAccessReview.yaml @@ -0,0 +1,65 @@ +apiVersion: authorization.k8s.io/v1beta1 +kind: SelfSubjectAccessReview +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + nonResourceAttributes: + path: pathValue + verb: verbValue + resourceAttributes: + fieldSelector: + rawSelector: rawSelectorValue + requirements: + - key: keyValue + operator: operatorValue + values: + - valuesValue + group: groupValue + labelSelector: + rawSelector: rawSelectorValue + requirements: + - key: keyValue + operator: operatorValue + values: + - valuesValue + name: nameValue + namespace: namespaceValue + resource: resourceValue + subresource: subresourceValue + verb: verbValue + version: versionValue +status: + allowed: true + denied: true + evaluationError: evaluationErrorValue + reason: reasonValue diff --git a/testdata/v1.33.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.json b/testdata/v1.33.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.json new file mode 100644 index 0000000000..0b6e883761 --- /dev/null +++ b/testdata/v1.33.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.json @@ -0,0 +1,79 @@ +{ + "kind": "SelfSubjectRulesReview", + "apiVersion": "authorization.k8s.io/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "namespace": "namespaceValue" + }, + "status": { + "resourceRules": [ + { + "verbs": [ + "verbsValue" + ], + "apiGroups": [ + "apiGroupsValue" + ], + "resources": [ + "resourcesValue" + ], + "resourceNames": [ + "resourceNamesValue" + ] + } + ], + "nonResourceRules": [ + { + "verbs": [ + "verbsValue" + ], + "nonResourceURLs": [ + "nonResourceURLsValue" + ] + } + ], + "incomplete": true, + "evaluationError": "evaluationErrorValue" + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.pb b/testdata/v1.33.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.pb new file mode 100644 index 0000000000000000000000000000000000000000..b3c29b4d204cd2027b01aa5d4d6a4fd96bedeb4b GIT binary patch literal 568 zcmZ9J&rZTX5XQ@&L|C=dh8WU#>X8EqiH3MGB*sLEF`yp2ZDGKLvfJ#oHDL4sd<)M$ zf^T5LI~Wh1y?EATmm+eTnVtFi`@RnA!axUT2S?#8<79$E!f0h!7Zt*Gs|avMueh5+YBdQR zs*7?iB3)J0iW~%sxZDFSB!rsQ*BZIp^!f8OYZ<4qdii>j)djjKp}dbh@WmO7?R8zM z3(rL+rj&)siF&q{dbKmyNBJS4`oqp2zq_C*7jQt9LH1Jh6fg7$#XgxxK&A7P^3cWz zQ``rx2DZt9ng0aeS(S06hmYw`#xiPB4E(OR90xj?!z@bQKQt^6d5a`es1{nu(0N2h z2*toXjbWP-_Jp%2(7j_O0=jqYq@Vqk`HlNep-35R&GWx%HT6y@PQxk*Dthwjw}_*Vg& zx}<3DH{+r1Xj&QD)u=TqNXD5^btI%>prh@NUCX*TzxzAw7^@0h++QoS0XuVGM;K5f z*J$Kc3#dB+9~#JcoN5_5?M%FN&A|__L&l56-ZOuH%%(Ym37aIcWVTH)v&T3_>{t=h zbI!~FY6IlhC!qswBTjPtPxQUlV|=CI|INdcW3<#TigxApC@GxjOhe`5wCl($7(1a& zy{y2k39o!~?IDRkFZG}=;w;hFuc`3Zy=MKzq}H3+ooDUc4mbi2w|btMBM_zkr=!x?e1rP-SPbbk&~_*qj54j#7d7-D?0E>)zJ*c-}Y5 abgP0;mcPiGrJSw4%P%2H3G=3B_{Jkv)Cx!d literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/authorization.k8s.io.v1beta1.SubjectAccessReview.yaml b/testdata/v1.33.0/authorization.k8s.io.v1beta1.SubjectAccessReview.yaml new file mode 100644 index 0000000000..5d3647e498 --- /dev/null +++ b/testdata/v1.33.0/authorization.k8s.io.v1beta1.SubjectAccessReview.yaml @@ -0,0 +1,72 @@ +apiVersion: authorization.k8s.io/v1beta1 +kind: SubjectAccessReview +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + extra: + extraKey: + - extraValue + group: + - groupValue + nonResourceAttributes: + path: pathValue + verb: verbValue + resourceAttributes: + fieldSelector: + rawSelector: rawSelectorValue + requirements: + - key: keyValue + operator: operatorValue + values: + - valuesValue + group: groupValue + labelSelector: + rawSelector: rawSelectorValue + requirements: + - key: keyValue + operator: operatorValue + values: + - valuesValue + name: nameValue + namespace: namespaceValue + resource: resourceValue + subresource: subresourceValue + verb: verbValue + version: versionValue + uid: uidValue + user: userValue +status: + allowed: true + denied: true + evaluationError: evaluationErrorValue + reason: reasonValue diff --git a/testdata/v1.33.0/autoscaling.v1.HorizontalPodAutoscaler.json b/testdata/v1.33.0/autoscaling.v1.HorizontalPodAutoscaler.json new file mode 100644 index 0000000000..c4af108f9d --- /dev/null +++ b/testdata/v1.33.0/autoscaling.v1.HorizontalPodAutoscaler.json @@ -0,0 +1,63 @@ +{ + "kind": "HorizontalPodAutoscaler", + "apiVersion": "autoscaling/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "scaleTargetRef": { + "kind": "kindValue", + "name": "nameValue", + "apiVersion": "apiVersionValue" + }, + "minReplicas": 2, + "maxReplicas": 3, + "targetCPUUtilizationPercentage": 4 + }, + "status": { + "observedGeneration": 1, + "lastScaleTime": "2002-01-01T01:01:01Z", + "currentReplicas": 3, + "desiredReplicas": 4, + "currentCPUUtilizationPercentage": 5 + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/autoscaling.v1.HorizontalPodAutoscaler.pb b/testdata/v1.33.0/autoscaling.v1.HorizontalPodAutoscaler.pb new file mode 100644 index 0000000000000000000000000000000000000000..89d9b6eeb91005ea98ef11312e191db6e18ffac4 GIT binary patch literal 478 zcmd0{C}!Z&0hlvtAL2NROw1IZQ_Bql?YDDf7j=A`*#=4FF*XmONgrhr*S zB1Ngi`K3ibb*V+gnfZBOQ44k_4vw=6pY3K5VDJL6R)07JWCd_VNpNxIBqpWi6nm#u z3UNc2U>!+HK=YmK zi}=$r^MIjJ1#}?ToG!*BE}q=Pyu|d>BCvoEUw#3||1jrEp&O$F^uwdG|Ct3CjDUuv z=A;ydR2D!&#)^fDsk+ulptv*%9unX{)#p-2a;^}oP82CEc<5(5Cm5TRlK literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/autoscaling.v1.HorizontalPodAutoscaler.yaml b/testdata/v1.33.0/autoscaling.v1.HorizontalPodAutoscaler.yaml new file mode 100644 index 0000000000..4d76ce4acc --- /dev/null +++ b/testdata/v1.33.0/autoscaling.v1.HorizontalPodAutoscaler.yaml @@ -0,0 +1,48 @@ +apiVersion: autoscaling/v1 +kind: HorizontalPodAutoscaler +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + maxReplicas: 3 + minReplicas: 2 + scaleTargetRef: + apiVersion: apiVersionValue + kind: kindValue + name: nameValue + targetCPUUtilizationPercentage: 4 +status: + currentCPUUtilizationPercentage: 5 + currentReplicas: 3 + desiredReplicas: 4 + lastScaleTime: "2002-01-01T01:01:01Z" + observedGeneration: 1 diff --git a/testdata/v1.33.0/autoscaling.v1.Scale.json b/testdata/v1.33.0/autoscaling.v1.Scale.json new file mode 100644 index 0000000000..f5f9a463d2 --- /dev/null +++ b/testdata/v1.33.0/autoscaling.v1.Scale.json @@ -0,0 +1,53 @@ +{ + "kind": "Scale", + "apiVersion": "autoscaling/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "replicas": 1 + }, + "status": { + "replicas": 1, + "selector": "selectorValue" + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/autoscaling.v1.Scale.pb b/testdata/v1.33.0/autoscaling.v1.Scale.pb new file mode 100644 index 0000000000000000000000000000000000000000..9bcf37e96979696b29fd502ca0849e1ece3a8fc1 GIT binary patch literal 414 zcmZ8d!AiqG5KUsmWYsiX1SQ8Ddr=EQ@z|q^2#N=9lXM!^YGxO%nn^z3ALv~3BbtQEMoQZt@?vSou8jSSYBkvvw1WfT7c#X7| zqd)}}o-bN)*i3Z^SxZT_HS)w|`}60|*G}Y| z81(Y>X3zz>*&_jm6uCad8QpB5-AEJTRtQ-^Wkl>aTB$AP_J{-p6Yb&n&wsLX)9*sb zR*f9ELsxYtOqdMrjX|sP#Q6n%AB~X! literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/autoscaling.v1.Scale.yaml b/testdata/v1.33.0/autoscaling.v1.Scale.yaml new file mode 100644 index 0000000000..098815e83e --- /dev/null +++ b/testdata/v1.33.0/autoscaling.v1.Scale.yaml @@ -0,0 +1,39 @@ +apiVersion: autoscaling/v1 +kind: Scale +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + replicas: 1 +status: + replicas: 1 + selector: selectorValue diff --git a/testdata/v1.33.0/autoscaling.v2.HorizontalPodAutoscaler.json b/testdata/v1.33.0/autoscaling.v2.HorizontalPodAutoscaler.json new file mode 100644 index 0000000000..4bc9fceaf7 --- /dev/null +++ b/testdata/v1.33.0/autoscaling.v2.HorizontalPodAutoscaler.json @@ -0,0 +1,299 @@ +{ + "kind": "HorizontalPodAutoscaler", + "apiVersion": "autoscaling/v2", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "scaleTargetRef": { + "kind": "kindValue", + "name": "nameValue", + "apiVersion": "apiVersionValue" + }, + "minReplicas": 2, + "maxReplicas": 3, + "metrics": [ + { + "type": "typeValue", + "object": { + "describedObject": { + "kind": "kindValue", + "name": "nameValue", + "apiVersion": "apiVersionValue" + }, + "target": { + "type": "typeValue", + "value": "0", + "averageValue": "0", + "averageUtilization": 4 + }, + "metric": { + "name": "nameValue", + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + } + }, + "pods": { + "metric": { + "name": "nameValue", + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + }, + "target": { + "type": "typeValue", + "value": "0", + "averageValue": "0", + "averageUtilization": 4 + } + }, + "resource": { + "name": "nameValue", + "target": { + "type": "typeValue", + "value": "0", + "averageValue": "0", + "averageUtilization": 4 + } + }, + "containerResource": { + "name": "nameValue", + "target": { + "type": "typeValue", + "value": "0", + "averageValue": "0", + "averageUtilization": 4 + }, + "container": "containerValue" + }, + "external": { + "metric": { + "name": "nameValue", + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + }, + "target": { + "type": "typeValue", + "value": "0", + "averageValue": "0", + "averageUtilization": 4 + } + } + } + ], + "behavior": { + "scaleUp": { + "stabilizationWindowSeconds": 3, + "selectPolicy": "selectPolicyValue", + "policies": [ + { + "type": "typeValue", + "value": 2, + "periodSeconds": 3 + } + ], + "tolerance": "0" + }, + "scaleDown": { + "stabilizationWindowSeconds": 3, + "selectPolicy": "selectPolicyValue", + "policies": [ + { + "type": "typeValue", + "value": 2, + "periodSeconds": 3 + } + ], + "tolerance": "0" + } + } + }, + "status": { + "observedGeneration": 1, + "lastScaleTime": "2002-01-01T01:01:01Z", + "currentReplicas": 3, + "desiredReplicas": 4, + "currentMetrics": [ + { + "type": "typeValue", + "object": { + "metric": { + "name": "nameValue", + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + }, + "current": { + "value": "0", + "averageValue": "0", + "averageUtilization": 3 + }, + "describedObject": { + "kind": "kindValue", + "name": "nameValue", + "apiVersion": "apiVersionValue" + } + }, + "pods": { + "metric": { + "name": "nameValue", + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + }, + "current": { + "value": "0", + "averageValue": "0", + "averageUtilization": 3 + } + }, + "resource": { + "name": "nameValue", + "current": { + "value": "0", + "averageValue": "0", + "averageUtilization": 3 + } + }, + "containerResource": { + "name": "nameValue", + "current": { + "value": "0", + "averageValue": "0", + "averageUtilization": 3 + }, + "container": "containerValue" + }, + "external": { + "metric": { + "name": "nameValue", + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + }, + "current": { + "value": "0", + "averageValue": "0", + "averageUtilization": 3 + } + } + } + ], + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "lastTransitionTime": "2003-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/autoscaling.v2.HorizontalPodAutoscaler.pb b/testdata/v1.33.0/autoscaling.v2.HorizontalPodAutoscaler.pb new file mode 100644 index 0000000000000000000000000000000000000000..0d57f89ae3c6564f0c16a2cbaadbf3f25542218d GIT binary patch literal 1580 zcmc&!F^dyH6yD7)xS7o*dxLOss$&u5*1{twgn)%ti3Uj_g4azpb8*aOChY7U1)QeX&p>gRF zt|^x6b-5Vnh{((NKwGWLDN`~}!H=biOQCPumv%hw@ZFCOZeZO9>;2IeuzF~>iK+?h zvqU{$Q|yP;aamNi8+h>v-oMfZm8KK^bWk;$XT@*rm80>78R#H;n-s^UOP-ib?joRgOtbiD zchP~s_%4~ahP)A*miAi7iY!SY{(ezcNg>J5`6XXkPo8j^&U!N8@r?S0(b7U4ppT-b_+OmKE7!9zDEG~$Z=l?!v*|`3Pl@cc zeV$#cAq}}WnhsfY76`vEOyL!?WvAdq7l)#=wG_o!wY2USvcSHAWtq?B5!(Fw^AWT; W^ixLFY!62@SmFxyoE96gLhBEqwdunE literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/autoscaling.v2.HorizontalPodAutoscaler.yaml b/testdata/v1.33.0/autoscaling.v2.HorizontalPodAutoscaler.yaml new file mode 100644 index 0000000000..463936eeba --- /dev/null +++ b/testdata/v1.33.0/autoscaling.v2.HorizontalPodAutoscaler.yaml @@ -0,0 +1,202 @@ +apiVersion: autoscaling/v2 +kind: HorizontalPodAutoscaler +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + behavior: + scaleDown: + policies: + - periodSeconds: 3 + type: typeValue + value: 2 + selectPolicy: selectPolicyValue + stabilizationWindowSeconds: 3 + tolerance: "0" + scaleUp: + policies: + - periodSeconds: 3 + type: typeValue + value: 2 + selectPolicy: selectPolicyValue + stabilizationWindowSeconds: 3 + tolerance: "0" + maxReplicas: 3 + metrics: + - containerResource: + container: containerValue + name: nameValue + target: + averageUtilization: 4 + averageValue: "0" + type: typeValue + value: "0" + external: + metric: + name: nameValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + target: + averageUtilization: 4 + averageValue: "0" + type: typeValue + value: "0" + object: + describedObject: + apiVersion: apiVersionValue + kind: kindValue + name: nameValue + metric: + name: nameValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + target: + averageUtilization: 4 + averageValue: "0" + type: typeValue + value: "0" + pods: + metric: + name: nameValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + target: + averageUtilization: 4 + averageValue: "0" + type: typeValue + value: "0" + resource: + name: nameValue + target: + averageUtilization: 4 + averageValue: "0" + type: typeValue + value: "0" + type: typeValue + minReplicas: 2 + scaleTargetRef: + apiVersion: apiVersionValue + kind: kindValue + name: nameValue +status: + conditions: + - lastTransitionTime: "2003-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue + currentMetrics: + - containerResource: + container: containerValue + current: + averageUtilization: 3 + averageValue: "0" + value: "0" + name: nameValue + external: + current: + averageUtilization: 3 + averageValue: "0" + value: "0" + metric: + name: nameValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + object: + current: + averageUtilization: 3 + averageValue: "0" + value: "0" + describedObject: + apiVersion: apiVersionValue + kind: kindValue + name: nameValue + metric: + name: nameValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + pods: + current: + averageUtilization: 3 + averageValue: "0" + value: "0" + metric: + name: nameValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + resource: + current: + averageUtilization: 3 + averageValue: "0" + value: "0" + name: nameValue + type: typeValue + currentReplicas: 3 + desiredReplicas: 4 + lastScaleTime: "2002-01-01T01:01:01Z" + observedGeneration: 1 diff --git a/testdata/v1.33.0/autoscaling.v2beta1.HorizontalPodAutoscaler.json b/testdata/v1.33.0/autoscaling.v2beta1.HorizontalPodAutoscaler.json new file mode 100644 index 0000000000..ff45a9511f --- /dev/null +++ b/testdata/v1.33.0/autoscaling.v2beta1.HorizontalPodAutoscaler.json @@ -0,0 +1,224 @@ +{ + "kind": "HorizontalPodAutoscaler", + "apiVersion": "autoscaling/v2beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "scaleTargetRef": { + "kind": "kindValue", + "name": "nameValue", + "apiVersion": "apiVersionValue" + }, + "minReplicas": 2, + "maxReplicas": 3, + "metrics": [ + { + "type": "typeValue", + "object": { + "target": { + "kind": "kindValue", + "name": "nameValue", + "apiVersion": "apiVersionValue" + }, + "metricName": "metricNameValue", + "targetValue": "0", + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "averageValue": "0" + }, + "pods": { + "metricName": "metricNameValue", + "targetAverageValue": "0", + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + }, + "resource": { + "name": "nameValue", + "targetAverageUtilization": 2, + "targetAverageValue": "0" + }, + "containerResource": { + "name": "nameValue", + "targetAverageUtilization": 2, + "targetAverageValue": "0", + "container": "containerValue" + }, + "external": { + "metricName": "metricNameValue", + "metricSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "targetValue": "0", + "targetAverageValue": "0" + } + } + ] + }, + "status": { + "observedGeneration": 1, + "lastScaleTime": "2002-01-01T01:01:01Z", + "currentReplicas": 3, + "desiredReplicas": 4, + "currentMetrics": [ + { + "type": "typeValue", + "object": { + "target": { + "kind": "kindValue", + "name": "nameValue", + "apiVersion": "apiVersionValue" + }, + "metricName": "metricNameValue", + "currentValue": "0", + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "averageValue": "0" + }, + "pods": { + "metricName": "metricNameValue", + "currentAverageValue": "0", + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + }, + "resource": { + "name": "nameValue", + "currentAverageUtilization": 2, + "currentAverageValue": "0" + }, + "containerResource": { + "name": "nameValue", + "currentAverageUtilization": 2, + "currentAverageValue": "0", + "container": "containerValue" + }, + "external": { + "metricName": "metricNameValue", + "metricSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "currentValue": "0", + "currentAverageValue": "0" + } + } + ], + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "lastTransitionTime": "2003-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/autoscaling.v2beta1.HorizontalPodAutoscaler.pb b/testdata/v1.33.0/autoscaling.v2beta1.HorizontalPodAutoscaler.pb new file mode 100644 index 0000000000000000000000000000000000000000..e32a35d98ae1a69ae6953404aa6def467499db66 GIT binary patch literal 1400 zcmeHHF>ezw6u!$v;_}iahe2v|Q{|yZH$aJm6jfrN6M_hJKpndIE^aWn*pcn4lp_8B zBjOJ*qW*-6jR7I`2Xt#0n7emqeRh+anuVbY65I3h^ZUN{z2`UTDGwgQ15#+AGLkbs zd~(oDsU}a++DjqXq2QY2J7VzSCW1=z9pJ164Nk^%m*fRS_lJ~INi=;kbH%OlR!vCe zLh!1h`F@}Ak$sVb1shna`%qFP3Tfh~R7`N|?cLiB!;`Onj_Z;4%2-Dizl^m5dmU)x zB&E4}O{b{oO#33m&?1}*O|(g3ucOM@#=L(9jS=GxI9~9_b2dqvOjwo3rr+~rd!KP5 z&7mP^^L+ACSQ!&ehE!SyYKci%|BQZoI}J89{64t~BCl(b(R`rZPA5*8tvb{`eB6#y zk*P*cA+xs!gb%n-ZjvW$VmVI literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/autoscaling.v2beta1.HorizontalPodAutoscaler.yaml b/testdata/v1.33.0/autoscaling.v2beta1.HorizontalPodAutoscaler.yaml new file mode 100644 index 0000000000..deeb7cd122 --- /dev/null +++ b/testdata/v1.33.0/autoscaling.v2beta1.HorizontalPodAutoscaler.yaml @@ -0,0 +1,152 @@ +apiVersion: autoscaling/v2beta1 +kind: HorizontalPodAutoscaler +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + maxReplicas: 3 + metrics: + - containerResource: + container: containerValue + name: nameValue + targetAverageUtilization: 2 + targetAverageValue: "0" + external: + metricName: metricNameValue + metricSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + targetAverageValue: "0" + targetValue: "0" + object: + averageValue: "0" + metricName: metricNameValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + target: + apiVersion: apiVersionValue + kind: kindValue + name: nameValue + targetValue: "0" + pods: + metricName: metricNameValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + targetAverageValue: "0" + resource: + name: nameValue + targetAverageUtilization: 2 + targetAverageValue: "0" + type: typeValue + minReplicas: 2 + scaleTargetRef: + apiVersion: apiVersionValue + kind: kindValue + name: nameValue +status: + conditions: + - lastTransitionTime: "2003-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue + currentMetrics: + - containerResource: + container: containerValue + currentAverageUtilization: 2 + currentAverageValue: "0" + name: nameValue + external: + currentAverageValue: "0" + currentValue: "0" + metricName: metricNameValue + metricSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + object: + averageValue: "0" + currentValue: "0" + metricName: metricNameValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + target: + apiVersion: apiVersionValue + kind: kindValue + name: nameValue + pods: + currentAverageValue: "0" + metricName: metricNameValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + resource: + currentAverageUtilization: 2 + currentAverageValue: "0" + name: nameValue + type: typeValue + currentReplicas: 3 + desiredReplicas: 4 + lastScaleTime: "2002-01-01T01:01:01Z" + observedGeneration: 1 diff --git a/testdata/v1.33.0/autoscaling.v2beta2.HorizontalPodAutoscaler.json b/testdata/v1.33.0/autoscaling.v2beta2.HorizontalPodAutoscaler.json new file mode 100644 index 0000000000..3543686cd4 --- /dev/null +++ b/testdata/v1.33.0/autoscaling.v2beta2.HorizontalPodAutoscaler.json @@ -0,0 +1,297 @@ +{ + "kind": "HorizontalPodAutoscaler", + "apiVersion": "autoscaling/v2beta2", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "scaleTargetRef": { + "kind": "kindValue", + "name": "nameValue", + "apiVersion": "apiVersionValue" + }, + "minReplicas": 2, + "maxReplicas": 3, + "metrics": [ + { + "type": "typeValue", + "object": { + "describedObject": { + "kind": "kindValue", + "name": "nameValue", + "apiVersion": "apiVersionValue" + }, + "target": { + "type": "typeValue", + "value": "0", + "averageValue": "0", + "averageUtilization": 4 + }, + "metric": { + "name": "nameValue", + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + } + }, + "pods": { + "metric": { + "name": "nameValue", + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + }, + "target": { + "type": "typeValue", + "value": "0", + "averageValue": "0", + "averageUtilization": 4 + } + }, + "resource": { + "name": "nameValue", + "target": { + "type": "typeValue", + "value": "0", + "averageValue": "0", + "averageUtilization": 4 + } + }, + "containerResource": { + "name": "nameValue", + "target": { + "type": "typeValue", + "value": "0", + "averageValue": "0", + "averageUtilization": 4 + }, + "container": "containerValue" + }, + "external": { + "metric": { + "name": "nameValue", + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + }, + "target": { + "type": "typeValue", + "value": "0", + "averageValue": "0", + "averageUtilization": 4 + } + } + } + ], + "behavior": { + "scaleUp": { + "stabilizationWindowSeconds": 3, + "selectPolicy": "selectPolicyValue", + "policies": [ + { + "type": "typeValue", + "value": 2, + "periodSeconds": 3 + } + ] + }, + "scaleDown": { + "stabilizationWindowSeconds": 3, + "selectPolicy": "selectPolicyValue", + "policies": [ + { + "type": "typeValue", + "value": 2, + "periodSeconds": 3 + } + ] + } + } + }, + "status": { + "observedGeneration": 1, + "lastScaleTime": "2002-01-01T01:01:01Z", + "currentReplicas": 3, + "desiredReplicas": 4, + "currentMetrics": [ + { + "type": "typeValue", + "object": { + "metric": { + "name": "nameValue", + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + }, + "current": { + "value": "0", + "averageValue": "0", + "averageUtilization": 3 + }, + "describedObject": { + "kind": "kindValue", + "name": "nameValue", + "apiVersion": "apiVersionValue" + } + }, + "pods": { + "metric": { + "name": "nameValue", + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + }, + "current": { + "value": "0", + "averageValue": "0", + "averageUtilization": 3 + } + }, + "resource": { + "name": "nameValue", + "current": { + "value": "0", + "averageValue": "0", + "averageUtilization": 3 + } + }, + "containerResource": { + "name": "nameValue", + "current": { + "value": "0", + "averageValue": "0", + "averageUtilization": 3 + }, + "container": "containerValue" + }, + "external": { + "metric": { + "name": "nameValue", + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + }, + "current": { + "value": "0", + "averageValue": "0", + "averageUtilization": 3 + } + } + } + ], + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "lastTransitionTime": "2003-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/autoscaling.v2beta2.HorizontalPodAutoscaler.pb b/testdata/v1.33.0/autoscaling.v2beta2.HorizontalPodAutoscaler.pb new file mode 100644 index 0000000000000000000000000000000000000000..5ffa5cb2a526ebfedc28e8cd2e87ebedd9907a8b GIT binary patch literal 1575 zcmc&!F>ljA6t-haBcaFXMH}nJ@X(r{NaHwHPB#qOdjH_AaH$17|F3D_vcrrRlbS| zPAiviO^|G_N7+b6MD>CWv=v{q>sxn~_3r4ivijh0 z02&!iNG9%)DfB8+M2{nQ2*d04> z?@^|xIZyy~o)>lknq$oHkmULTw)mv1e-0m=P7|scz8(H?d@EMTNH!1;rjv@9t_y0< zp6~jiNES?JQh&MNs(}|CuR=0D*HU6>5Tfe(b7^Kfdg0cLoeOB4V7MBfBdTS8aSJ7^x=fG zUfE~ayCx{b2g@UH(5e%F=(%AEFPn`z0XI576y0k}QJmIDe9I66^n_ZG#cT>yn}2^g ZQf&^soM18AzEM-HZlSiDmKd@^>o4~Z>azd< literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/autoscaling.v2beta2.HorizontalPodAutoscaler.yaml b/testdata/v1.33.0/autoscaling.v2beta2.HorizontalPodAutoscaler.yaml new file mode 100644 index 0000000000..6400cc7d81 --- /dev/null +++ b/testdata/v1.33.0/autoscaling.v2beta2.HorizontalPodAutoscaler.yaml @@ -0,0 +1,200 @@ +apiVersion: autoscaling/v2beta2 +kind: HorizontalPodAutoscaler +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + behavior: + scaleDown: + policies: + - periodSeconds: 3 + type: typeValue + value: 2 + selectPolicy: selectPolicyValue + stabilizationWindowSeconds: 3 + scaleUp: + policies: + - periodSeconds: 3 + type: typeValue + value: 2 + selectPolicy: selectPolicyValue + stabilizationWindowSeconds: 3 + maxReplicas: 3 + metrics: + - containerResource: + container: containerValue + name: nameValue + target: + averageUtilization: 4 + averageValue: "0" + type: typeValue + value: "0" + external: + metric: + name: nameValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + target: + averageUtilization: 4 + averageValue: "0" + type: typeValue + value: "0" + object: + describedObject: + apiVersion: apiVersionValue + kind: kindValue + name: nameValue + metric: + name: nameValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + target: + averageUtilization: 4 + averageValue: "0" + type: typeValue + value: "0" + pods: + metric: + name: nameValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + target: + averageUtilization: 4 + averageValue: "0" + type: typeValue + value: "0" + resource: + name: nameValue + target: + averageUtilization: 4 + averageValue: "0" + type: typeValue + value: "0" + type: typeValue + minReplicas: 2 + scaleTargetRef: + apiVersion: apiVersionValue + kind: kindValue + name: nameValue +status: + conditions: + - lastTransitionTime: "2003-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue + currentMetrics: + - containerResource: + container: containerValue + current: + averageUtilization: 3 + averageValue: "0" + value: "0" + name: nameValue + external: + current: + averageUtilization: 3 + averageValue: "0" + value: "0" + metric: + name: nameValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + object: + current: + averageUtilization: 3 + averageValue: "0" + value: "0" + describedObject: + apiVersion: apiVersionValue + kind: kindValue + name: nameValue + metric: + name: nameValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + pods: + current: + averageUtilization: 3 + averageValue: "0" + value: "0" + metric: + name: nameValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + resource: + current: + averageUtilization: 3 + averageValue: "0" + value: "0" + name: nameValue + type: typeValue + currentReplicas: 3 + desiredReplicas: 4 + lastScaleTime: "2002-01-01T01:01:01Z" + observedGeneration: 1 diff --git a/testdata/v1.33.0/batch.v1.CronJob.json b/testdata/v1.33.0/batch.v1.CronJob.json new file mode 100644 index 0000000000..ef7ea11168 --- /dev/null +++ b/testdata/v1.33.0/batch.v1.CronJob.json @@ -0,0 +1,1898 @@ +{ + "kind": "CronJob", + "apiVersion": "batch/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "schedule": "scheduleValue", + "timeZone": "timeZoneValue", + "startingDeadlineSeconds": 2, + "concurrencyPolicy": "concurrencyPolicyValue", + "suspend": true, + "jobTemplate": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "parallelism": 1, + "completions": 2, + "activeDeadlineSeconds": 3, + "podFailurePolicy": { + "rules": [ + { + "action": "actionValue", + "onExitCodes": { + "containerName": "containerNameValue", + "operator": "operatorValue", + "values": [ + 3 + ] + }, + "onPodConditions": [ + { + "type": "typeValue", + "status": "statusValue" + } + ] + } + ] + }, + "successPolicy": { + "rules": [ + { + "succeededIndexes": "succeededIndexesValue", + "succeededCount": 2 + } + ] + }, + "backoffLimit": 7, + "backoffLimitPerIndex": 12, + "maxFailedIndexes": 13, + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "manualSelector": true, + "template": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "volumes": [ + { + "name": "nameValue", + "hostPath": { + "path": "pathValue", + "type": "typeValue" + }, + "emptyDir": { + "medium": "mediumValue", + "sizeLimit": "0" + }, + "gcePersistentDisk": { + "pdName": "pdNameValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "awsElasticBlockStore": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "gitRepo": { + "repository": "repositoryValue", + "revision": "revisionValue", + "directory": "directoryValue" + }, + "secret": { + "secretName": "secretNameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "defaultMode": 3, + "optional": true + }, + "nfs": { + "server": "serverValue", + "path": "pathValue", + "readOnly": true + }, + "iscsi": { + "targetPortal": "targetPortalValue", + "iqn": "iqnValue", + "lun": 3, + "iscsiInterface": "iscsiInterfaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "portals": [ + "portalsValue" + ], + "chapAuthDiscovery": true, + "chapAuthSession": true, + "secretRef": { + "name": "nameValue" + }, + "initiatorName": "initiatorNameValue" + }, + "glusterfs": { + "endpoints": "endpointsValue", + "path": "pathValue", + "readOnly": true + }, + "persistentVolumeClaim": { + "claimName": "claimNameValue", + "readOnly": true + }, + "rbd": { + "monitors": [ + "monitorsValue" + ], + "image": "imageValue", + "fsType": "fsTypeValue", + "pool": "poolValue", + "user": "userValue", + "keyring": "keyringValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true + }, + "flexVolume": { + "driver": "driverValue", + "fsType": "fsTypeValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true, + "options": { + "optionsKey": "optionsValue" + } + }, + "cinder": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue" + } + }, + "cephfs": { + "monitors": [ + "monitorsValue" + ], + "path": "pathValue", + "user": "userValue", + "secretFile": "secretFileValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true + }, + "flocker": { + "datasetName": "datasetNameValue", + "datasetUUID": "datasetUUIDValue" + }, + "downwardAPI": { + "items": [ + { + "path": "pathValue", + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "mode": 4 + } + ], + "defaultMode": 2 + }, + "fc": { + "targetWWNs": [ + "targetWWNsValue" + ], + "lun": 2, + "fsType": "fsTypeValue", + "readOnly": true, + "wwids": [ + "wwidsValue" + ] + }, + "azureFile": { + "secretName": "secretNameValue", + "shareName": "shareNameValue", + "readOnly": true + }, + "configMap": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "defaultMode": 3, + "optional": true + }, + "vsphereVolume": { + "volumePath": "volumePathValue", + "fsType": "fsTypeValue", + "storagePolicyName": "storagePolicyNameValue", + "storagePolicyID": "storagePolicyIDValue" + }, + "quobyte": { + "registry": "registryValue", + "volume": "volumeValue", + "readOnly": true, + "user": "userValue", + "group": "groupValue", + "tenant": "tenantValue" + }, + "azureDisk": { + "diskName": "diskNameValue", + "diskURI": "diskURIValue", + "cachingMode": "cachingModeValue", + "fsType": "fsTypeValue", + "readOnly": true, + "kind": "kindValue" + }, + "photonPersistentDisk": { + "pdID": "pdIDValue", + "fsType": "fsTypeValue" + }, + "projected": { + "sources": [ + { + "secret": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "optional": true + }, + "downwardAPI": { + "items": [ + { + "path": "pathValue", + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "mode": 4 + } + ] + }, + "configMap": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "optional": true + }, + "serviceAccountToken": { + "audience": "audienceValue", + "expirationSeconds": 2, + "path": "pathValue" + }, + "clusterTrustBundle": { + "name": "nameValue", + "signerName": "signerNameValue", + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "optional": true, + "path": "pathValue" + } + } + ], + "defaultMode": 2 + }, + "portworxVolume": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "scaleIO": { + "gateway": "gatewayValue", + "system": "systemValue", + "secretRef": { + "name": "nameValue" + }, + "sslEnabled": true, + "protectionDomain": "protectionDomainValue", + "storagePool": "storagePoolValue", + "storageMode": "storageModeValue", + "volumeName": "volumeNameValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "storageos": { + "volumeName": "volumeNameValue", + "volumeNamespace": "volumeNamespaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue" + } + }, + "csi": { + "driver": "driverValue", + "readOnly": true, + "fsType": "fsTypeValue", + "volumeAttributes": { + "volumeAttributesKey": "volumeAttributesValue" + }, + "nodePublishSecretRef": { + "name": "nameValue" + } + }, + "ephemeral": { + "volumeClaimTemplate": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "accessModes": [ + "accessModesValue" + ], + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + } + }, + "volumeName": "volumeNameValue", + "storageClassName": "storageClassNameValue", + "volumeMode": "volumeModeValue", + "dataSource": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue" + }, + "dataSourceRef": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue", + "namespace": "namespaceValue" + }, + "volumeAttributesClassName": "volumeAttributesClassNameValue" + } + } + }, + "image": { + "reference": "referenceValue", + "pullPolicy": "pullPolicyValue" + } + } + ], + "initContainers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true + } + ], + "containers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true + } + ], + "ephemeralContainers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true, + "targetContainerName": "targetContainerNameValue" + } + ], + "restartPolicy": "restartPolicyValue", + "terminationGracePeriodSeconds": 4, + "activeDeadlineSeconds": 5, + "dnsPolicy": "dnsPolicyValue", + "nodeSelector": { + "nodeSelectorKey": "nodeSelectorValue" + }, + "serviceAccountName": "serviceAccountNameValue", + "serviceAccount": "serviceAccountValue", + "automountServiceAccountToken": true, + "nodeName": "nodeNameValue", + "hostNetwork": true, + "hostPID": true, + "hostIPC": true, + "shareProcessNamespace": true, + "securityContext": { + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 2, + "runAsGroup": 6, + "runAsNonRoot": true, + "supplementalGroups": [ + 4 + ], + "supplementalGroupsPolicy": "supplementalGroupsPolicyValue", + "fsGroup": 5, + "sysctls": [ + { + "name": "nameValue", + "value": "valueValue" + } + ], + "fsGroupChangePolicy": "fsGroupChangePolicyValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "seLinuxChangePolicy": "seLinuxChangePolicyValue" + }, + "imagePullSecrets": [ + { + "name": "nameValue" + } + ], + "hostname": "hostnameValue", + "subdomain": "subdomainValue", + "affinity": { + "nodeAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "nodeSelectorTerms": [ + { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + ] + }, + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "preference": { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + } + ] + }, + "podAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": [ + { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + ], + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "podAffinityTerm": { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + } + ] + }, + "podAntiAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": [ + { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + ], + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "podAffinityTerm": { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + } + ] + } + }, + "schedulerName": "schedulerNameValue", + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ], + "hostAliases": [ + { + "ip": "ipValue", + "hostnames": [ + "hostnamesValue" + ] + } + ], + "priorityClassName": "priorityClassNameValue", + "priority": 25, + "dnsConfig": { + "nameservers": [ + "nameserversValue" + ], + "searches": [ + "searchesValue" + ], + "options": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "readinessGates": [ + { + "conditionType": "conditionTypeValue" + } + ], + "runtimeClassName": "runtimeClassNameValue", + "enableServiceLinks": true, + "preemptionPolicy": "preemptionPolicyValue", + "overhead": { + "overheadKey": "0" + }, + "topologySpreadConstraints": [ + { + "maxSkew": 1, + "topologyKey": "topologyKeyValue", + "whenUnsatisfiable": "whenUnsatisfiableValue", + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "minDomains": 5, + "nodeAffinityPolicy": "nodeAffinityPolicyValue", + "nodeTaintsPolicy": "nodeTaintsPolicyValue", + "matchLabelKeys": [ + "matchLabelKeysValue" + ] + } + ], + "setHostnameAsFQDN": true, + "os": { + "name": "nameValue" + }, + "hostUsers": true, + "schedulingGates": [ + { + "name": "nameValue" + } + ], + "resourceClaims": [ + { + "name": "nameValue", + "resourceClaimName": "resourceClaimNameValue", + "resourceClaimTemplateName": "resourceClaimTemplateNameValue" + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + } + } + }, + "ttlSecondsAfterFinished": 8, + "completionMode": "completionModeValue", + "suspend": true, + "podReplacementPolicy": "podReplacementPolicyValue", + "managedBy": "managedByValue" + } + }, + "successfulJobsHistoryLimit": 6, + "failedJobsHistoryLimit": 7 + }, + "status": { + "active": [ + { + "kind": "kindValue", + "namespace": "namespaceValue", + "name": "nameValue", + "uid": "uidValue", + "apiVersion": "apiVersionValue", + "resourceVersion": "resourceVersionValue", + "fieldPath": "fieldPathValue" + } + ], + "lastScheduleTime": "2004-01-01T01:01:01Z", + "lastSuccessfulTime": "2005-01-01T01:01:01Z" + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/batch.v1.CronJob.pb b/testdata/v1.33.0/batch.v1.CronJob.pb new file mode 100644 index 0000000000000000000000000000000000000000..6077aafdd98e33df21f47774c81f3586149f2d81 GIT binary patch literal 11650 zcmeHNON<;x8Qy=^#xpff*FL=4erVGqVKo7=tcYaI$)2@AyR6NyenksH>FKVSX}hPp z(~n)RQ6w-zLOuZU2_k_MOF@=7Ao=JZA)E_D3Wpp3At50nafosVoB#>I-&OsnnO!@J zycU)+x9+Oy>Z;gFh`!ddzo1563ajHyxX|9zW2` z=ihzfuW#+EjjiC*&pvzypIT&nh7>HV%`E>*Y>O7fBmbhUl8R>APM`%i3Gc2+?|jVV zmq_7?X^S5#+4|LVHTA0In({&x;5c~Ij%jO_c?}oH=eYrGQtE5A)@2@VpcTiB_Ma?Y z8JPNG4BSCcitEhgxoCTwNuoZ~e$JR#SDXN$)}}o+tS$ zOo)hSxwNv27`)qMt2?mIY>6Z>3B%s%>CzGOvSky>yaM{K2D z2yyFt$YKc%&ok{Ve{0BVJOS;~q-c0%dPeeeiaZqkszQk4rXi&iKl52Hzwk(LgDOwu zogUs$b_7bcZZ#J67tGk{*X2nT;M%jKW@v%t%leSCT(}VH-F5gnS(o+t88RG^Xobh2 zR-*dKJfRp|0?ouoo(h7N2V#;ES;5@CTJ8p*S_)OVbm^>+DTXKcAo1+T=B8_jdGfi``7o-|_<{yxFjlPr05G zpwmJ8a?0tW3W%N6(sPOptdX>&%WuXKNcX!U@23Ut!EbZqH#suDJGssQ{o0e%T-5Si z=@WeX}|~8U|_WRX)+s&cDtgnO1`8zyADjw^wh)@YLr&Tw!EQwpu zpO$4?mtjarclt;J1)o$4h^&MR>eWrhL!#L|WyWaa1!)S-AIg!(b@T+d6nl;zEVsBd zHGT}zXi7FBqQHBUZv*-0NKSVh$(7kbZ`D8&lMH?m?$UFdo$ zeJ8YoG>WSwB*W=jeMtic6oitV2;@p3k_ca{T8vnDoa(3_l2$$-n7F z%{+s?I0BqW!1g9NYiSL-lxzP0GDY&5Av^~y7^vG^*U%O|Lo%F63!W46041ZQDzVrG z6O;#42%;R-iTp|hU5b7tG9*6L+A2BR?fcr2#|&m8BeTxAOiw*AJ+!@(f2U9{v`_jM zP+8N#bFi+GYyou2a&*m#ETrW*orJ1j3hpDvd=uci06zeP`Y$4xM&D~*<-euX0bhg% zG2Czqj_z>MSrY6H9Fc9aY9OuFGf~`yr`^i#!KcWOr}I%cFTH_Esl#J<_RkJu4G~9YWd4(FEz3 zm*ExYf%jI9{BPQfp%H{rY&^`*HuqGmS7tgs#~w>P%}$7-*wHSOc~?ep)DKiYtXP6ZauWnnwH5sm7hjL_Xc9LGd0TqmXM#j}{!awum4v;m{BD>5w(%p_b zkDhn$XZ_1K`2fhCG9_A#4u}&V0mPIV`fA5=x?8B^T&#PHawoEsFaAONbaA?G`a87K zzX2ZP$7|2ZNXmOsA$Ynq`*om6p(?`+w_rq^urw-hsu6KY!q4w!|CSPw;P@?;0E-Qej-t8Gk09p|w?704v2xf2Y(nR~lTMi68K zK}NaTQSLTmD#D;q?iRhlD0lm?z^Xh(3Fk3$w{%8ardir{1Luc1xRsMrfwyyTcc9^3 zZb`~}D_8^*_h}IWNLQ-VV*~By5eiuHh28tP$1m$0KY(S32`q|YzLQr&Fj#Y>)PnUE zIZKKfzhc6h=yN;YHyXGlIWw-{9hmG+UJ(=FK`8LiE2Uo9n{^#yjp0soo?w-r!Zo~| z8C}pdnj-Oc9S)OOGUbO@FUNw2v1}XcY7Dh%xu^=)EJw&`-Ld0h>uaPdT^FW9rDdr& h{fO(sJKt_@4BfrTZU@)#p7001{~q3TR>st^{{l}}6@&l) literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/batch.v1.CronJob.yaml b/testdata/v1.33.0/batch.v1.CronJob.yaml new file mode 100644 index 0000000000..a26f0e57d6 --- /dev/null +++ b/testdata/v1.33.0/batch.v1.CronJob.yaml @@ -0,0 +1,1305 @@ +apiVersion: batch/v1 +kind: CronJob +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + concurrencyPolicy: concurrencyPolicyValue + failedJobsHistoryLimit: 7 + jobTemplate: + metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + activeDeadlineSeconds: 3 + backoffLimit: 7 + backoffLimitPerIndex: 12 + completionMode: completionModeValue + completions: 2 + managedBy: managedByValue + manualSelector: true + maxFailedIndexes: 13 + parallelism: 1 + podFailurePolicy: + rules: + - action: actionValue + onExitCodes: + containerName: containerNameValue + operator: operatorValue + values: + - 3 + onPodConditions: + - status: statusValue + type: typeValue + podReplacementPolicy: podReplacementPolicyValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + successPolicy: + rules: + - succeededCount: 2 + succeededIndexes: succeededIndexesValue + suspend: true + template: + metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + activeDeadlineSeconds: 5 + affinity: + nodeAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - preference: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + podAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + automountServiceAccountToken: true + containers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + dnsConfig: + nameservers: + - nameserversValue + options: + - name: nameValue + value: valueValue + searches: + - searchesValue + dnsPolicy: dnsPolicyValue + enableServiceLinks: true + ephemeralContainers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + targetContainerName: targetContainerNameValue + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + hostAliases: + - hostnames: + - hostnamesValue + ip: ipValue + hostIPC: true + hostNetwork: true + hostPID: true + hostUsers: true + hostname: hostnameValue + imagePullSecrets: + - name: nameValue + initContainers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + nodeName: nodeNameValue + nodeSelector: + nodeSelectorKey: nodeSelectorValue + os: + name: nameValue + overhead: + overheadKey: "0" + preemptionPolicy: preemptionPolicyValue + priority: 25 + priorityClassName: priorityClassNameValue + readinessGates: + - conditionType: conditionTypeValue + resourceClaims: + - name: nameValue + resourceClaimName: resourceClaimNameValue + resourceClaimTemplateName: resourceClaimTemplateNameValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + runtimeClassName: runtimeClassNameValue + schedulerName: schedulerNameValue + schedulingGates: + - name: nameValue + securityContext: + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + fsGroup: 5 + fsGroupChangePolicy: fsGroupChangePolicyValue + runAsGroup: 6 + runAsNonRoot: true + runAsUser: 2 + seLinuxChangePolicy: seLinuxChangePolicyValue + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + supplementalGroups: + - 4 + supplementalGroupsPolicy: supplementalGroupsPolicyValue + sysctls: + - name: nameValue + value: valueValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + serviceAccount: serviceAccountValue + serviceAccountName: serviceAccountNameValue + setHostnameAsFQDN: true + shareProcessNamespace: true + subdomain: subdomainValue + terminationGracePeriodSeconds: 4 + tolerations: + - effect: effectValue + key: keyValue + operator: operatorValue + tolerationSeconds: 5 + value: valueValue + topologySpreadConstraints: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + maxSkew: 1 + minDomains: 5 + nodeAffinityPolicy: nodeAffinityPolicyValue + nodeTaintsPolicy: nodeTaintsPolicyValue + topologyKey: topologyKeyValue + whenUnsatisfiable: whenUnsatisfiableValue + volumes: + - awsElasticBlockStore: + fsType: fsTypeValue + partition: 3 + readOnly: true + volumeID: volumeIDValue + azureDisk: + cachingMode: cachingModeValue + diskName: diskNameValue + diskURI: diskURIValue + fsType: fsTypeValue + kind: kindValue + readOnly: true + azureFile: + readOnly: true + secretName: secretNameValue + shareName: shareNameValue + cephfs: + monitors: + - monitorsValue + path: pathValue + readOnly: true + secretFile: secretFileValue + secretRef: + name: nameValue + user: userValue + cinder: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + volumeID: volumeIDValue + configMap: + defaultMode: 3 + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + csi: + driver: driverValue + fsType: fsTypeValue + nodePublishSecretRef: + name: nameValue + readOnly: true + volumeAttributes: + volumeAttributesKey: volumeAttributesValue + downwardAPI: + defaultMode: 2 + items: + - fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + mode: 4 + path: pathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + emptyDir: + medium: mediumValue + sizeLimit: "0" + ephemeral: + volumeClaimTemplate: + metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + accessModes: + - accessModesValue + dataSource: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + dataSourceRef: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resources: + limits: + limitsKey: "0" + requests: + requestsKey: "0" + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + storageClassName: storageClassNameValue + volumeAttributesClassName: volumeAttributesClassNameValue + volumeMode: volumeModeValue + volumeName: volumeNameValue + fc: + fsType: fsTypeValue + lun: 2 + readOnly: true + targetWWNs: + - targetWWNsValue + wwids: + - wwidsValue + flexVolume: + driver: driverValue + fsType: fsTypeValue + options: + optionsKey: optionsValue + readOnly: true + secretRef: + name: nameValue + flocker: + datasetName: datasetNameValue + datasetUUID: datasetUUIDValue + gcePersistentDisk: + fsType: fsTypeValue + partition: 3 + pdName: pdNameValue + readOnly: true + gitRepo: + directory: directoryValue + repository: repositoryValue + revision: revisionValue + glusterfs: + endpoints: endpointsValue + path: pathValue + readOnly: true + hostPath: + path: pathValue + type: typeValue + image: + pullPolicy: pullPolicyValue + reference: referenceValue + iscsi: + chapAuthDiscovery: true + chapAuthSession: true + fsType: fsTypeValue + initiatorName: initiatorNameValue + iqn: iqnValue + iscsiInterface: iscsiInterfaceValue + lun: 3 + portals: + - portalsValue + readOnly: true + secretRef: + name: nameValue + targetPortal: targetPortalValue + name: nameValue + nfs: + path: pathValue + readOnly: true + server: serverValue + persistentVolumeClaim: + claimName: claimNameValue + readOnly: true + photonPersistentDisk: + fsType: fsTypeValue + pdID: pdIDValue + portworxVolume: + fsType: fsTypeValue + readOnly: true + volumeID: volumeIDValue + projected: + defaultMode: 2 + sources: + - clusterTrustBundle: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + name: nameValue + optional: true + path: pathValue + signerName: signerNameValue + configMap: + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + downwardAPI: + items: + - fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + mode: 4 + path: pathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secret: + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + serviceAccountToken: + audience: audienceValue + expirationSeconds: 2 + path: pathValue + quobyte: + group: groupValue + readOnly: true + registry: registryValue + tenant: tenantValue + user: userValue + volume: volumeValue + rbd: + fsType: fsTypeValue + image: imageValue + keyring: keyringValue + monitors: + - monitorsValue + pool: poolValue + readOnly: true + secretRef: + name: nameValue + user: userValue + scaleIO: + fsType: fsTypeValue + gateway: gatewayValue + protectionDomain: protectionDomainValue + readOnly: true + secretRef: + name: nameValue + sslEnabled: true + storageMode: storageModeValue + storagePool: storagePoolValue + system: systemValue + volumeName: volumeNameValue + secret: + defaultMode: 3 + items: + - key: keyValue + mode: 3 + path: pathValue + optional: true + secretName: secretNameValue + storageos: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + volumeName: volumeNameValue + volumeNamespace: volumeNamespaceValue + vsphereVolume: + fsType: fsTypeValue + storagePolicyID: storagePolicyIDValue + storagePolicyName: storagePolicyNameValue + volumePath: volumePathValue + ttlSecondsAfterFinished: 8 + schedule: scheduleValue + startingDeadlineSeconds: 2 + successfulJobsHistoryLimit: 6 + suspend: true + timeZone: timeZoneValue +status: + active: + - apiVersion: apiVersionValue + fieldPath: fieldPathValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue + lastScheduleTime: "2004-01-01T01:01:01Z" + lastSuccessfulTime: "2005-01-01T01:01:01Z" diff --git a/testdata/v1.33.0/batch.v1.Job.json b/testdata/v1.33.0/batch.v1.Job.json new file mode 100644 index 0000000000..048fddb97a --- /dev/null +++ b/testdata/v1.33.0/batch.v1.Job.json @@ -0,0 +1,1859 @@ +{ + "kind": "Job", + "apiVersion": "batch/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "parallelism": 1, + "completions": 2, + "activeDeadlineSeconds": 3, + "podFailurePolicy": { + "rules": [ + { + "action": "actionValue", + "onExitCodes": { + "containerName": "containerNameValue", + "operator": "operatorValue", + "values": [ + 3 + ] + }, + "onPodConditions": [ + { + "type": "typeValue", + "status": "statusValue" + } + ] + } + ] + }, + "successPolicy": { + "rules": [ + { + "succeededIndexes": "succeededIndexesValue", + "succeededCount": 2 + } + ] + }, + "backoffLimit": 7, + "backoffLimitPerIndex": 12, + "maxFailedIndexes": 13, + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "manualSelector": true, + "template": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "volumes": [ + { + "name": "nameValue", + "hostPath": { + "path": "pathValue", + "type": "typeValue" + }, + "emptyDir": { + "medium": "mediumValue", + "sizeLimit": "0" + }, + "gcePersistentDisk": { + "pdName": "pdNameValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "awsElasticBlockStore": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "gitRepo": { + "repository": "repositoryValue", + "revision": "revisionValue", + "directory": "directoryValue" + }, + "secret": { + "secretName": "secretNameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "defaultMode": 3, + "optional": true + }, + "nfs": { + "server": "serverValue", + "path": "pathValue", + "readOnly": true + }, + "iscsi": { + "targetPortal": "targetPortalValue", + "iqn": "iqnValue", + "lun": 3, + "iscsiInterface": "iscsiInterfaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "portals": [ + "portalsValue" + ], + "chapAuthDiscovery": true, + "chapAuthSession": true, + "secretRef": { + "name": "nameValue" + }, + "initiatorName": "initiatorNameValue" + }, + "glusterfs": { + "endpoints": "endpointsValue", + "path": "pathValue", + "readOnly": true + }, + "persistentVolumeClaim": { + "claimName": "claimNameValue", + "readOnly": true + }, + "rbd": { + "monitors": [ + "monitorsValue" + ], + "image": "imageValue", + "fsType": "fsTypeValue", + "pool": "poolValue", + "user": "userValue", + "keyring": "keyringValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true + }, + "flexVolume": { + "driver": "driverValue", + "fsType": "fsTypeValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true, + "options": { + "optionsKey": "optionsValue" + } + }, + "cinder": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue" + } + }, + "cephfs": { + "monitors": [ + "monitorsValue" + ], + "path": "pathValue", + "user": "userValue", + "secretFile": "secretFileValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true + }, + "flocker": { + "datasetName": "datasetNameValue", + "datasetUUID": "datasetUUIDValue" + }, + "downwardAPI": { + "items": [ + { + "path": "pathValue", + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "mode": 4 + } + ], + "defaultMode": 2 + }, + "fc": { + "targetWWNs": [ + "targetWWNsValue" + ], + "lun": 2, + "fsType": "fsTypeValue", + "readOnly": true, + "wwids": [ + "wwidsValue" + ] + }, + "azureFile": { + "secretName": "secretNameValue", + "shareName": "shareNameValue", + "readOnly": true + }, + "configMap": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "defaultMode": 3, + "optional": true + }, + "vsphereVolume": { + "volumePath": "volumePathValue", + "fsType": "fsTypeValue", + "storagePolicyName": "storagePolicyNameValue", + "storagePolicyID": "storagePolicyIDValue" + }, + "quobyte": { + "registry": "registryValue", + "volume": "volumeValue", + "readOnly": true, + "user": "userValue", + "group": "groupValue", + "tenant": "tenantValue" + }, + "azureDisk": { + "diskName": "diskNameValue", + "diskURI": "diskURIValue", + "cachingMode": "cachingModeValue", + "fsType": "fsTypeValue", + "readOnly": true, + "kind": "kindValue" + }, + "photonPersistentDisk": { + "pdID": "pdIDValue", + "fsType": "fsTypeValue" + }, + "projected": { + "sources": [ + { + "secret": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "optional": true + }, + "downwardAPI": { + "items": [ + { + "path": "pathValue", + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "mode": 4 + } + ] + }, + "configMap": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "optional": true + }, + "serviceAccountToken": { + "audience": "audienceValue", + "expirationSeconds": 2, + "path": "pathValue" + }, + "clusterTrustBundle": { + "name": "nameValue", + "signerName": "signerNameValue", + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "optional": true, + "path": "pathValue" + } + } + ], + "defaultMode": 2 + }, + "portworxVolume": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "scaleIO": { + "gateway": "gatewayValue", + "system": "systemValue", + "secretRef": { + "name": "nameValue" + }, + "sslEnabled": true, + "protectionDomain": "protectionDomainValue", + "storagePool": "storagePoolValue", + "storageMode": "storageModeValue", + "volumeName": "volumeNameValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "storageos": { + "volumeName": "volumeNameValue", + "volumeNamespace": "volumeNamespaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue" + } + }, + "csi": { + "driver": "driverValue", + "readOnly": true, + "fsType": "fsTypeValue", + "volumeAttributes": { + "volumeAttributesKey": "volumeAttributesValue" + }, + "nodePublishSecretRef": { + "name": "nameValue" + } + }, + "ephemeral": { + "volumeClaimTemplate": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "accessModes": [ + "accessModesValue" + ], + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + } + }, + "volumeName": "volumeNameValue", + "storageClassName": "storageClassNameValue", + "volumeMode": "volumeModeValue", + "dataSource": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue" + }, + "dataSourceRef": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue", + "namespace": "namespaceValue" + }, + "volumeAttributesClassName": "volumeAttributesClassNameValue" + } + } + }, + "image": { + "reference": "referenceValue", + "pullPolicy": "pullPolicyValue" + } + } + ], + "initContainers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true + } + ], + "containers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true + } + ], + "ephemeralContainers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true, + "targetContainerName": "targetContainerNameValue" + } + ], + "restartPolicy": "restartPolicyValue", + "terminationGracePeriodSeconds": 4, + "activeDeadlineSeconds": 5, + "dnsPolicy": "dnsPolicyValue", + "nodeSelector": { + "nodeSelectorKey": "nodeSelectorValue" + }, + "serviceAccountName": "serviceAccountNameValue", + "serviceAccount": "serviceAccountValue", + "automountServiceAccountToken": true, + "nodeName": "nodeNameValue", + "hostNetwork": true, + "hostPID": true, + "hostIPC": true, + "shareProcessNamespace": true, + "securityContext": { + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 2, + "runAsGroup": 6, + "runAsNonRoot": true, + "supplementalGroups": [ + 4 + ], + "supplementalGroupsPolicy": "supplementalGroupsPolicyValue", + "fsGroup": 5, + "sysctls": [ + { + "name": "nameValue", + "value": "valueValue" + } + ], + "fsGroupChangePolicy": "fsGroupChangePolicyValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "seLinuxChangePolicy": "seLinuxChangePolicyValue" + }, + "imagePullSecrets": [ + { + "name": "nameValue" + } + ], + "hostname": "hostnameValue", + "subdomain": "subdomainValue", + "affinity": { + "nodeAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "nodeSelectorTerms": [ + { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + ] + }, + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "preference": { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + } + ] + }, + "podAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": [ + { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + ], + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "podAffinityTerm": { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + } + ] + }, + "podAntiAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": [ + { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + ], + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "podAffinityTerm": { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + } + ] + } + }, + "schedulerName": "schedulerNameValue", + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ], + "hostAliases": [ + { + "ip": "ipValue", + "hostnames": [ + "hostnamesValue" + ] + } + ], + "priorityClassName": "priorityClassNameValue", + "priority": 25, + "dnsConfig": { + "nameservers": [ + "nameserversValue" + ], + "searches": [ + "searchesValue" + ], + "options": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "readinessGates": [ + { + "conditionType": "conditionTypeValue" + } + ], + "runtimeClassName": "runtimeClassNameValue", + "enableServiceLinks": true, + "preemptionPolicy": "preemptionPolicyValue", + "overhead": { + "overheadKey": "0" + }, + "topologySpreadConstraints": [ + { + "maxSkew": 1, + "topologyKey": "topologyKeyValue", + "whenUnsatisfiable": "whenUnsatisfiableValue", + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "minDomains": 5, + "nodeAffinityPolicy": "nodeAffinityPolicyValue", + "nodeTaintsPolicy": "nodeTaintsPolicyValue", + "matchLabelKeys": [ + "matchLabelKeysValue" + ] + } + ], + "setHostnameAsFQDN": true, + "os": { + "name": "nameValue" + }, + "hostUsers": true, + "schedulingGates": [ + { + "name": "nameValue" + } + ], + "resourceClaims": [ + { + "name": "nameValue", + "resourceClaimName": "resourceClaimNameValue", + "resourceClaimTemplateName": "resourceClaimTemplateNameValue" + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + } + } + }, + "ttlSecondsAfterFinished": 8, + "completionMode": "completionModeValue", + "suspend": true, + "podReplacementPolicy": "podReplacementPolicyValue", + "managedBy": "managedByValue" + }, + "status": { + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "lastProbeTime": "2003-01-01T01:01:01Z", + "lastTransitionTime": "2004-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ], + "startTime": "2002-01-01T01:01:01Z", + "completionTime": "2003-01-01T01:01:01Z", + "active": 4, + "succeeded": 5, + "failed": 6, + "terminating": 11, + "completedIndexes": "completedIndexesValue", + "failedIndexes": "failedIndexesValue", + "uncountedTerminatedPods": { + "succeeded": [ + "succeededValue" + ], + "failed": [ + "failedValue" + ] + }, + "ready": 9 + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/batch.v1.Job.pb b/testdata/v1.33.0/batch.v1.Job.pb new file mode 100644 index 0000000000000000000000000000000000000000..11cb78b90af1e5d338cbff71b208443f5ac97bb9 GIT binary patch literal 11276 zcmeHNO^h5z72Y>%a(IUt0D1V-WzaWI_tIl$|x{;3(S zokd;?OPO1DRdw}yRqyBfUe%=|!5FEMeA@`k?u+Z6q2tSLo8CW9{+J^L$LO&y8Fru1 zy=%;2z7ew1Nt0HIdIQfe4^?aXO;%Q;RXMx-IaUAml?mD9N$ew0C z|K1yad2?57Y#E<^cK=;`YLV4xQm~CSvx6_NO0l(Vej$!jFD4>|<8nj8NXE??h^F;%#xL%}xBEB{} zjgC6pd+$HvwXp@9jM-LjcGHt9)7V9FU;BEq7WCWcN{B`M?U_8(a?|7bNrJldq8&Jy zs$Nsxr3lZH{3W(2pUYAlS4yW9*P{ug>~pa2_7_Ln_vE+l52wk`CsZeSV}eYPf@g$X zxk-gEF#$?RvBxal@5!EV0`uBoQuM6UpJ=g@nauR~Ea zWN&ErYbUvfg`caktsSCyEDM#&Q&OVd3HD@A2NFF>1e zhlkui1yX^R50MIUEYIamC_kgBSSyrNOxxhS^n)6#ewmbeF3#k}{!Iz*p>GS3HB}SD-32_4Vp&YE~@s4^af_6bt7e4eh6I-RBtorStai0h@{s}w(rSueiu z$n6GQoytEktWdTDS|+z1Z}#W7Ep@G{lgz`FXGzU6LL*S^A!#{xF1EX?@Kv&^+VwMJ zIQr3wh)Kw;o}e5aV6*)ewLr6;dT5*)t5fX(r>^?QkCwOYBAuF+Ejq%gGSSGZEkL+O6d~= z?eUu3f+j(2*LV;no>`Q$i_M+}J=>)^S@Ye#CoQcQGRJU2@p2oMNZI1SrSxaC6uq8X zSrYwP%{0s|n&m0iij%Nve3%HbWOxTKv3k~4q2w+cezfVm3*QD(TEpzWVZ>pk7;FY1 zlhJJ0$R|DD4Ke6ot~~Dc&;+DrwRD|g2WuoPsrb!!2U2~PRef6UKKv#}ew`z8+uPS! zpkH~CmWx)tE&IY)evp)nzQvgnqa`%&%wy{tO36qO!^8GED9+#E8B+0Chxw_S z)2i3EZJ9BIanqlcRbN+ONXc}2NI4{T(F=&IjxAH)%8!A37f6K+>=!+y0;DSPx-ks!2yNw37or^zk9sjMyDX;F_5F(E1AB9j z49`K8Icj;Jr3jbvG@T$?-!->;{$oe>tUm1mwttu--~2zXU=COCDUd;{Vqo*mV8W02 z)5QZwmU>u>h%ECI#^MNYCJEc05Uiy&7*ekM1IQ%F8r7G}G$DxUAxHDe6$~lnsmPJUR4XURfwf*>Ec(o14l*+PjK|D064U(; zc1p{qe&0D3oI_(x2hYN)PBH=Lr0tr99eGI0cRLAH!E(=sj`;?_cL2Tz2=!k?GL5m9 zUlzZm)qz-q3o+bq0}gGm(gNCx8E(Nr)iIpE8}X{;h%YO z3&;v-k!@BT>2}AR#mKw!v;KLU{1wQKG9_A#7Dx~v3Bqrs?l`>@2SJ;o8vW7clzw7g8S z_`nUEALQUhPAvuA%)#w}hC8`MrS7faA(*_oi5Nh+Ql%drXg`Zkz*aAZ-pxJ!vEGqA zcnq-*4@I%wDNaK$Sqr4pg4Gr|O^SxNVj`O8b6ejx8n`7nJ+9#$nCwno5ewmAU*e-z zOWm?RP6}+7pT?Vz9vha5m4v-l#8T9eI91ldSCC6fyW2l8!JAMJ= z<%j)A!;7N-e&;@36wR)T*6~2y2;!Tu3ni>NM&~|KGaUZ?U;PP(XCKBz?a6p;27lkg f>v5@Ea*ATdz*7}@JoNd(3YD*_%omE9pC?KVs>giQ`z0@c0Sl^@6KgTy}iYQFi**BqU@T)ar1SoBG=PhGgC=V zcVBnUZZ>kD5kc~xk|#Y-xPTJkgOJCZAm(25;C#3T6+w^)J{}=Acm80IkGfX)|F9pnQpXSaL@kMQ-&n@w^IO(&%?fW>6`2lww z(RyrOV`AdnH~;$9p6b{NKK<;&ckro6)@DfFHd@RMzQ{IdK|YEvS~@8kj^l<#h?9u! zs`4(zTz;A4uW(2HSj*P0r>m(|43Db|S%72USK8b$Y<>+FDCW5VEmG_mj?rPhXrN`+ zi}s%^UmKoA$2~lF_dny+u|=GW*;a6V(~~Dt-$Qa=f4xx+`mOXN#G(HCA}IxCmsx#V zj;!XiY14JgzV9=~+-$lwH#f!q=b-kBizAsld71p~+yqo}GvoScg8J5r%;R*bj#cGd zs>SnU;tG=@q9v&!uGAQeDZ%&eFlJ|_TD+QJh z6SJh06nf0!{hsU@C$OL$B?Zq)eH<;cGc%qUp96i4l-6Cl-($-sM&x}WFsB5GUFn>MqOiDjA*2(_R z@H;GQx_)Tba*Y%GHR*Iwtq<_P4EVAWGQXX;?wY!Z1*jK2@v&6h&mUv@_pR87_wMI!}Gb*5pQ*MjmM#NiWDrLr)Q*2r>R5HuWE$2UK&!0@w1rq@(Yg? zH|XkA{;A;&Wk;Z8>(*mof1bxqzot&I0N0)+Rm%vCK-Gt&<-&zn@2<_X2%5*i#Mc`6868i+|+WCe43s<|70YAIFe(xtOfrWl^ogT%8V8ynn` zoj2i=TlKgcbPYel3^VWsexvS}K1$PX!D&*F=9cbaz$CTl0M!STMn=kXQ~KmUdwgbh zph0lA9Ug>j_>w8scD6fIffI8m%Fe`N)`{Uq(7s@==H+tvgp^U zreStbEzh`C42;w>!$6P$lzV_+$FsI`CHLXzqgC%6_%@JY2NBtZ5xbc}uo;9*db43A zpYnV+M5lxJ<)qs~6_7itrsotJSUqV;m*0pbknVRy-A@zVgWu-JZ*pXQXL6kb`qd|? zxv1qk(l7Mohe^rkTO5&AioP<7t!*eyk5&TSQLRSXRdj$3E-})11RsBdr9|!1L#LBc zQ=^6qa}S%Ny7LEcX}||oVPLfWX>veLc_Ivb-s*=;KX~TxQyO6dv75k1Q+X#YG zQ5WOCrv9V;9GaQOzmU39nmIs)p*3FK(J+08b*>y8*4M%1{2iVlWuLWKM5v^h(~8%( zZG~IWpO#cxS7AuebbCkxC7;yuh^(XxYLyMwN21v|$zwF~f-;5R52eWCx@H1g3SBn{ zmz%OTTyG$rd1Q4l@aw}5Yp*B*W=jZA$j~u4iCGOE~so#F(Q&r>=VPlX$U2K8OXJKBoVP#y%4eRIMq=*sH}WIHiyaZ98{U3 zIsvp8;c}ja6GZEK=Jzgq;@G~mr+tB~ALht6|Ia6w!xMZ8)}U3;v3ch(;K%&w@*yNk zJxmZqnt29&aRfM%fbCBT*3ukwDcAl1WQt4}mh>DnZ=r4rT|-;=49RdN&HHZ51GJ2q z>cnR2Oi~_HA&7ER$0t_G=u*rxks*nxR!@^donBxp`OIPtGBW#|$IR3d(}P<(#djL@ z`_75r0xD}dcn;Qdk}ZHv*{*5Wk%csUx1CTGOu>ERm~Q}l2jKgFQ2#|F)98EoRq+cGfnFpFi&36ziP&ytFRc;OtgMV=wbr0!Q6gghDtV{diBG$Wl#*Ryh9utO?a zDViW1^9sBQUGU$^k^fDbF*Jg7iuH&2*~YG_^~y{;5ZGg>Yd8r}lsnpiGVjPJjs$(r zvoU@kx3N z=n@9rhiT8}uFu2G!KCA_VfH@KKA#(FSflPB7E?FLUzS#5nP>Nt-Ds!%0SjqPCg&D`51 zGJ+r@2r|muj&iqsrXvg*XR3#{5>lyDw1cS~pFWtyceH*kKCgIhT@6?i)b zcLy5o<(8DZw}wS9d7l_XV&ETu>(I1fdp_U2d-q-xa1Cvul|HbH3`rknz*|wkTO?V#+OSu5X7ytd zQbNNcxD>!M`>~APOQ=He1)SnofV~s~1ttj&rX{C7`Q<6@=PhoHLp>m^5XwO^iT&N%=8 literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/certificates.k8s.io.v1.CertificateSigningRequest.yaml b/testdata/v1.33.0/certificates.k8s.io.v1.CertificateSigningRequest.yaml new file mode 100644 index 0000000000..c66e9ad661 --- /dev/null +++ b/testdata/v1.33.0/certificates.k8s.io.v1.CertificateSigningRequest.yaml @@ -0,0 +1,56 @@ +apiVersion: certificates.k8s.io/v1 +kind: CertificateSigningRequest +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + expirationSeconds: 8 + extra: + extraKey: + - extraValue + groups: + - groupsValue + request: AQ== + signerName: signerNameValue + uid: uidValue + usages: + - usagesValue + username: usernameValue +status: + certificate: Ag== + conditions: + - lastTransitionTime: "2005-01-01T01:01:01Z" + lastUpdateTime: "2004-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue diff --git a/testdata/v1.33.0/certificates.k8s.io.v1alpha1.ClusterTrustBundle.json b/testdata/v1.33.0/certificates.k8s.io.v1alpha1.ClusterTrustBundle.json new file mode 100644 index 0000000000..abd68b875d --- /dev/null +++ b/testdata/v1.33.0/certificates.k8s.io.v1alpha1.ClusterTrustBundle.json @@ -0,0 +1,50 @@ +{ + "kind": "ClusterTrustBundle", + "apiVersion": "certificates.k8s.io/v1alpha1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "signerName": "signerNameValue", + "trustBundle": "trustBundleValue" + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/certificates.k8s.io.v1alpha1.ClusterTrustBundle.pb b/testdata/v1.33.0/certificates.k8s.io.v1alpha1.ClusterTrustBundle.pb new file mode 100644 index 0000000000000000000000000000000000000000..638772cc8a9737064d9e62e99067dbc8498f279d GIT binary patch literal 455 zcmZ8eJ5Iwu5Vey?#0xlPMS(0T)1?R`5|Tw}IzWgbqM#c)6SH`;wsvi#fanpopymkN z04aAs6x7@RHf!Z0s(m}3H*el#p|Z$;>?bHoHf9NwsCrqbdMrP@?*lJxp-<^4uT+V0 zDD@LnV#JX?H_2y%I07bk4ZK3SlcGSW`!5$E-<@Yw0ZCmFY%ApB3nntt(QQ|3WYAz& zqRK0&>rg6|3lj}DqIP@s`u*PWtTTV zChe{LP0iggaWW?A!Tw5ruvF9SK*8399ND2QJ7Xq*vj;8E@VwYD*_wcW6r~AJH!tS< zFXa3GX#%~&*X+0HSp!Xme58icqITw_MH-J!k*BJ7>4Y)$fOHf~wXaK4saLM9U#nK!OS(Kn!e7dmEVsC)hEfAbx;>k)4@O z;17^Gvmyp22L1pXho%+V@qHYhd(PPB8uHQl09Z;!WPnrPt+CHrB;L4c2aw{ny|y!N z9+Qv~8Xm!=0G`^9W%OP`CdC(UiX#E`N(dB~WI33XoLbi92_EDlZk0nc>JvIv8=fJ^ zP@&E$10D+|=YVk%Q&shsdxkN6`g|!jv^|NQzh5OfL}yK8MmT_o@598la;P=}7u7JO zaf(w(qS}pxx0*TMLgtvz{9|XX-!0U5b)1kzA)C6dv-*fo9FZF-Q1RUB0jgYJibG(k zVAtX#yMHF%`A_4@8$PB#OAW0f$sii?lSz_0(=DUY?Om_IMNl}QOdTLyx2u8!D~xsu zp{^COSR}a~&k|f}$se62GT=I8ICH3ikitr3x6Wmbz>1Kz4X2NGk(ti4*cJoK|1xkY fGQf;iEzd9TFIA#iiXM|JT+_j^=8=>Q2xQ literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/certificates.k8s.io.v1beta1.CertificateSigningRequest.yaml b/testdata/v1.33.0/certificates.k8s.io.v1beta1.CertificateSigningRequest.yaml new file mode 100644 index 0000000000..9cb463c635 --- /dev/null +++ b/testdata/v1.33.0/certificates.k8s.io.v1beta1.CertificateSigningRequest.yaml @@ -0,0 +1,56 @@ +apiVersion: certificates.k8s.io/v1beta1 +kind: CertificateSigningRequest +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + expirationSeconds: 8 + extra: + extraKey: + - extraValue + groups: + - groupsValue + request: AQ== + signerName: signerNameValue + uid: uidValue + usages: + - usagesValue + username: usernameValue +status: + certificate: Ag== + conditions: + - lastTransitionTime: "2005-01-01T01:01:01Z" + lastUpdateTime: "2004-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue diff --git a/testdata/v1.33.0/certificates.k8s.io.v1beta1.ClusterTrustBundle.json b/testdata/v1.33.0/certificates.k8s.io.v1beta1.ClusterTrustBundle.json new file mode 100644 index 0000000000..d578d21e89 --- /dev/null +++ b/testdata/v1.33.0/certificates.k8s.io.v1beta1.ClusterTrustBundle.json @@ -0,0 +1,50 @@ +{ + "kind": "ClusterTrustBundle", + "apiVersion": "certificates.k8s.io/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "signerName": "signerNameValue", + "trustBundle": "trustBundleValue" + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/certificates.k8s.io.v1beta1.ClusterTrustBundle.pb b/testdata/v1.33.0/certificates.k8s.io.v1beta1.ClusterTrustBundle.pb new file mode 100644 index 0000000000000000000000000000000000000000..1b405ba9d8824b0c67fc9eb62f1c03d55bcbc4cc GIT binary patch literal 454 zcmZ8eyH3L}6ipuzje#~;3@B`2>riMVq=+$WfDl8)z~-d4k%{X>z7A50*b#rh%qQ>% zNc{)Iz|0?j>!=Sg`S?E0J@?!!M2GarVFF6?F;AEV>}4VLcz*oQk3q9OrRSnV4Qi;& z6P0o#fIc_KXPvl`P2iS^66jtE5|nAbUWWYkB8vq}s*+$AL5#1s%xp)uRq~NVgM9^< zm&(+ELY_+-4Y#6JYySHE-t?RcgWi5V47wqA2gDUD27#9_rP~#>9dSU~Ov+p{ZAfg| z+xXj>`%~g(Tvmhqwf0<*){{I}sb149O4gu`i3Idj$|^~a~k!!lkuVNE?E9ptI;b!95`^!f^Rua zh#x>m{RhOr+?@ejM=cfG@xAAsd+u@MO9R!>W}kBr5{47PSu^rwlknZ^eW%m~EWvpx zppQJV7#_hnrYShHt|0 zVcBB$&%d{D)2QN@EF0O&`8iP?s3<78Q3kcneJ((2Bh2s+gf2K09?$Nd+jsxVczD$8W{2g8imuEhcdAOwVmT1Jn%hG+Z&7j3Ee literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/coordination.k8s.io.v1.Lease.yaml b/testdata/v1.33.0/coordination.k8s.io.v1.Lease.yaml new file mode 100644 index 0000000000..b9093c67cd --- /dev/null +++ b/testdata/v1.33.0/coordination.k8s.io.v1.Lease.yaml @@ -0,0 +1,42 @@ +apiVersion: coordination.k8s.io/v1 +kind: Lease +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + acquireTime: "2003-01-01T01:01:01.000003Z" + holderIdentity: holderIdentityValue + leaseDurationSeconds: 2 + leaseTransitions: 5 + preferredHolder: preferredHolderValue + renewTime: "2004-01-01T01:01:01.000004Z" + strategy: strategyValue diff --git a/testdata/v1.33.0/coordination.k8s.io.v1alpha2.LeaseCandidate.json b/testdata/v1.33.0/coordination.k8s.io.v1alpha2.LeaseCandidate.json new file mode 100644 index 0000000000..22ac6bfb91 --- /dev/null +++ b/testdata/v1.33.0/coordination.k8s.io.v1alpha2.LeaseCandidate.json @@ -0,0 +1,54 @@ +{ + "kind": "LeaseCandidate", + "apiVersion": "coordination.k8s.io/v1alpha2", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "leaseName": "leaseNameValue", + "pingTime": "2002-01-01T01:01:01.000002Z", + "renewTime": "2003-01-01T01:01:01.000003Z", + "binaryVersion": "binaryVersionValue", + "emulationVersion": "emulationVersionValue", + "strategy": "strategyValue" + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/coordination.k8s.io.v1alpha2.LeaseCandidate.pb b/testdata/v1.33.0/coordination.k8s.io.v1alpha2.LeaseCandidate.pb new file mode 100644 index 0000000000000000000000000000000000000000..f092766664d6905af0307335676909d6c88cbe43 GIT binary patch literal 512 zcmZ9JKTE?v7{*gmusLlSgQ5hdj2)^5gy2{=E#e>!PF|X~_007W?h+x2U%=Tf;OrL= zToptp_z~2>xx0g2F0=->=ia}+_qoUy8tS0+ejM|VFr1Q@bs}GMNW5{eg=unzJ=^R7 z7O;z1NJ5-~{j8(+Ib<+Af@4fGu$P9wfXmduG~}2?RwTGzmbgs;bkHL#QXTC^Mna{$ zWey_FxU2&%u{c#H zsI*mitD5s|WJH9Oi=97ycSh50;e=E{Hfw&3w+7M~N-ia!nsZYN(BcR)JOr)+wizeI z{ZoAB{}@-^@Hzg`EzOg|fQI5IPfBNY>S*rjx@(Cnm^qNIum9Rp^87?SLoUw zQ2YTA`VZp5b@wiGI-ynEow@hibI&~!`O-k!XtU3`2noXp;j9t)vO)OnRWpDDH=R-! zumtD1fZp@SVt52+n5N*Y4uOHd37pJJZe`Y$G45v+uPlKMx`ah~qHd-n)TmVxAbBbj z4}?@Zb=6<$nC9f+^QCATM+!Yo-xNAU=NrhPH~=b-VeBktP)`INs$j-=qK)ge{pYPY zm;1|I-BVD@-f!)cT4kBc{$Q99+qGE00EB?>K+EWH*YJ!VlUJ+I literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/coordination.k8s.io.v1beta1.Lease.yaml b/testdata/v1.33.0/coordination.k8s.io.v1beta1.Lease.yaml new file mode 100644 index 0000000000..a8405f66cc --- /dev/null +++ b/testdata/v1.33.0/coordination.k8s.io.v1beta1.Lease.yaml @@ -0,0 +1,42 @@ +apiVersion: coordination.k8s.io/v1beta1 +kind: Lease +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + acquireTime: "2003-01-01T01:01:01.000003Z" + holderIdentity: holderIdentityValue + leaseDurationSeconds: 2 + leaseTransitions: 5 + preferredHolder: preferredHolderValue + renewTime: "2004-01-01T01:01:01.000004Z" + strategy: strategyValue diff --git a/testdata/v1.33.0/coordination.k8s.io.v1beta1.LeaseCandidate.json b/testdata/v1.33.0/coordination.k8s.io.v1beta1.LeaseCandidate.json new file mode 100644 index 0000000000..42baac728a --- /dev/null +++ b/testdata/v1.33.0/coordination.k8s.io.v1beta1.LeaseCandidate.json @@ -0,0 +1,54 @@ +{ + "kind": "LeaseCandidate", + "apiVersion": "coordination.k8s.io/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "leaseName": "leaseNameValue", + "pingTime": "2002-01-01T01:01:01.000002Z", + "renewTime": "2003-01-01T01:01:01.000003Z", + "binaryVersion": "binaryVersionValue", + "emulationVersion": "emulationVersionValue", + "strategy": "strategyValue" + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/coordination.k8s.io.v1beta1.LeaseCandidate.pb b/testdata/v1.33.0/coordination.k8s.io.v1beta1.LeaseCandidate.pb new file mode 100644 index 0000000000000000000000000000000000000000..a72e9476af735170446482c35bd869297810a805 GIT binary patch literal 511 zcmZ9JKTE?v7{=44U~<|t21SWm#)8!rgy2{=E#e>!PF|X~<;?X`?h+x2U%=Tf;OrL= zToptp_z~2>xx0g2F0=->=ia}+_qoUy8rnn~{W#_!VK^Z%Yel|jk$CH(9YBKHj@1J! zU=Op9gg61`Sx4_xWHLO06HHTZmWRNA%hcg4{~Sq0@C_QXBvk2aq|7g;X7Zhb+ukoTv*_ z+Ah6S&G`;8Bf^Ts?jOH5r)f6un3O@bD}IGH2GSTxE+wFvb5jY>(g-s=1g-*(6_4}# zXZY^_F`m5PbMm9xT1O588j9m=TsX5^L)EM6t}W7F?u0V+3|TbyeeS7a8k5_n58Zxi oxKe(;PAvi&*%oQ}arkJzatz YLPEuJTDF!7500DU!vH$=8 literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.APIVersions.yaml b/testdata/v1.33.0/core.v1.APIVersions.yaml new file mode 100644 index 0000000000..68a0670803 --- /dev/null +++ b/testdata/v1.33.0/core.v1.APIVersions.yaml @@ -0,0 +1,7 @@ +apiVersion: v1 +kind: APIVersions +serverAddressByClientCIDRs: +- clientCIDR: clientCIDRValue + serverAddress: serverAddressValue +versions: +- versionsValue diff --git a/testdata/v1.33.0/core.v1.Binding.json b/testdata/v1.33.0/core.v1.Binding.json new file mode 100644 index 0000000000..4741bab466 --- /dev/null +++ b/testdata/v1.33.0/core.v1.Binding.json @@ -0,0 +1,55 @@ +{ + "kind": "Binding", + "apiVersion": "v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "target": { + "kind": "kindValue", + "namespace": "namespaceValue", + "name": "nameValue", + "uid": "uidValue", + "apiVersion": "apiVersionValue", + "resourceVersion": "resourceVersionValue", + "fieldPath": "fieldPathValue" + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/core.v1.Binding.pb b/testdata/v1.33.0/core.v1.Binding.pb new file mode 100644 index 0000000000000000000000000000000000000000..5f44fe6deda6fb1360fe686020a64e94dba8dc8b GIT binary patch literal 486 zcmd0{C}!Z|PE%uC74OBXuB%=LhYi!(1VH#ICVr!-YaFg-OdwJ5P9)ej~l z#RrltE=Wv(JsT%}fEaj6{l3i}Op1fa+3<|M+3&tY;w9LH3oXjeq1HoFm7?Zeoauf3s z(^HGU0z!QG1t9;!oG*oLj1tffkIw#Q7GN*}8kU-qQXEoQ00|i@7A~ghS|@?x(j<6D hfCDuh$+1Fc!AYFsv4^b{AJ_!}i6t43fM8H!006^4scZlM literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.Binding.yaml b/testdata/v1.33.0/core.v1.Binding.yaml new file mode 100644 index 0000000000..8246c2ce3e --- /dev/null +++ b/testdata/v1.33.0/core.v1.Binding.yaml @@ -0,0 +1,42 @@ +apiVersion: v1 +kind: Binding +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +target: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue diff --git a/testdata/v1.33.0/core.v1.ComponentStatus.json b/testdata/v1.33.0/core.v1.ComponentStatus.json new file mode 100644 index 0000000000..dfef6b1387 --- /dev/null +++ b/testdata/v1.33.0/core.v1.ComponentStatus.json @@ -0,0 +1,54 @@ +{ + "kind": "ComponentStatus", + "apiVersion": "v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "message": "messageValue", + "error": "errorValue" + } + ] +} \ No newline at end of file diff --git a/testdata/v1.33.0/core.v1.ComponentStatus.pb b/testdata/v1.33.0/core.v1.ComponentStatus.pb new file mode 100644 index 0000000000000000000000000000000000000000..1c6f1fe2e928b5aaa01f99f3195948eab0c32562 GIT binary patch literal 441 zcmZ8d!AiqG5KYp8$+jkOQIH(>*pmi?;IZCRL{L0<+t_JYv)K*1iBQEK@CQ75_7nUA zq5mKrJo^W_-H=+my_tFQ=FKZI?Vugx-Rn){Vx`J@nzBK+qDdC~p97 z%|L*nHJo*=BwS8)MQ>UP+0?+Nr%V)fW8^n%Vo|!SK+8rM9w^PEu-$B9?E8zCueW~e z92@ld{cg}Xy52td+>9bx zv2`PRZsw|J$^_-?-WaqxPi~HeB^7iA$~JH)tL6Wl{p7z4F+Y4RetNN!8ZqD#eL1h% sWDfhtdw3kjy2)2b*icgx)Ex;Aw2j_gONJ&{ZI0WDAW%xSJ`#sGzZ{8~5&!@I literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.ComponentStatus.yaml b/testdata/v1.33.0/core.v1.ComponentStatus.yaml new file mode 100644 index 0000000000..1e75b6f620 --- /dev/null +++ b/testdata/v1.33.0/core.v1.ComponentStatus.yaml @@ -0,0 +1,39 @@ +apiVersion: v1 +conditions: +- error: errorValue + message: messageValue + status: statusValue + type: typeValue +kind: ComponentStatus +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue diff --git a/testdata/v1.33.0/core.v1.ConfigMap.json b/testdata/v1.33.0/core.v1.ConfigMap.json new file mode 100644 index 0000000000..4362bb277c --- /dev/null +++ b/testdata/v1.33.0/core.v1.ConfigMap.json @@ -0,0 +1,53 @@ +{ + "kind": "ConfigMap", + "apiVersion": "v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "immutable": true, + "data": { + "dataKey": "dataValue" + }, + "binaryData": { + "binaryDataKey": "Aw==" + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/core.v1.ConfigMap.pb b/testdata/v1.33.0/core.v1.ConfigMap.pb new file mode 100644 index 0000000000000000000000000000000000000000..10e9c13b6c8c90e95cfe79baf764905daa29e3eb GIT binary patch literal 427 zcmd0{C}!Z|=VB@|6ykKw&r8cp_f0Gi>SyM9z{JIwmzbLxmY7qTDkPYmnwMIXSd!`o z6O!Ts$rcwRCPS1c@fN4%r1@m#WrKBSag=7JfLTT&MXAO4rA0t>sYS(^`FUVb3w9?C zjeqX1#m@4aB=1&CZ*;Sd#6?kaYLA39Z5=De2IB^`6Y=ZKtsUN z0!VzYnk-W;&g{%Qh{aL}_bb6&qs5!0C r@Q?rpst6Z*N@7VO$fKMf2G}MkAuiq|plgaMU7&J|%nFQB3`z_Da@3Go literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.ConfigMap.yaml b/testdata/v1.33.0/core.v1.ConfigMap.yaml new file mode 100644 index 0000000000..ecb3a3f7d5 --- /dev/null +++ b/testdata/v1.33.0/core.v1.ConfigMap.yaml @@ -0,0 +1,39 @@ +apiVersion: v1 +binaryData: + binaryDataKey: Aw== +data: + dataKey: dataValue +immutable: true +kind: ConfigMap +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue diff --git a/testdata/v1.33.0/core.v1.CreateOptions.json b/testdata/v1.33.0/core.v1.CreateOptions.json new file mode 100644 index 0000000000..afcbef2f66 --- /dev/null +++ b/testdata/v1.33.0/core.v1.CreateOptions.json @@ -0,0 +1,9 @@ +{ + "kind": "CreateOptions", + "apiVersion": "v1", + "dryRun": [ + "dryRunValue" + ], + "fieldManager": "fieldManagerValue", + "fieldValidation": "fieldValidationValue" +} \ No newline at end of file diff --git a/testdata/v1.33.0/core.v1.CreateOptions.pb b/testdata/v1.33.0/core.v1.CreateOptions.pb new file mode 100644 index 0000000000000000000000000000000000000000..32fe071eac6a6912375d5a782e7ad89f3db1d4d5 GIT binary patch literal 85 zcmd0{C}!Xi=3*){6ykL*N=+bGbt?Es&;C%+2iMP zC2~$o^z`*=qAs}F13o7)<@%IP;8qdZju?ZG2q80)nISeEmEN}I`Uv? zUrbctOuGWS>0Kw%dAxMOn)>E}2NzVCDpm|i+~JzLf79~2)$Py{>XK||7olJ%b+)`M k4unircZL6t6520)#mGZ}N@XT{l3O`AB1(132y(FV1D<96KmY&$ literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.Endpoints.yaml b/testdata/v1.33.0/core.v1.Endpoints.yaml new file mode 100644 index 0000000000..e41c409995 --- /dev/null +++ b/testdata/v1.33.0/core.v1.Endpoints.yaml @@ -0,0 +1,64 @@ +apiVersion: v1 +kind: Endpoints +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +subsets: +- addresses: + - hostname: hostnameValue + ip: ipValue + nodeName: nodeNameValue + targetRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue + notReadyAddresses: + - hostname: hostnameValue + ip: ipValue + nodeName: nodeNameValue + targetRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue + ports: + - appProtocol: appProtocolValue + name: nameValue + port: 2 + protocol: protocolValue diff --git a/testdata/v1.33.0/core.v1.Event.json b/testdata/v1.33.0/core.v1.Event.json new file mode 100644 index 0000000000..84f731fc0a --- /dev/null +++ b/testdata/v1.33.0/core.v1.Event.json @@ -0,0 +1,82 @@ +{ + "kind": "Event", + "apiVersion": "v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "involvedObject": { + "kind": "kindValue", + "namespace": "namespaceValue", + "name": "nameValue", + "uid": "uidValue", + "apiVersion": "apiVersionValue", + "resourceVersion": "resourceVersionValue", + "fieldPath": "fieldPathValue" + }, + "reason": "reasonValue", + "message": "messageValue", + "source": { + "component": "componentValue", + "host": "hostValue" + }, + "firstTimestamp": "2006-01-01T01:01:01Z", + "lastTimestamp": "2007-01-01T01:01:01Z", + "count": 8, + "type": "typeValue", + "eventTime": "2010-01-01T01:01:01.000010Z", + "series": { + "count": 1, + "lastObservedTime": "2002-01-01T01:01:01.000002Z" + }, + "action": "actionValue", + "related": { + "kind": "kindValue", + "namespace": "namespaceValue", + "name": "nameValue", + "uid": "uidValue", + "apiVersion": "apiVersionValue", + "resourceVersion": "resourceVersionValue", + "fieldPath": "fieldPathValue" + }, + "reportingComponent": "reportingComponentValue", + "reportingInstance": "reportingInstanceValue" +} \ No newline at end of file diff --git a/testdata/v1.33.0/core.v1.Event.pb b/testdata/v1.33.0/core.v1.Event.pb new file mode 100644 index 0000000000000000000000000000000000000000..2c034a995ee2fc1b3fbb997b71d0786722c41c7e GIT binary patch literal 766 zcmcgqJx{_w7%pG2y+WytQB${$OiE%xm<+~2G=v!Az;=bB6w0-^Ye~TP2b_#?b#T^S zpsSM!iHVbmgE%m|IO}l*MB?D&_Pn3>JkNWr92I~JqMZ#bvC~1=*MqDO{;bnCu<~_|#Ahm29KCFN9 zH>PYdY3SLrMAjp@2uas%3>~}22=YCr5fdca5JL+Qp3oH68|k0W*XP$5Ov79MGo}hz zwhTEndf4?sXYz3nJw7R@G%%-5a8s=rvf7-TeA8c?ck+jB8Hd#F@uxHN=Wrs?VBlHDcG(Cy%cp)Ii}`4eRalGs20c#f-QrAkVS uXe_+AAH>whv?;^t)U4)z2_-88c`os7Y;FG#)mxqxb}{uK9)DV0FoZ7>bq}rp literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.Event.yaml b/testdata/v1.33.0/core.v1.Event.yaml new file mode 100644 index 0000000000..79851ea30a --- /dev/null +++ b/testdata/v1.33.0/core.v1.Event.yaml @@ -0,0 +1,66 @@ +action: actionValue +apiVersion: v1 +count: 8 +eventTime: "2010-01-01T01:01:01.000010Z" +firstTimestamp: "2006-01-01T01:01:01Z" +involvedObject: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue +kind: Event +lastTimestamp: "2007-01-01T01:01:01Z" +message: messageValue +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +reason: reasonValue +related: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue +reportingComponent: reportingComponentValue +reportingInstance: reportingInstanceValue +series: + count: 1 + lastObservedTime: "2002-01-01T01:01:01.000002Z" +source: + component: componentValue + host: hostValue +type: typeValue diff --git a/testdata/v1.33.0/core.v1.GetOptions.json b/testdata/v1.33.0/core.v1.GetOptions.json new file mode 100644 index 0000000000..1cb1f261ca --- /dev/null +++ b/testdata/v1.33.0/core.v1.GetOptions.json @@ -0,0 +1,5 @@ +{ + "kind": "GetOptions", + "apiVersion": "v1", + "resourceVersion": "resourceVersionValue" +} \ No newline at end of file diff --git a/testdata/v1.33.0/core.v1.GetOptions.pb b/testdata/v1.33.0/core.v1.GetOptions.pb new file mode 100644 index 0000000000000000000000000000000000000000..5588495db353f54492c4d75d9dfe49be281a0b52 GIT binary patch literal 50 zcmd0{C}!Xi;9@E>6ykDEE%7fX$;{6y782tUDM~HQFD*(=4NEO528x9x=9H#NF(@$r E0Ao82*#H0l literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.GetOptions.yaml b/testdata/v1.33.0/core.v1.GetOptions.yaml new file mode 100644 index 0000000000..e84bdbdc49 --- /dev/null +++ b/testdata/v1.33.0/core.v1.GetOptions.yaml @@ -0,0 +1,3 @@ +apiVersion: v1 +kind: GetOptions +resourceVersion: resourceVersionValue diff --git a/testdata/v1.33.0/core.v1.LimitRange.json b/testdata/v1.33.0/core.v1.LimitRange.json new file mode 100644 index 0000000000..36f5267df9 --- /dev/null +++ b/testdata/v1.33.0/core.v1.LimitRange.json @@ -0,0 +1,68 @@ +{ + "kind": "LimitRange", + "apiVersion": "v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "limits": [ + { + "type": "typeValue", + "max": { + "maxKey": "0" + }, + "min": { + "minKey": "0" + }, + "default": { + "defaultKey": "0" + }, + "defaultRequest": { + "defaultRequestKey": "0" + }, + "maxLimitRequestRatio": { + "maxLimitRequestRatioKey": "0" + } + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/core.v1.LimitRange.pb b/testdata/v1.33.0/core.v1.LimitRange.pb new file mode 100644 index 0000000000000000000000000000000000000000..f0d7e9badb65600e2f91c8dccea23a7650a4868d GIT binary patch literal 506 zcmZ8e!A`MACzY9yuY23Gv8Li7~`@@HUl!tZcWn+Y-?D1OA0)KfymR z;S)@Z2haY2ZnqYRw>R(2ynQn}>q`S1sLT&t7_yM1BNS6|->UFl0b5{5m&h}6TT>F0 zU`l5t}K@QokuMWylp literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.LimitRange.yaml b/testdata/v1.33.0/core.v1.LimitRange.yaml new file mode 100644 index 0000000000..982a09ecb6 --- /dev/null +++ b/testdata/v1.33.0/core.v1.LimitRange.yaml @@ -0,0 +1,47 @@ +apiVersion: v1 +kind: LimitRange +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + limits: + - default: + defaultKey: "0" + defaultRequest: + defaultRequestKey: "0" + max: + maxKey: "0" + maxLimitRequestRatio: + maxLimitRequestRatioKey: "0" + min: + minKey: "0" + type: typeValue diff --git a/testdata/v1.33.0/core.v1.ListOptions.json b/testdata/v1.33.0/core.v1.ListOptions.json new file mode 100644 index 0000000000..066b25b45f --- /dev/null +++ b/testdata/v1.33.0/core.v1.ListOptions.json @@ -0,0 +1,14 @@ +{ + "kind": "ListOptions", + "apiVersion": "v1", + "labelSelector": "labelSelectorValue", + "fieldSelector": "fieldSelectorValue", + "watch": true, + "allowWatchBookmarks": true, + "resourceVersion": "resourceVersionValue", + "resourceVersionMatch": "resourceVersionMatchValue", + "timeoutSeconds": 5, + "limit": 7, + "continue": "continueValue", + "sendInitialEvents": true +} \ No newline at end of file diff --git a/testdata/v1.33.0/core.v1.ListOptions.pb b/testdata/v1.33.0/core.v1.ListOptions.pb new file mode 100644 index 0000000000000000000000000000000000000000..ea28506449565b01ab9c35e5e53805e78fffd328 GIT binary patch literal 143 zcmd0{C}!XiZ@)nK(?cj8UX&nwByD@_Fpc`yb^qAB%FEJ@A) MOGYqCF(@$r07Gyv1^@s6 literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.ListOptions.yaml b/testdata/v1.33.0/core.v1.ListOptions.yaml new file mode 100644 index 0000000000..7dac63dd34 --- /dev/null +++ b/testdata/v1.33.0/core.v1.ListOptions.yaml @@ -0,0 +1,12 @@ +allowWatchBookmarks: true +apiVersion: v1 +continue: continueValue +fieldSelector: fieldSelectorValue +kind: ListOptions +labelSelector: labelSelectorValue +limit: 7 +resourceVersion: resourceVersionValue +resourceVersionMatch: resourceVersionMatchValue +sendInitialEvents: true +timeoutSeconds: 5 +watch: true diff --git a/testdata/v1.33.0/core.v1.Namespace.json b/testdata/v1.33.0/core.v1.Namespace.json new file mode 100644 index 0000000000..d04cbb9fe9 --- /dev/null +++ b/testdata/v1.33.0/core.v1.Namespace.json @@ -0,0 +1,63 @@ +{ + "kind": "Namespace", + "apiVersion": "v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "finalizers": [ + "finalizersValue" + ] + }, + "status": { + "phase": "phaseValue", + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "lastTransitionTime": "2004-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/core.v1.Namespace.pb b/testdata/v1.33.0/core.v1.Namespace.pb new file mode 100644 index 0000000000000000000000000000000000000000..665796b15032e0d1eacf1fb04d995c612f1f50c9 GIT binary patch literal 479 zcmZ8eyH3ME5VVs>#GBw4ivqcH=?W|%Sx7V~2|^So1>HK?gu~9+y0ei2;s^K(YCeII z4k`bDD5&`ZIG^)Uy4l&i+1a@yk_Pmk@o?f=S2!b?)PL!luj-gPjnfyOE%UhJQO6eQjBOwLb8l&HrngA+l$wq_m*Q^DD?LG zsn9jt9)Xo&OsO2u-0jp*zleRXk@Kv;LW$_MvsLSv`%|zI#_Pr2#=pOI6Z9}=+eVJf z$P~Q^ACO7GF~T9hYGuUy#YXehjN+vIatL?#qCISd0G40YzsPqP%c9ayXr@zGOay(hHv}> D5wxYr literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.Namespace.yaml b/testdata/v1.33.0/core.v1.Namespace.yaml new file mode 100644 index 0000000000..d262f3fae2 --- /dev/null +++ b/testdata/v1.33.0/core.v1.Namespace.yaml @@ -0,0 +1,45 @@ +apiVersion: v1 +kind: Namespace +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + finalizers: + - finalizersValue +status: + conditions: + - lastTransitionTime: "2004-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue + phase: phaseValue diff --git a/testdata/v1.33.0/core.v1.Node.json b/testdata/v1.33.0/core.v1.Node.json new file mode 100644 index 0000000000..81dae37e4c --- /dev/null +++ b/testdata/v1.33.0/core.v1.Node.json @@ -0,0 +1,176 @@ +{ + "kind": "Node", + "apiVersion": "v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "podCIDR": "podCIDRValue", + "podCIDRs": [ + "podCIDRsValue" + ], + "providerID": "providerIDValue", + "unschedulable": true, + "taints": [ + { + "key": "keyValue", + "value": "valueValue", + "effect": "effectValue", + "timeAdded": "2004-01-01T01:01:01Z" + } + ], + "configSource": { + "configMap": { + "namespace": "namespaceValue", + "name": "nameValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "kubeletConfigKey": "kubeletConfigKeyValue" + } + }, + "externalID": "externalIDValue" + }, + "status": { + "capacity": { + "capacityKey": "0" + }, + "allocatable": { + "allocatableKey": "0" + }, + "phase": "phaseValue", + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "lastHeartbeatTime": "2003-01-01T01:01:01Z", + "lastTransitionTime": "2004-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ], + "addresses": [ + { + "type": "typeValue", + "address": "addressValue" + } + ], + "daemonEndpoints": { + "kubeletEndpoint": { + "Port": 1 + } + }, + "nodeInfo": { + "machineID": "machineIDValue", + "systemUUID": "systemUUIDValue", + "bootID": "bootIDValue", + "kernelVersion": "kernelVersionValue", + "osImage": "osImageValue", + "containerRuntimeVersion": "containerRuntimeVersionValue", + "kubeletVersion": "kubeletVersionValue", + "kubeProxyVersion": "kubeProxyVersionValue", + "operatingSystem": "operatingSystemValue", + "architecture": "architectureValue", + "swap": { + "capacity": 1 + } + }, + "images": [ + { + "names": [ + "namesValue" + ], + "sizeBytes": 2 + } + ], + "volumesInUse": [ + "volumesInUseValue" + ], + "volumesAttached": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "config": { + "assigned": { + "configMap": { + "namespace": "namespaceValue", + "name": "nameValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "kubeletConfigKey": "kubeletConfigKeyValue" + } + }, + "active": { + "configMap": { + "namespace": "namespaceValue", + "name": "nameValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "kubeletConfigKey": "kubeletConfigKeyValue" + } + }, + "lastKnownGood": { + "configMap": { + "namespace": "namespaceValue", + "name": "nameValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "kubeletConfigKey": "kubeletConfigKeyValue" + } + }, + "error": "errorValue" + }, + "runtimeHandlers": [ + { + "name": "nameValue", + "features": { + "recursiveReadOnlyMounts": true, + "userNamespaces": true + } + } + ], + "features": { + "supplementalGroupsPolicy": true + } + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/core.v1.Node.pb b/testdata/v1.33.0/core.v1.Node.pb new file mode 100644 index 0000000000000000000000000000000000000000..86cc18929fa4aae8e65969882baf98c773b5fa1d GIT binary patch literal 1306 zcmcJOzi$&U6vuOE5Q&rKhiN4^bwD?sgj6C`sxqdPPztK5&@goK-Myr4F80axMGc6F zje-AxnLmLY5K=e(0K~xDodI5am-JMzcC(+Kzy7|@d!Fv=5+S5Ke@ZLIG6MRJke_8z z6Kn>rSeydwOhABQ298%Dx4Ask2@A6nZ&O1&e!<1m-tem_kL;?ur9jJ6VIC;WrLfWc z`~7P5>f`Uvm3HX}SD&uGSA`X)+tuYrY=C9G9)p_p(q%mWHO+eWIZOUX>|H{65TgJm0 zeqH_DXqUPu263cM7fD8@S0Uv$Z~JYX25S-)>KBJJ5*Zx~4u{zzEx0tG(8=J?2HaMn zo6WeXzZq7=9CV}txnM!F7BF(_unr0+tU<#0p>u8 zF`r;dtbT7Zx1G^)f7~OK)I)~Dz|CUWxDDd$(rs*59Ltay7R0a$yCgYhIv<*6q-Iu} zXkBA((_9mI{`q!|Ja3Be>k6382dLY?>C@OC>&Smp6l$<2Le!a37x7n}-dBe-XDmGD z0&NJT=l06khcda7v7mRN>fVW}M?fi=eeR%B#8s&}ZRY|(yCtvm4_)NL AIsgCw literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.Node.yaml b/testdata/v1.33.0/core.v1.Node.yaml new file mode 100644 index 0000000000..0d2da7a4bb --- /dev/null +++ b/testdata/v1.33.0/core.v1.Node.yaml @@ -0,0 +1,124 @@ +apiVersion: v1 +kind: Node +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + configSource: + configMap: + kubeletConfigKey: kubeletConfigKeyValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue + externalID: externalIDValue + podCIDR: podCIDRValue + podCIDRs: + - podCIDRsValue + providerID: providerIDValue + taints: + - effect: effectValue + key: keyValue + timeAdded: "2004-01-01T01:01:01Z" + value: valueValue + unschedulable: true +status: + addresses: + - address: addressValue + type: typeValue + allocatable: + allocatableKey: "0" + capacity: + capacityKey: "0" + conditions: + - lastHeartbeatTime: "2003-01-01T01:01:01Z" + lastTransitionTime: "2004-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue + config: + active: + configMap: + kubeletConfigKey: kubeletConfigKeyValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue + assigned: + configMap: + kubeletConfigKey: kubeletConfigKeyValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue + error: errorValue + lastKnownGood: + configMap: + kubeletConfigKey: kubeletConfigKeyValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue + daemonEndpoints: + kubeletEndpoint: + Port: 1 + features: + supplementalGroupsPolicy: true + images: + - names: + - namesValue + sizeBytes: 2 + nodeInfo: + architecture: architectureValue + bootID: bootIDValue + containerRuntimeVersion: containerRuntimeVersionValue + kernelVersion: kernelVersionValue + kubeProxyVersion: kubeProxyVersionValue + kubeletVersion: kubeletVersionValue + machineID: machineIDValue + operatingSystem: operatingSystemValue + osImage: osImageValue + swap: + capacity: 1 + systemUUID: systemUUIDValue + phase: phaseValue + runtimeHandlers: + - features: + recursiveReadOnlyMounts: true + userNamespaces: true + name: nameValue + volumesAttached: + - devicePath: devicePathValue + name: nameValue + volumesInUse: + - volumesInUseValue diff --git a/testdata/v1.33.0/core.v1.NodeProxyOptions.json b/testdata/v1.33.0/core.v1.NodeProxyOptions.json new file mode 100644 index 0000000000..c644945314 --- /dev/null +++ b/testdata/v1.33.0/core.v1.NodeProxyOptions.json @@ -0,0 +1,5 @@ +{ + "kind": "NodeProxyOptions", + "apiVersion": "v1", + "path": "pathValue" +} \ No newline at end of file diff --git a/testdata/v1.33.0/core.v1.NodeProxyOptions.pb b/testdata/v1.33.0/core.v1.NodeProxyOptions.pb new file mode 100644 index 0000000000000000000000000000000000000000..25eb5071a4269b5a64fc4b73a9faa9f976ffe494 GIT binary patch literal 45 zcmd0{C}!Xi<6^f1uS>{gp7Zd-7KO)?4q#^FH-d&rd}S4q)r@ zCbmYD3nnBD<%1|#E+~Gs3%_kaBP0v@fCNj5cV;xCoJe{vGufSFSH#3KE>2s};QTHN z=lXdV8FTXvvjdk|qkZ_4JiNz5e3+KYqDk)rM;I)8D_U)d(IPLL(qk8iIvB2^H*ZI!;Y&*OKXF=wGkY!~%Ac{OgA#H?J%2|7i*d(J`UBJ-vh{BM`RnqS^pcDM84M)(7{TyoCJTIahZXY9j4DCxjsk1w#yiE`L02(oo z7iPC1vs#>6(4nCpM=X@4Rb2QTBInh7Gs#{|*R`Q3D8J0$C?D$0p}mMgCZiNR3~Zs0 z)4A<(WlkfGqCnf-#!|)8%U)|vSDb}2{ndZ1%)1Se-A4Vd5bQ|8XH+Ff) z)#0|Y%Y-M`Stuz#&)Dgf%Q!*(R;&*j2yUZsRnpJU6f@NxBdWuED1-MZXMmilki*F) zWCfshfsE4?)ZHPl zenx+x^-Hj0%KM0fetI_*QOYg5Z^5qdd0$G-rb|ino3+1bG-Rq8Or<0as!k58HY-KX zwut9ZA(8Tz4OFbd|&MDSu%(} zz`vlTrlO!lNcjm!h=Mvj1i%$1^p*F7Kb)KiYIcSWWm@MntmaWY5~bE^D(I+c;Vf&@){#)9aq@ zc6ZONcM%dXLW+CSC>zCBP2sotDmByOSVqm{VMrmiexOU%f6_YJw^|ko}u%v%9zVMyXRs%=6Z&0@zN6qYU%Vlum9zZ zeWj5F{QAj*xAALMD9@6j%N*M?eA`_Y zZSpQ#HR5ej3cBI4W?WtQ1Sxu~=`uf=cao$pv#@s}{M2Y5LscPJkGZRn8l`%ut&)Sj z=C+x?WV^m*iuu#V6@iecQT34FH9ceA@|oL;a8{NVF$>k4!#j(8I|=oyq|g_kK@H3B z4Gk9%3%qcQ6quzuwqg0A8$_gR26XQP@e)CaRo`2|e zgDMZ@o*7(Fq5>t6TMak+GlnVFT9yZyg^g!PN!NVMlkpIhT)Y_K?izfBEX%llnhcr` zEpVe*ilDE|5ZbgYUo+6{#2Y~ooS`cT3`hyAV0vFEbsZ3v0!o)IofCUnO7-mv>W-|f z8M>&v0ncp3alz|oZsOpk;1%p6ua`ay={I4K6ot9PtLQUHWx_-FAZV6s(`c^8i&Dq> z%0r#qh8n@uwhhmZEHf)c=bJqRYO+gZ(su2hBaoK$nWb4i|G5M6B(EFZ<#;lh3w|%w z=Xt$SYHH06!t$)GhhAI;-wad|Z@LNSnH_yQS8^AQKOA~*!?%It+IW1dX`!RYdh4Fg zgf|-m`MBfSJ~|zAwx{hbLO`sn6zeH8uxeBii(dE;7;?D5c(oxd`^L(&?B$YEY06gh6wZSAHKZ_4&XO z^tDz$Mh=M~Px-!UG^h^EY^!6kOI~ZfxeX==4leoEXAPf1HbMkx(67w~c;K2DIW@0-~_ z`_zd8%a6N&jUT4SOaEsLrci^AfecC!9h-9=5BxBGS~-HjQWvAy0GVge7YBqhIyOfQ;0~sf2O&6YnW^}|h#~Rwg$4SC7X~wm~I6z54Q+Y~C>lm#B9QqV0= z>Rf%66fNWn=b6dx8G>t{gK`0%qBa?Nt5eNpfT>uXg+u)nymdVv3=p?@5xxc;aNkIg z{|?P~G=gx7)t&roZBJpnFxB!n_n7NwRum|T73~7dyE2MnUe9q%JU=kDHu+rgW~@wk z46pEdSGNeTA=CA1kPocQitYlhLjg}eJ&DzBz(3ODHjp}5BD;($b{l`t3+Q?Ge$+pY zlJ|k^De0ueKtVhJ5=2ZXp|7@0yS|!`xT%8Mb>+!#2IeFFmS>=jucZ31E=Wt8U{|uogN(w8x<*R+>6k27&t{a zy=3lolO z*skHP_g^}`1&8lJm6SMF<(XR1fnq*ibMYJvx$905(C+~5!x+!j>6mG?tvK)f9*kq` z?i*d!KjQ;{e*)%s80+#>rW6cbOX1zHjhWC6-k1fEU~pf2J@t!#s%|0A%EVfSSr;u2 z?>fAep*6z0iM=J&7_m+U(d4NXz7as}NzzuwgNh57pz`G)snYza5aM+3aT4c8bY9K}WbqQ)?}gk3 z-|qeEtq1saFL}jR#uT;Yg^v|0IlRXUGAVqZ69<&Oe^qW;mUE{S;@EnWN5x4t|MXLQ zWuIkCJiC4DvcY)9WFG;ui$Vj}DFo zz7&n`ujxR>7Zc7qByU&JO%-62U{qky k;@~*@=6WBC0D}Re1-k=>2V)R-aY<2XVlG&b6oV220OGb6GXMYp literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.PodLogOptions.yaml b/testdata/v1.33.0/core.v1.PodLogOptions.yaml new file mode 100644 index 0000000000..e92f94c140 --- /dev/null +++ b/testdata/v1.33.0/core.v1.PodLogOptions.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +container: containerValue +follow: true +insecureSkipTLSVerifyBackend: true +kind: PodLogOptions +limitBytes: 8 +previous: true +sinceSeconds: 4 +sinceTime: "2005-01-01T01:01:01Z" +stream: streamValue +tailLines: 7 +timestamps: true diff --git a/testdata/v1.33.0/core.v1.PodPortForwardOptions.json b/testdata/v1.33.0/core.v1.PodPortForwardOptions.json new file mode 100644 index 0000000000..e977fc0dfc --- /dev/null +++ b/testdata/v1.33.0/core.v1.PodPortForwardOptions.json @@ -0,0 +1,7 @@ +{ + "kind": "PodPortForwardOptions", + "apiVersion": "v1", + "ports": [ + 1 + ] +} \ No newline at end of file diff --git a/testdata/v1.33.0/core.v1.PodPortForwardOptions.pb b/testdata/v1.33.0/core.v1.PodPortForwardOptions.pb new file mode 100644 index 0000000000000000000000000000000000000000..25eceb4a1b1dd107a1d556b4f122ac696a546b69 GIT binary patch literal 41 wcmd0{C}!Z2=3*){6cP={PYK8`Dsjs%Do-p*@h>RJ%+D(pV&Y(wVo+iL0PX4u_y7O^ literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.PodPortForwardOptions.yaml b/testdata/v1.33.0/core.v1.PodPortForwardOptions.yaml new file mode 100644 index 0000000000..326dfd43f1 --- /dev/null +++ b/testdata/v1.33.0/core.v1.PodPortForwardOptions.yaml @@ -0,0 +1,4 @@ +apiVersion: v1 +kind: PodPortForwardOptions +ports: +- 1 diff --git a/testdata/v1.33.0/core.v1.PodProxyOptions.json b/testdata/v1.33.0/core.v1.PodProxyOptions.json new file mode 100644 index 0000000000..5a195a6b5d --- /dev/null +++ b/testdata/v1.33.0/core.v1.PodProxyOptions.json @@ -0,0 +1,5 @@ +{ + "kind": "PodProxyOptions", + "apiVersion": "v1", + "path": "pathValue" +} \ No newline at end of file diff --git a/testdata/v1.33.0/core.v1.PodProxyOptions.pb b/testdata/v1.33.0/core.v1.PodProxyOptions.pb new file mode 100644 index 0000000000000000000000000000000000000000..c17c1cd559c3805327ec5b418887d1067f6e1e83 GIT binary patch literal 44 zcmd0{C}!Xiuc-7dD9OyvD;DDB;w(rk$p}l#DNU7PP+|Z84-X7c literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.PodProxyOptions.yaml b/testdata/v1.33.0/core.v1.PodProxyOptions.yaml new file mode 100644 index 0000000000..bc3db8ce4d --- /dev/null +++ b/testdata/v1.33.0/core.v1.PodProxyOptions.yaml @@ -0,0 +1,3 @@ +apiVersion: v1 +kind: PodProxyOptions +path: pathValue diff --git a/testdata/v1.33.0/core.v1.PodStatusResult.json b/testdata/v1.33.0/core.v1.PodStatusResult.json new file mode 100644 index 0000000000..5572b42f7b --- /dev/null +++ b/testdata/v1.33.0/core.v1.PodStatusResult.json @@ -0,0 +1,364 @@ +{ + "kind": "PodStatusResult", + "apiVersion": "v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "status": { + "observedGeneration": 17, + "phase": "phaseValue", + "conditions": [ + { + "type": "typeValue", + "observedGeneration": 7, + "status": "statusValue", + "lastProbeTime": "2003-01-01T01:01:01Z", + "lastTransitionTime": "2004-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ], + "message": "messageValue", + "reason": "reasonValue", + "nominatedNodeName": "nominatedNodeNameValue", + "hostIP": "hostIPValue", + "hostIPs": [ + { + "ip": "ipValue" + } + ], + "podIP": "podIPValue", + "podIPs": [ + { + "ip": "ipValue" + } + ], + "startTime": "2007-01-01T01:01:01Z", + "initContainerStatuses": [ + { + "name": "nameValue", + "state": { + "waiting": { + "reason": "reasonValue", + "message": "messageValue" + }, + "running": { + "startedAt": "2001-01-01T01:01:01Z" + }, + "terminated": { + "exitCode": 1, + "signal": 2, + "reason": "reasonValue", + "message": "messageValue", + "startedAt": "2005-01-01T01:01:01Z", + "finishedAt": "2006-01-01T01:01:01Z", + "containerID": "containerIDValue" + } + }, + "lastState": { + "waiting": { + "reason": "reasonValue", + "message": "messageValue" + }, + "running": { + "startedAt": "2001-01-01T01:01:01Z" + }, + "terminated": { + "exitCode": 1, + "signal": 2, + "reason": "reasonValue", + "message": "messageValue", + "startedAt": "2005-01-01T01:01:01Z", + "finishedAt": "2006-01-01T01:01:01Z", + "containerID": "containerIDValue" + } + }, + "ready": true, + "restartCount": 5, + "image": "imageValue", + "imageID": "imageIDValue", + "containerID": "containerIDValue", + "started": true, + "allocatedResources": { + "allocatedResourcesKey": "0" + }, + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "volumeMounts": [ + { + "name": "nameValue", + "mountPath": "mountPathValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue" + } + ], + "user": { + "linux": { + "uid": 1, + "gid": 2, + "supplementalGroups": [ + 3 + ] + } + }, + "allocatedResourcesStatus": [ + { + "name": "nameValue", + "resources": [ + { + "resourceID": "resourceIDValue", + "health": "healthValue" + } + ] + } + ], + "stopSignal": "stopSignalValue" + } + ], + "containerStatuses": [ + { + "name": "nameValue", + "state": { + "waiting": { + "reason": "reasonValue", + "message": "messageValue" + }, + "running": { + "startedAt": "2001-01-01T01:01:01Z" + }, + "terminated": { + "exitCode": 1, + "signal": 2, + "reason": "reasonValue", + "message": "messageValue", + "startedAt": "2005-01-01T01:01:01Z", + "finishedAt": "2006-01-01T01:01:01Z", + "containerID": "containerIDValue" + } + }, + "lastState": { + "waiting": { + "reason": "reasonValue", + "message": "messageValue" + }, + "running": { + "startedAt": "2001-01-01T01:01:01Z" + }, + "terminated": { + "exitCode": 1, + "signal": 2, + "reason": "reasonValue", + "message": "messageValue", + "startedAt": "2005-01-01T01:01:01Z", + "finishedAt": "2006-01-01T01:01:01Z", + "containerID": "containerIDValue" + } + }, + "ready": true, + "restartCount": 5, + "image": "imageValue", + "imageID": "imageIDValue", + "containerID": "containerIDValue", + "started": true, + "allocatedResources": { + "allocatedResourcesKey": "0" + }, + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "volumeMounts": [ + { + "name": "nameValue", + "mountPath": "mountPathValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue" + } + ], + "user": { + "linux": { + "uid": 1, + "gid": 2, + "supplementalGroups": [ + 3 + ] + } + }, + "allocatedResourcesStatus": [ + { + "name": "nameValue", + "resources": [ + { + "resourceID": "resourceIDValue", + "health": "healthValue" + } + ] + } + ], + "stopSignal": "stopSignalValue" + } + ], + "qosClass": "qosClassValue", + "ephemeralContainerStatuses": [ + { + "name": "nameValue", + "state": { + "waiting": { + "reason": "reasonValue", + "message": "messageValue" + }, + "running": { + "startedAt": "2001-01-01T01:01:01Z" + }, + "terminated": { + "exitCode": 1, + "signal": 2, + "reason": "reasonValue", + "message": "messageValue", + "startedAt": "2005-01-01T01:01:01Z", + "finishedAt": "2006-01-01T01:01:01Z", + "containerID": "containerIDValue" + } + }, + "lastState": { + "waiting": { + "reason": "reasonValue", + "message": "messageValue" + }, + "running": { + "startedAt": "2001-01-01T01:01:01Z" + }, + "terminated": { + "exitCode": 1, + "signal": 2, + "reason": "reasonValue", + "message": "messageValue", + "startedAt": "2005-01-01T01:01:01Z", + "finishedAt": "2006-01-01T01:01:01Z", + "containerID": "containerIDValue" + } + }, + "ready": true, + "restartCount": 5, + "image": "imageValue", + "imageID": "imageIDValue", + "containerID": "containerIDValue", + "started": true, + "allocatedResources": { + "allocatedResourcesKey": "0" + }, + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "volumeMounts": [ + { + "name": "nameValue", + "mountPath": "mountPathValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue" + } + ], + "user": { + "linux": { + "uid": 1, + "gid": 2, + "supplementalGroups": [ + 3 + ] + } + }, + "allocatedResourcesStatus": [ + { + "name": "nameValue", + "resources": [ + { + "resourceID": "resourceIDValue", + "health": "healthValue" + } + ] + } + ], + "stopSignal": "stopSignalValue" + } + ], + "resize": "resizeValue", + "resourceClaimStatuses": [ + { + "name": "nameValue", + "resourceClaimName": "resourceClaimNameValue" + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/core.v1.PodStatusResult.pb b/testdata/v1.33.0/core.v1.PodStatusResult.pb new file mode 100644 index 0000000000000000000000000000000000000000..28031b857af2784ea63423d880af029bfb4054e1 GIT binary patch literal 2204 zcmeHJF>ljQ5RTJAlS`Vo7Ojdw2$=(7z`%--y1>A~01QkFone5>vlBb8cWJlt-M#Pb-Fi;Q17d@Vwm6QABAUQCU-4a#XqBDy+KnYE!+2Be?3ShJFP>$e%-QYRXv zn7K-_PlZ&9I7B}hN+!6{HfP$U(*BDdZ>ROb3Q8{zKA_Zr-XfGe;!scCqPs>V5!DID zf*RpmV4et~%zExy`D|W+@)qMsU^C0#8fVj}lYr$DS<;$XSYKzHcx(?7R5(vG2dX~d zWP^rEVbnx0y#FYD^IsSX@9=&9&y-%U5sZ4Syt^ADm1#{w@&1FhE@Nk0302f*HGp71 zWLo28C`Y3+Mn$TAsNg1I|9*df*jbcDC8R{A#k8x~35m%n_vVZ_@onW@8;M1& literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.PodStatusResult.yaml b/testdata/v1.33.0/core.v1.PodStatusResult.yaml new file mode 100644 index 0000000000..b3a60c37fc --- /dev/null +++ b/testdata/v1.33.0/core.v1.PodStatusResult.yaml @@ -0,0 +1,249 @@ +apiVersion: v1 +kind: PodStatusResult +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +status: + conditions: + - lastProbeTime: "2003-01-01T01:01:01Z" + lastTransitionTime: "2004-01-01T01:01:01Z" + message: messageValue + observedGeneration: 7 + reason: reasonValue + status: statusValue + type: typeValue + containerStatuses: + - allocatedResources: + allocatedResourcesKey: "0" + allocatedResourcesStatus: + - name: nameValue + resources: + - health: healthValue + resourceID: resourceIDValue + containerID: containerIDValue + image: imageValue + imageID: imageIDValue + lastState: + running: + startedAt: "2001-01-01T01:01:01Z" + terminated: + containerID: containerIDValue + exitCode: 1 + finishedAt: "2006-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + signal: 2 + startedAt: "2005-01-01T01:01:01Z" + waiting: + message: messageValue + reason: reasonValue + name: nameValue + ready: true + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartCount: 5 + started: true + state: + running: + startedAt: "2001-01-01T01:01:01Z" + terminated: + containerID: containerIDValue + exitCode: 1 + finishedAt: "2006-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + signal: 2 + startedAt: "2005-01-01T01:01:01Z" + waiting: + message: messageValue + reason: reasonValue + stopSignal: stopSignalValue + user: + linux: + gid: 2 + supplementalGroups: + - 3 + uid: 1 + volumeMounts: + - mountPath: mountPathValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + ephemeralContainerStatuses: + - allocatedResources: + allocatedResourcesKey: "0" + allocatedResourcesStatus: + - name: nameValue + resources: + - health: healthValue + resourceID: resourceIDValue + containerID: containerIDValue + image: imageValue + imageID: imageIDValue + lastState: + running: + startedAt: "2001-01-01T01:01:01Z" + terminated: + containerID: containerIDValue + exitCode: 1 + finishedAt: "2006-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + signal: 2 + startedAt: "2005-01-01T01:01:01Z" + waiting: + message: messageValue + reason: reasonValue + name: nameValue + ready: true + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartCount: 5 + started: true + state: + running: + startedAt: "2001-01-01T01:01:01Z" + terminated: + containerID: containerIDValue + exitCode: 1 + finishedAt: "2006-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + signal: 2 + startedAt: "2005-01-01T01:01:01Z" + waiting: + message: messageValue + reason: reasonValue + stopSignal: stopSignalValue + user: + linux: + gid: 2 + supplementalGroups: + - 3 + uid: 1 + volumeMounts: + - mountPath: mountPathValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + hostIP: hostIPValue + hostIPs: + - ip: ipValue + initContainerStatuses: + - allocatedResources: + allocatedResourcesKey: "0" + allocatedResourcesStatus: + - name: nameValue + resources: + - health: healthValue + resourceID: resourceIDValue + containerID: containerIDValue + image: imageValue + imageID: imageIDValue + lastState: + running: + startedAt: "2001-01-01T01:01:01Z" + terminated: + containerID: containerIDValue + exitCode: 1 + finishedAt: "2006-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + signal: 2 + startedAt: "2005-01-01T01:01:01Z" + waiting: + message: messageValue + reason: reasonValue + name: nameValue + ready: true + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartCount: 5 + started: true + state: + running: + startedAt: "2001-01-01T01:01:01Z" + terminated: + containerID: containerIDValue + exitCode: 1 + finishedAt: "2006-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + signal: 2 + startedAt: "2005-01-01T01:01:01Z" + waiting: + message: messageValue + reason: reasonValue + stopSignal: stopSignalValue + user: + linux: + gid: 2 + supplementalGroups: + - 3 + uid: 1 + volumeMounts: + - mountPath: mountPathValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + message: messageValue + nominatedNodeName: nominatedNodeNameValue + observedGeneration: 17 + phase: phaseValue + podIP: podIPValue + podIPs: + - ip: ipValue + qosClass: qosClassValue + reason: reasonValue + resize: resizeValue + resourceClaimStatuses: + - name: nameValue + resourceClaimName: resourceClaimNameValue + startTime: "2007-01-01T01:01:01Z" diff --git a/testdata/v1.33.0/core.v1.PodTemplate.json b/testdata/v1.33.0/core.v1.PodTemplate.json new file mode 100644 index 0000000000..31840b39ae --- /dev/null +++ b/testdata/v1.33.0/core.v1.PodTemplate.json @@ -0,0 +1,1774 @@ +{ + "kind": "PodTemplate", + "apiVersion": "v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "template": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "volumes": [ + { + "name": "nameValue", + "hostPath": { + "path": "pathValue", + "type": "typeValue" + }, + "emptyDir": { + "medium": "mediumValue", + "sizeLimit": "0" + }, + "gcePersistentDisk": { + "pdName": "pdNameValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "awsElasticBlockStore": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "gitRepo": { + "repository": "repositoryValue", + "revision": "revisionValue", + "directory": "directoryValue" + }, + "secret": { + "secretName": "secretNameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "defaultMode": 3, + "optional": true + }, + "nfs": { + "server": "serverValue", + "path": "pathValue", + "readOnly": true + }, + "iscsi": { + "targetPortal": "targetPortalValue", + "iqn": "iqnValue", + "lun": 3, + "iscsiInterface": "iscsiInterfaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "portals": [ + "portalsValue" + ], + "chapAuthDiscovery": true, + "chapAuthSession": true, + "secretRef": { + "name": "nameValue" + }, + "initiatorName": "initiatorNameValue" + }, + "glusterfs": { + "endpoints": "endpointsValue", + "path": "pathValue", + "readOnly": true + }, + "persistentVolumeClaim": { + "claimName": "claimNameValue", + "readOnly": true + }, + "rbd": { + "monitors": [ + "monitorsValue" + ], + "image": "imageValue", + "fsType": "fsTypeValue", + "pool": "poolValue", + "user": "userValue", + "keyring": "keyringValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true + }, + "flexVolume": { + "driver": "driverValue", + "fsType": "fsTypeValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true, + "options": { + "optionsKey": "optionsValue" + } + }, + "cinder": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue" + } + }, + "cephfs": { + "monitors": [ + "monitorsValue" + ], + "path": "pathValue", + "user": "userValue", + "secretFile": "secretFileValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true + }, + "flocker": { + "datasetName": "datasetNameValue", + "datasetUUID": "datasetUUIDValue" + }, + "downwardAPI": { + "items": [ + { + "path": "pathValue", + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "mode": 4 + } + ], + "defaultMode": 2 + }, + "fc": { + "targetWWNs": [ + "targetWWNsValue" + ], + "lun": 2, + "fsType": "fsTypeValue", + "readOnly": true, + "wwids": [ + "wwidsValue" + ] + }, + "azureFile": { + "secretName": "secretNameValue", + "shareName": "shareNameValue", + "readOnly": true + }, + "configMap": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "defaultMode": 3, + "optional": true + }, + "vsphereVolume": { + "volumePath": "volumePathValue", + "fsType": "fsTypeValue", + "storagePolicyName": "storagePolicyNameValue", + "storagePolicyID": "storagePolicyIDValue" + }, + "quobyte": { + "registry": "registryValue", + "volume": "volumeValue", + "readOnly": true, + "user": "userValue", + "group": "groupValue", + "tenant": "tenantValue" + }, + "azureDisk": { + "diskName": "diskNameValue", + "diskURI": "diskURIValue", + "cachingMode": "cachingModeValue", + "fsType": "fsTypeValue", + "readOnly": true, + "kind": "kindValue" + }, + "photonPersistentDisk": { + "pdID": "pdIDValue", + "fsType": "fsTypeValue" + }, + "projected": { + "sources": [ + { + "secret": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "optional": true + }, + "downwardAPI": { + "items": [ + { + "path": "pathValue", + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "mode": 4 + } + ] + }, + "configMap": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "optional": true + }, + "serviceAccountToken": { + "audience": "audienceValue", + "expirationSeconds": 2, + "path": "pathValue" + }, + "clusterTrustBundle": { + "name": "nameValue", + "signerName": "signerNameValue", + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "optional": true, + "path": "pathValue" + } + } + ], + "defaultMode": 2 + }, + "portworxVolume": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "scaleIO": { + "gateway": "gatewayValue", + "system": "systemValue", + "secretRef": { + "name": "nameValue" + }, + "sslEnabled": true, + "protectionDomain": "protectionDomainValue", + "storagePool": "storagePoolValue", + "storageMode": "storageModeValue", + "volumeName": "volumeNameValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "storageos": { + "volumeName": "volumeNameValue", + "volumeNamespace": "volumeNamespaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue" + } + }, + "csi": { + "driver": "driverValue", + "readOnly": true, + "fsType": "fsTypeValue", + "volumeAttributes": { + "volumeAttributesKey": "volumeAttributesValue" + }, + "nodePublishSecretRef": { + "name": "nameValue" + } + }, + "ephemeral": { + "volumeClaimTemplate": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "accessModes": [ + "accessModesValue" + ], + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + } + }, + "volumeName": "volumeNameValue", + "storageClassName": "storageClassNameValue", + "volumeMode": "volumeModeValue", + "dataSource": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue" + }, + "dataSourceRef": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue", + "namespace": "namespaceValue" + }, + "volumeAttributesClassName": "volumeAttributesClassNameValue" + } + } + }, + "image": { + "reference": "referenceValue", + "pullPolicy": "pullPolicyValue" + } + } + ], + "initContainers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true + } + ], + "containers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true + } + ], + "ephemeralContainers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true, + "targetContainerName": "targetContainerNameValue" + } + ], + "restartPolicy": "restartPolicyValue", + "terminationGracePeriodSeconds": 4, + "activeDeadlineSeconds": 5, + "dnsPolicy": "dnsPolicyValue", + "nodeSelector": { + "nodeSelectorKey": "nodeSelectorValue" + }, + "serviceAccountName": "serviceAccountNameValue", + "serviceAccount": "serviceAccountValue", + "automountServiceAccountToken": true, + "nodeName": "nodeNameValue", + "hostNetwork": true, + "hostPID": true, + "hostIPC": true, + "shareProcessNamespace": true, + "securityContext": { + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 2, + "runAsGroup": 6, + "runAsNonRoot": true, + "supplementalGroups": [ + 4 + ], + "supplementalGroupsPolicy": "supplementalGroupsPolicyValue", + "fsGroup": 5, + "sysctls": [ + { + "name": "nameValue", + "value": "valueValue" + } + ], + "fsGroupChangePolicy": "fsGroupChangePolicyValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "seLinuxChangePolicy": "seLinuxChangePolicyValue" + }, + "imagePullSecrets": [ + { + "name": "nameValue" + } + ], + "hostname": "hostnameValue", + "subdomain": "subdomainValue", + "affinity": { + "nodeAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "nodeSelectorTerms": [ + { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + ] + }, + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "preference": { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + } + ] + }, + "podAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": [ + { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + ], + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "podAffinityTerm": { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + } + ] + }, + "podAntiAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": [ + { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + ], + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "podAffinityTerm": { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + } + ] + } + }, + "schedulerName": "schedulerNameValue", + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ], + "hostAliases": [ + { + "ip": "ipValue", + "hostnames": [ + "hostnamesValue" + ] + } + ], + "priorityClassName": "priorityClassNameValue", + "priority": 25, + "dnsConfig": { + "nameservers": [ + "nameserversValue" + ], + "searches": [ + "searchesValue" + ], + "options": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "readinessGates": [ + { + "conditionType": "conditionTypeValue" + } + ], + "runtimeClassName": "runtimeClassNameValue", + "enableServiceLinks": true, + "preemptionPolicy": "preemptionPolicyValue", + "overhead": { + "overheadKey": "0" + }, + "topologySpreadConstraints": [ + { + "maxSkew": 1, + "topologyKey": "topologyKeyValue", + "whenUnsatisfiable": "whenUnsatisfiableValue", + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "minDomains": 5, + "nodeAffinityPolicy": "nodeAffinityPolicyValue", + "nodeTaintsPolicy": "nodeTaintsPolicyValue", + "matchLabelKeys": [ + "matchLabelKeysValue" + ] + } + ], + "setHostnameAsFQDN": true, + "os": { + "name": "nameValue" + }, + "hostUsers": true, + "schedulingGates": [ + { + "name": "nameValue" + } + ], + "resourceClaims": [ + { + "name": "nameValue", + "resourceClaimName": "resourceClaimNameValue", + "resourceClaimTemplateName": "resourceClaimTemplateNameValue" + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + } + } + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/core.v1.PodTemplate.pb b/testdata/v1.33.0/core.v1.PodTemplate.pb new file mode 100644 index 0000000000000000000000000000000000000000..0dd0e353079bee25f3ac230c2796354795d76696 GIT binary patch literal 10823 zcmeHNO>7)V74~Z<#8cz>am9b>O(JizEY>VP#$u&tPO+VUY@9GSHdz^jXm{6)EAHv; z?e4MTAS4JvLb-r)f|WqpNQ*)^Amx}ntTuarm6pSv5E2p!5{DIsg%far*H!&fGq$rv zaYUq@TX$7;)vH(U=lfpu*12$ij1X=63$)nq>{ZtG9W!F|SF7aD8Y#GDn|qX7%OPJrWB5OU8It>;e64-LKd z`d{BXRvlQvr(b{gE$&_!CQYqk`dk%c2F^iHX>!+e_ze_L%ySDi$Z*?q%@zwp11)=gy#G{uy>}V| z_weYw{|r_KW^pp+*x~A~FEvv?MzrsIcfJ~SHZn~JrM~mEzLuZ9mj85_{AN_O<=02a zI4SsMv?-6a5Tz$YDJiy@%{y(`Ge}@YKTC?fotZr?HuIC69Gn7Uij=lJr_*MO7vxvH zBWg3G5-{HjdE^DVa!e^;+dOjyy=?P1nL&$14KIjHN3K7_UzL71IcS{Zp%wB)H)26E_2!zoi5aL5`{HBi z9p_=Cs3`Om*r43y5jSxInZQeDNSV2|?{PPhpHWq;6-vsMWAb+PK^4}&K}u~8XYvv^ zq=dK81%=4EDv?p}Jx^|>R_Nf?#gN%y)KI|PmUyeHGM@RUg?zN^)G6OeWAXVFp%uuz5v}J8A zvAdh_EwZlK_4A}RNYSzgO^wv_^=U#a&y7ru!96<&ipH4)>^My6u@_7ot7^9Z%~G1u z)vK4~nO3!~b3xsaogHq=&fD?swcguFs<&ye% zh~|Sv)9@T_?Pi-YM!VV*o!x_Zg1c?;FiJhMC}$UkJqbpBN;T37ypAs|tr#)abR+R{ z9~Mc;=HXVh7#)sZ*H#uqzh1RWYZJ}#l4mEmQZ>G5n9Xz61Hk;}+xvx*hj8}sruQ!V z5Xf)~lk|?61d3v~8%9h7&B)qZ&hSfBc^B%XFDhZYBr%02qnBRXj@?bV4hFc?NvENz{Sg*Yv(J=HN2R64 z4LJ1Gsyfym7n_XP!Qs zc}pWz)3R6?#{QUO))z??VKZ;@NSs(4v12R~uvgKb@;1HKag8H2+S*tWI~E)>3^PNW zO;*j~NBvXiW1?mPc8l{5c%GC4)?`8E=CtB>97kph z>88IdslKklkYUSfBQuZ`!zduKl4nq>?05lkkJbgApplo9DXJO*tx_CuJu3w+#Z51a z78_#0`p-cbO^FBvqDTJ$kdMyf^w61HKh+%#GgOJm?%=NZxkFmmDRmpei2;g@EICRS zhMscU>$p*t#f@R)N7-9#O!fwzZ(>GEY1eE_qT)dpulrKV^>GBw9pshUY=xQjS6xS@ zzLj49`7w|(={hfZNd-uiA*c>ufJbO6Rb7ZrL_8YB(As1P`>jnVl6RfWY0^6fRpzJ; z0UeHUInUAwqV;3b$7eoq?!@}DF5t$`H1hrbvj#QP;4>hDUctcTU%`Z*@TY6fAz5l; z%^Pjx%W?@Dd)N=hW07 z4%=pu@}LPpT(&qrv{c5BVqJ37EmtPml(n?n> zLPhj8+<`OuXj(vfF~dDLt@>ugMp|vmrkfH)xuZiE^P!yLOxW># z2lEGVYe%f59>%rFkYS;;bA68hH&nQO6H2kSxoO4q7L+mj**RCc4gVS<_kgUB200|J zI4u95s~CBYe%8MXlD`2tQqV~&v4R8vl0ZzaVyyNYueFOtE{^qxQSQl{)Zq$p(b@4f z5BF)Oe+N|L$7|1e|CEoU2JmcK_G>_6h-`Np1vA`%K5@d^GKEw1iBp=s`ot-(>Cs-= zs4KMbD5z(jIHh-bed450)SOLx+=1?F)AHXScf=lX7 z%PB&aFz_La`vLa?9_@A)9e)d_-iJD=3alz_YUKwM|C%rZ%%cf*J%|DQ0pJmgirYFH zZ(2P!`@7%+7(?zJ@iyyT@k4-r1K#m4{HG)SKp}%SHLMMLcoVvb6|IJ5H(JsT%}fEaj6{l3i}Op1fa+3i-v zod}i|K;nbdWSMetW@qL>ES5sJUkUCSE&jxUOk{@`Fj_Dc@uy|xCFW#S0UZc7r;9O( zizhcRFEKr}2rMAPmtO$#Kg{`3=*B1k{qX4Qe`Wy&BcNfaIVr^#O9C8Y#GD zn|;l6I*cA^F_#5q#4e;wdL`}+ebbUdjB?1F<`Q=|#TWJA4!6bA%t*jOuM^-n7KFHt zXgz&+Zg}|pH~;+BP;FolpMLr9J$zawYZIj4nCr|5zsh!KQ9g<<)(uiIUDu1mW<_^R zc^6}@yhI9{+?5OK`TmV;H}$INb9E!ra2kSYle?zFui*y8JU3vSl-j0iwpbt!(Q3w=>V6#b$o^6N8grOp@}J=XBa^;jH|scSL=fR0HOFAxAUVkz>jM+v1tO=oOm> z!Z2j_%;!ioWLChUeBE&}yvdTU^UY5T#(QY!v7H55sXZ(GFtjRg`GP#tn$~qLs5`Q~&28Cv6F&K< z9aq8)GsrW|1iXRYsPfXsS^6zlB30>bnG{_vsgH$dK4>({9;UvXOekZdt3A=#9hf61 zZHtFd>X}73yEyC#F!EEXlUCq$d}(RLh`FX4iI=;uK*}}`H?zfPDSlmDSrGkt%`&YG zG|TgzoupIM_@-bcPiyx8Q>1V27E12JsmGh%d+-Awr55J#Z8HfJ#c(H#n2ctd)iOOL4%SFpvhB|$Cy>dzsLHbpAHZ)l@*9mz?eAPCfqvs@S}t1o zzU&KQ`3X`sJ2q!-f_u=sbC0cWD?yJ|L*7!oMqeU`VcKS7Z7gLFr>49M_0kuVFkY6h z!;{fVFK)%|CS3;uTcg3*4`+U@k(y~)EDU3ROfu^Wq=v|vw|OK^ zERNVQmI>HvXi#~Z-s`x=ff{XnG>IMajv0oTq0S_$X7Qu(DReWReUSJRW(?`3zbLD|uELO#<+YJKNETug5LwAH zs8_eW0O?8VEKktLi^>!=4S`lUj<}wc0+-^37e))qV!_5wK^aYn2nC`?|2~k9&g698 znOr~C9St*7iOFv7uDRKLTG%mFj8bBNLXbsA>B7)cX?qn6xcSI2-v#&~z>fi;{^yZQW9;Qu#j>>86^l?2y$!eEP&|b`N2TrKIS+$W? zTlrDkg=gK%?!l+Yk(6&`x~CMIkZK`kk6DZm^*-#0K6%A{`3Jp(k@w(d{nH@%E06;PowOP&NDv?i z#Pk}*YR~anJ6LiR$9ljh_h?S)a0R*O%vhU;yR_540V?w2C9~c?r;4d>s}1#cK{DyMBLWdc+={+*$)UG!YFe0h__kyiVp$)1$f89 zSX*3WDrE4whP7c2Z$dY)Vulcw#`WSG+S@TyeFQw~W7`|dU3EjOb%afBt|zsLg9X*d zSjS^FIorgaHBfuXZX2U<$0fX=ic}Icw;K$x1hyj#e zs*F=z?UxV=IO=bn_q8X#)|(vC7w{ep?>9x=`Ah0`KoM)$Q73^m_z&g3-+hSxP#SnI WZHCFOqV*CM@8atdfv)rcW8lB>w;h}S literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.ReplicationController.yaml b/testdata/v1.33.0/core.v1.ReplicationController.yaml new file mode 100644 index 0000000000..395b59b2a5 --- /dev/null +++ b/testdata/v1.33.0/core.v1.ReplicationController.yaml @@ -0,0 +1,1234 @@ +apiVersion: v1 +kind: ReplicationController +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + minReadySeconds: 4 + replicas: 1 + selector: + selectorKey: selectorValue + template: + metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + activeDeadlineSeconds: 5 + affinity: + nodeAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - preference: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + podAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + automountServiceAccountToken: true + containers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + dnsConfig: + nameservers: + - nameserversValue + options: + - name: nameValue + value: valueValue + searches: + - searchesValue + dnsPolicy: dnsPolicyValue + enableServiceLinks: true + ephemeralContainers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + targetContainerName: targetContainerNameValue + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + hostAliases: + - hostnames: + - hostnamesValue + ip: ipValue + hostIPC: true + hostNetwork: true + hostPID: true + hostUsers: true + hostname: hostnameValue + imagePullSecrets: + - name: nameValue + initContainers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + nodeName: nodeNameValue + nodeSelector: + nodeSelectorKey: nodeSelectorValue + os: + name: nameValue + overhead: + overheadKey: "0" + preemptionPolicy: preemptionPolicyValue + priority: 25 + priorityClassName: priorityClassNameValue + readinessGates: + - conditionType: conditionTypeValue + resourceClaims: + - name: nameValue + resourceClaimName: resourceClaimNameValue + resourceClaimTemplateName: resourceClaimTemplateNameValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + runtimeClassName: runtimeClassNameValue + schedulerName: schedulerNameValue + schedulingGates: + - name: nameValue + securityContext: + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + fsGroup: 5 + fsGroupChangePolicy: fsGroupChangePolicyValue + runAsGroup: 6 + runAsNonRoot: true + runAsUser: 2 + seLinuxChangePolicy: seLinuxChangePolicyValue + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + supplementalGroups: + - 4 + supplementalGroupsPolicy: supplementalGroupsPolicyValue + sysctls: + - name: nameValue + value: valueValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + serviceAccount: serviceAccountValue + serviceAccountName: serviceAccountNameValue + setHostnameAsFQDN: true + shareProcessNamespace: true + subdomain: subdomainValue + terminationGracePeriodSeconds: 4 + tolerations: + - effect: effectValue + key: keyValue + operator: operatorValue + tolerationSeconds: 5 + value: valueValue + topologySpreadConstraints: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + maxSkew: 1 + minDomains: 5 + nodeAffinityPolicy: nodeAffinityPolicyValue + nodeTaintsPolicy: nodeTaintsPolicyValue + topologyKey: topologyKeyValue + whenUnsatisfiable: whenUnsatisfiableValue + volumes: + - awsElasticBlockStore: + fsType: fsTypeValue + partition: 3 + readOnly: true + volumeID: volumeIDValue + azureDisk: + cachingMode: cachingModeValue + diskName: diskNameValue + diskURI: diskURIValue + fsType: fsTypeValue + kind: kindValue + readOnly: true + azureFile: + readOnly: true + secretName: secretNameValue + shareName: shareNameValue + cephfs: + monitors: + - monitorsValue + path: pathValue + readOnly: true + secretFile: secretFileValue + secretRef: + name: nameValue + user: userValue + cinder: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + volumeID: volumeIDValue + configMap: + defaultMode: 3 + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + csi: + driver: driverValue + fsType: fsTypeValue + nodePublishSecretRef: + name: nameValue + readOnly: true + volumeAttributes: + volumeAttributesKey: volumeAttributesValue + downwardAPI: + defaultMode: 2 + items: + - fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + mode: 4 + path: pathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + emptyDir: + medium: mediumValue + sizeLimit: "0" + ephemeral: + volumeClaimTemplate: + metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + accessModes: + - accessModesValue + dataSource: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + dataSourceRef: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resources: + limits: + limitsKey: "0" + requests: + requestsKey: "0" + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + storageClassName: storageClassNameValue + volumeAttributesClassName: volumeAttributesClassNameValue + volumeMode: volumeModeValue + volumeName: volumeNameValue + fc: + fsType: fsTypeValue + lun: 2 + readOnly: true + targetWWNs: + - targetWWNsValue + wwids: + - wwidsValue + flexVolume: + driver: driverValue + fsType: fsTypeValue + options: + optionsKey: optionsValue + readOnly: true + secretRef: + name: nameValue + flocker: + datasetName: datasetNameValue + datasetUUID: datasetUUIDValue + gcePersistentDisk: + fsType: fsTypeValue + partition: 3 + pdName: pdNameValue + readOnly: true + gitRepo: + directory: directoryValue + repository: repositoryValue + revision: revisionValue + glusterfs: + endpoints: endpointsValue + path: pathValue + readOnly: true + hostPath: + path: pathValue + type: typeValue + image: + pullPolicy: pullPolicyValue + reference: referenceValue + iscsi: + chapAuthDiscovery: true + chapAuthSession: true + fsType: fsTypeValue + initiatorName: initiatorNameValue + iqn: iqnValue + iscsiInterface: iscsiInterfaceValue + lun: 3 + portals: + - portalsValue + readOnly: true + secretRef: + name: nameValue + targetPortal: targetPortalValue + name: nameValue + nfs: + path: pathValue + readOnly: true + server: serverValue + persistentVolumeClaim: + claimName: claimNameValue + readOnly: true + photonPersistentDisk: + fsType: fsTypeValue + pdID: pdIDValue + portworxVolume: + fsType: fsTypeValue + readOnly: true + volumeID: volumeIDValue + projected: + defaultMode: 2 + sources: + - clusterTrustBundle: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + name: nameValue + optional: true + path: pathValue + signerName: signerNameValue + configMap: + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + downwardAPI: + items: + - fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + mode: 4 + path: pathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secret: + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + serviceAccountToken: + audience: audienceValue + expirationSeconds: 2 + path: pathValue + quobyte: + group: groupValue + readOnly: true + registry: registryValue + tenant: tenantValue + user: userValue + volume: volumeValue + rbd: + fsType: fsTypeValue + image: imageValue + keyring: keyringValue + monitors: + - monitorsValue + pool: poolValue + readOnly: true + secretRef: + name: nameValue + user: userValue + scaleIO: + fsType: fsTypeValue + gateway: gatewayValue + protectionDomain: protectionDomainValue + readOnly: true + secretRef: + name: nameValue + sslEnabled: true + storageMode: storageModeValue + storagePool: storagePoolValue + system: systemValue + volumeName: volumeNameValue + secret: + defaultMode: 3 + items: + - key: keyValue + mode: 3 + path: pathValue + optional: true + secretName: secretNameValue + storageos: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + volumeName: volumeNameValue + volumeNamespace: volumeNamespaceValue + vsphereVolume: + fsType: fsTypeValue + storagePolicyID: storagePolicyIDValue + storagePolicyName: storagePolicyNameValue + volumePath: volumePathValue +status: + availableReplicas: 5 + conditions: + - lastTransitionTime: "2003-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue + fullyLabeledReplicas: 2 + observedGeneration: 3 + readyReplicas: 4 + replicas: 1 diff --git a/testdata/v1.33.0/core.v1.ResourceQuota.json b/testdata/v1.33.0/core.v1.ResourceQuota.json new file mode 100644 index 0000000000..7dca13cebc --- /dev/null +++ b/testdata/v1.33.0/core.v1.ResourceQuota.json @@ -0,0 +1,73 @@ +{ + "kind": "ResourceQuota", + "apiVersion": "v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "hard": { + "hardKey": "0" + }, + "scopes": [ + "scopesValue" + ], + "scopeSelector": { + "matchExpressions": [ + { + "scopeName": "scopeNameValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + }, + "status": { + "hard": { + "hardKey": "0" + }, + "used": { + "usedKey": "0" + } + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/core.v1.ResourceQuota.pb b/testdata/v1.33.0/core.v1.ResourceQuota.pb new file mode 100644 index 0000000000000000000000000000000000000000..200c4e27d658cb353021f57449598c1b1cd530b5 GIT binary patch literal 500 zcmZXQ%}&BV5P(}C0R|~`^?8OF zCfs}gnsnb6R*_;rcV@PzTP{?V+YY@nm|wpgmq5cv0;84z$-c&(!*%Y+cS=xm9_;`&CX~|=3Y{QMoMij2^u50rU+wU*_%6CuTfs0I$g6o` zF4HYR;r^lL$~4F?p^thB4wP@G7-Xv!!ETY74AmUt;O)a6I69FZoz#s+Y^=Q6ECVh3 QcmLrOK9!i`J1gh5cbAFKCk~Smw>DjX|6)9z!H*`24SM0gdd%fh$0p1^Vr#Vy?ff-i!g`> zASDeF6%;hkQNkM_oGCH(YcT0j2nKXGI6&2ii zdzHTDUB3VMb=@x=80*uoZ^nx8NgG!g830ocU>4MzX)6X1ZW7LgCfb15uwQuFoU_}w zI-%S(4p;o6oK2@iQd%T(6ZMd6jVLFKJ~sp{&IKCa`jl`o25B8ZQ>63xm-NGbVInib zkIUa>ztlBgz=rC0mO5p2*74elmwjJlgIozK>W4DEUlh5KN})v}m~GiEM^`=Mm%^4N zatt~aQrp0dD_x(YXxsDIdOu$UP zAG_IiwiKxOp6-r}Dpb#GNq>_GGVBvZc#`8BY!{tJcFBi?kHH}wZY;6$t2qgmu473I zei92t6W8Kt{S--~m4`0SCQbLql(JbN{u;INF0nqx$Ms< zq}tsSFXsUv(+e5+Mdkis1 pDHdmR2d|_LYRcSl=E#|C=NHteNg!(RQMz^W%al1px5-je`U7|;N^1ZB literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.Service.yaml b/testdata/v1.33.0/core.v1.Service.yaml new file mode 100644 index 0000000000..cde3000626 --- /dev/null +++ b/testdata/v1.33.0/core.v1.Service.yaml @@ -0,0 +1,85 @@ +apiVersion: v1 +kind: Service +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + allocateLoadBalancerNodePorts: true + clusterIP: clusterIPValue + clusterIPs: + - clusterIPsValue + externalIPs: + - externalIPsValue + externalName: externalNameValue + externalTrafficPolicy: externalTrafficPolicyValue + healthCheckNodePort: 12 + internalTrafficPolicy: internalTrafficPolicyValue + ipFamilies: + - ipFamiliesValue + ipFamilyPolicy: ipFamilyPolicyValue + loadBalancerClass: loadBalancerClassValue + loadBalancerIP: loadBalancerIPValue + loadBalancerSourceRanges: + - loadBalancerSourceRangesValue + ports: + - appProtocol: appProtocolValue + name: nameValue + nodePort: 5 + port: 3 + protocol: protocolValue + targetPort: targetPortValue + publishNotReadyAddresses: true + selector: + selectorKey: selectorValue + sessionAffinity: sessionAffinityValue + sessionAffinityConfig: + clientIP: + timeoutSeconds: 1 + trafficDistribution: trafficDistributionValue + type: typeValue +status: + conditions: + - lastTransitionTime: "2004-01-01T01:01:01Z" + message: messageValue + observedGeneration: 3 + reason: reasonValue + status: statusValue + type: typeValue + loadBalancer: + ingress: + - hostname: hostnameValue + ip: ipValue + ipMode: ipModeValue + ports: + - error: errorValue + port: 1 + protocol: protocolValue diff --git a/testdata/v1.33.0/core.v1.ServiceAccount.json b/testdata/v1.33.0/core.v1.ServiceAccount.json new file mode 100644 index 0000000000..540385147c --- /dev/null +++ b/testdata/v1.33.0/core.v1.ServiceAccount.json @@ -0,0 +1,63 @@ +{ + "kind": "ServiceAccount", + "apiVersion": "v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "secrets": [ + { + "kind": "kindValue", + "namespace": "namespaceValue", + "name": "nameValue", + "uid": "uidValue", + "apiVersion": "apiVersionValue", + "resourceVersion": "resourceVersionValue", + "fieldPath": "fieldPathValue" + } + ], + "imagePullSecrets": [ + { + "name": "nameValue" + } + ], + "automountServiceAccountToken": true +} \ No newline at end of file diff --git a/testdata/v1.33.0/core.v1.ServiceAccount.pb b/testdata/v1.33.0/core.v1.ServiceAccount.pb new file mode 100644 index 0000000000000000000000000000000000000000..9e3d69cf63a1db399edbe95bfe26dd4f7102515d GIT binary patch literal 508 zcmd0{C}!Xi;bJN?6ygg`Eh@`QPIXL9&M(a?5xULH^?-?sGcPeWH7qfwG*w72JvA@2 zD6u5f4<;nV2a+u=NKA$(QQ|F5%}Mjg%*zJr(Bde~OaZfuM2b?2^Gl0>>Qak}GxPJn zq898<92{pCKHJSAz~BXBt^RNd$O_Vj79uunR$shnN>gsg3ak- zOyc6nP0UM7Pb~rq2=V0?fcy`0z7)DKN5`=mSlh(FU5@%l?sef3`z_Dt^2TJ literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.ServiceAccount.yaml b/testdata/v1.33.0/core.v1.ServiceAccount.yaml new file mode 100644 index 0000000000..876293f9d6 --- /dev/null +++ b/testdata/v1.33.0/core.v1.ServiceAccount.yaml @@ -0,0 +1,45 @@ +apiVersion: v1 +automountServiceAccountToken: true +imagePullSecrets: +- name: nameValue +kind: ServiceAccount +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +secrets: +- apiVersion: apiVersionValue + fieldPath: fieldPathValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue diff --git a/testdata/v1.33.0/core.v1.ServiceProxyOptions.json b/testdata/v1.33.0/core.v1.ServiceProxyOptions.json new file mode 100644 index 0000000000..358429d442 --- /dev/null +++ b/testdata/v1.33.0/core.v1.ServiceProxyOptions.json @@ -0,0 +1,5 @@ +{ + "kind": "ServiceProxyOptions", + "apiVersion": "v1", + "path": "pathValue" +} \ No newline at end of file diff --git a/testdata/v1.33.0/core.v1.ServiceProxyOptions.pb b/testdata/v1.33.0/core.v1.ServiceProxyOptions.pb new file mode 100644 index 0000000000000000000000000000000000000000..26b157fb32d980460c31d91beebb9034c78f60e5 GIT binary patch literal 48 zcmd0{C}!Z2hJm3^crw(zU)zqJ+yg(eqw%hM{VoDW6I1p5F5Uq#9Q literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.Status.yaml b/testdata/v1.33.0/core.v1.Status.yaml new file mode 100644 index 0000000000..6fa05d9a6d --- /dev/null +++ b/testdata/v1.33.0/core.v1.Status.yaml @@ -0,0 +1,21 @@ +apiVersion: v1 +code: 6 +details: + causes: + - field: fieldValue + message: messageValue + reason: reasonValue + group: groupValue + kind: kindValue + name: nameValue + retryAfterSeconds: 5 + uid: uidValue +kind: Status +message: messageValue +metadata: + continue: continueValue + remainingItemCount: 4 + resourceVersion: resourceVersionValue + selfLink: selfLinkValue +reason: reasonValue +status: statusValue diff --git a/testdata/v1.33.0/core.v1.UpdateOptions.json b/testdata/v1.33.0/core.v1.UpdateOptions.json new file mode 100644 index 0000000000..3cf8627071 --- /dev/null +++ b/testdata/v1.33.0/core.v1.UpdateOptions.json @@ -0,0 +1,9 @@ +{ + "kind": "UpdateOptions", + "apiVersion": "v1", + "dryRun": [ + "dryRunValue" + ], + "fieldManager": "fieldManagerValue", + "fieldValidation": "fieldValidationValue" +} \ No newline at end of file diff --git a/testdata/v1.33.0/core.v1.UpdateOptions.pb b/testdata/v1.33.0/core.v1.UpdateOptions.pb new file mode 100644 index 0000000000000000000000000000000000000000..0534a05eeec9997f0237bcd11c85b243b9d83424 GIT binary patch literal 85 zcmd0{C}!Xi=3*){6ygmnNJ%V7^)D#N%+D(pGUMV-DXI)A%?nG+DNPj;Ov_BoN%2k0 aOH5BK0t-orfQ5kUOrSoX9*8J|5(5BiA{&SR literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.UpdateOptions.yaml b/testdata/v1.33.0/core.v1.UpdateOptions.yaml new file mode 100644 index 0000000000..1d2d9943ef --- /dev/null +++ b/testdata/v1.33.0/core.v1.UpdateOptions.yaml @@ -0,0 +1,6 @@ +apiVersion: v1 +dryRun: +- dryRunValue +fieldManager: fieldManagerValue +fieldValidation: fieldValidationValue +kind: UpdateOptions diff --git a/testdata/v1.33.0/core.v1.WatchEvent.json b/testdata/v1.33.0/core.v1.WatchEvent.json new file mode 100644 index 0000000000..64a45ac66b --- /dev/null +++ b/testdata/v1.33.0/core.v1.WatchEvent.json @@ -0,0 +1,13 @@ +{ + "type": "typeValue", + "object": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/core.v1.WatchEvent.pb b/testdata/v1.33.0/core.v1.WatchEvent.pb new file mode 100644 index 0000000000000000000000000000000000000000..6d7c78307c4ae78af710386b01ef615676382f6d GIT binary patch literal 129 zcmWm6u@1s83h7il-Lj literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/core.v1.WatchEvent.yaml b/testdata/v1.33.0/core.v1.WatchEvent.yaml new file mode 100644 index 0000000000..6b24f40117 --- /dev/null +++ b/testdata/v1.33.0/core.v1.WatchEvent.yaml @@ -0,0 +1,8 @@ +object: + apiVersion: example.com/v1 + kind: CustomType + spec: + replicas: 1 + status: + available: 1 +type: typeValue diff --git a/testdata/v1.33.0/discovery.k8s.io.v1.EndpointSlice.json b/testdata/v1.33.0/discovery.k8s.io.v1.EndpointSlice.json new file mode 100644 index 0000000000..640c6842a9 --- /dev/null +++ b/testdata/v1.33.0/discovery.k8s.io.v1.EndpointSlice.json @@ -0,0 +1,94 @@ +{ + "kind": "EndpointSlice", + "apiVersion": "discovery.k8s.io/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "addressType": "addressTypeValue", + "endpoints": [ + { + "addresses": [ + "addressesValue" + ], + "conditions": { + "ready": true, + "serving": true, + "terminating": true + }, + "hostname": "hostnameValue", + "targetRef": { + "kind": "kindValue", + "namespace": "namespaceValue", + "name": "nameValue", + "uid": "uidValue", + "apiVersion": "apiVersionValue", + "resourceVersion": "resourceVersionValue", + "fieldPath": "fieldPathValue" + }, + "deprecatedTopology": { + "deprecatedTopologyKey": "deprecatedTopologyValue" + }, + "nodeName": "nodeNameValue", + "zone": "zoneValue", + "hints": { + "forZones": [ + { + "name": "nameValue" + } + ], + "forNodes": [ + { + "name": "nameValue" + } + ] + } + } + ], + "ports": [ + { + "name": "nameValue", + "protocol": "protocolValue", + "port": 3, + "appProtocol": "appProtocolValue" + } + ] +} \ No newline at end of file diff --git a/testdata/v1.33.0/discovery.k8s.io.v1.EndpointSlice.pb b/testdata/v1.33.0/discovery.k8s.io.v1.EndpointSlice.pb new file mode 100644 index 0000000000000000000000000000000000000000..a4ff78a321415a7d2fa1965772a4fa90f1843d0a GIT binary patch literal 721 zcma)4yG{Z@6x~%+7+qLbjbzJ>6$L7Z385shQDaCX7IwqV6-I`c$;?86#vkx2wDuGH z0~7wiSXf)y=`b5`qZW2|&V8M8?)2;0K|5%JP#udAsByJl*HtQZNBeDRk>JD(v1vc^ zwl!A=sL-c8T^xS%kLGMDB`j%{$evqwRq2v)%;>ctXy@Fy9ke#U9CtxkASens)jy*j z{u~n-4X=~WMc=8JVZexPk7epiBZn4lZkxUycIHl4Q$Jjzh!6v6NcRTIdDnN#Zs_%d zPUiMU-Hfc@hw=ZD`S%qXMa#8?lb)4X*+W|dq=ML-nzV%!OmxT7OKks!ZAZ=Hf_(pq tM&VlURCY5&tJyD(_43hdZH#Kx3=L>WR`T+m{ literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/discovery.k8s.io.v1.EndpointSlice.yaml b/testdata/v1.33.0/discovery.k8s.io.v1.EndpointSlice.yaml new file mode 100644 index 0000000000..db95f61cad --- /dev/null +++ b/testdata/v1.33.0/discovery.k8s.io.v1.EndpointSlice.yaml @@ -0,0 +1,65 @@ +addressType: addressTypeValue +apiVersion: discovery.k8s.io/v1 +endpoints: +- addresses: + - addressesValue + conditions: + ready: true + serving: true + terminating: true + deprecatedTopology: + deprecatedTopologyKey: deprecatedTopologyValue + hints: + forNodes: + - name: nameValue + forZones: + - name: nameValue + hostname: hostnameValue + nodeName: nodeNameValue + targetRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue + zone: zoneValue +kind: EndpointSlice +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +ports: +- appProtocol: appProtocolValue + name: nameValue + port: 3 + protocol: protocolValue diff --git a/testdata/v1.33.0/discovery.k8s.io.v1beta1.EndpointSlice.json b/testdata/v1.33.0/discovery.k8s.io.v1beta1.EndpointSlice.json new file mode 100644 index 0000000000..87dac1aa95 --- /dev/null +++ b/testdata/v1.33.0/discovery.k8s.io.v1beta1.EndpointSlice.json @@ -0,0 +1,93 @@ +{ + "kind": "EndpointSlice", + "apiVersion": "discovery.k8s.io/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "addressType": "addressTypeValue", + "endpoints": [ + { + "addresses": [ + "addressesValue" + ], + "conditions": { + "ready": true, + "serving": true, + "terminating": true + }, + "hostname": "hostnameValue", + "targetRef": { + "kind": "kindValue", + "namespace": "namespaceValue", + "name": "nameValue", + "uid": "uidValue", + "apiVersion": "apiVersionValue", + "resourceVersion": "resourceVersionValue", + "fieldPath": "fieldPathValue" + }, + "topology": { + "topologyKey": "topologyValue" + }, + "nodeName": "nodeNameValue", + "hints": { + "forZones": [ + { + "name": "nameValue" + } + ], + "forNodes": [ + { + "name": "nameValue" + } + ] + } + } + ], + "ports": [ + { + "name": "nameValue", + "protocol": "protocolValue", + "port": 3, + "appProtocol": "appProtocolValue" + } + ] +} \ No newline at end of file diff --git a/testdata/v1.33.0/discovery.k8s.io.v1beta1.EndpointSlice.pb b/testdata/v1.33.0/discovery.k8s.io.v1beta1.EndpointSlice.pb new file mode 100644 index 0000000000000000000000000000000000000000..0bb8fa81af94f90cadfc4529a48ee503116bf57a GIT binary patch literal 695 zcma)4F;2rU6iwO!sY}`rF;o##HaZljgj98`!~zIa0x_^TjhmXdwiP>-0%Bn07R(%h z8zA)nY>0uG8-VMmZB#L^{r~>=^Lx*ZyTSnbpc!H@WK)!6?YJx2m>o=y0wm#)YoE}N zGfd?r!9(OeZh(&xs8TpV*N~*h-H8xI36$t!0eSWLRB$-VSA1I_GCIdJ)+bt4ibGv> zb`vC6ny5XL2+XKPyIXzBnmvELRvhD0RWILfsv3ZsCa4k^AR^9C=GO93p9p+VhmcFm+Q!W0sGrvz%ACo=%s6G&l%5)HU@ z#^?SQ^1XE$UwQbP{gfS}qsR~m#Z|`hWO@})x_{_9A`O;F=uqEHs`Jjj?BoAVlnrHaNFMb2>i~s-t literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/discovery.k8s.io.v1beta1.EndpointSlice.yaml b/testdata/v1.33.0/discovery.k8s.io.v1beta1.EndpointSlice.yaml new file mode 100644 index 0000000000..f5901ad8e4 --- /dev/null +++ b/testdata/v1.33.0/discovery.k8s.io.v1beta1.EndpointSlice.yaml @@ -0,0 +1,64 @@ +addressType: addressTypeValue +apiVersion: discovery.k8s.io/v1beta1 +endpoints: +- addresses: + - addressesValue + conditions: + ready: true + serving: true + terminating: true + hints: + forNodes: + - name: nameValue + forZones: + - name: nameValue + hostname: hostnameValue + nodeName: nodeNameValue + targetRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue + topology: + topologyKey: topologyValue +kind: EndpointSlice +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +ports: +- appProtocol: appProtocolValue + name: nameValue + port: 3 + protocol: protocolValue diff --git a/testdata/v1.33.0/events.k8s.io.v1.Event.json b/testdata/v1.33.0/events.k8s.io.v1.Event.json new file mode 100644 index 0000000000..e7bb7a4c06 --- /dev/null +++ b/testdata/v1.33.0/events.k8s.io.v1.Event.json @@ -0,0 +1,82 @@ +{ + "kind": "Event", + "apiVersion": "events.k8s.io/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "eventTime": "2002-01-01T01:01:01.000002Z", + "series": { + "count": 1, + "lastObservedTime": "2002-01-01T01:01:01.000002Z" + }, + "reportingController": "reportingControllerValue", + "reportingInstance": "reportingInstanceValue", + "action": "actionValue", + "reason": "reasonValue", + "regarding": { + "kind": "kindValue", + "namespace": "namespaceValue", + "name": "nameValue", + "uid": "uidValue", + "apiVersion": "apiVersionValue", + "resourceVersion": "resourceVersionValue", + "fieldPath": "fieldPathValue" + }, + "related": { + "kind": "kindValue", + "namespace": "namespaceValue", + "name": "nameValue", + "uid": "uidValue", + "apiVersion": "apiVersionValue", + "resourceVersion": "resourceVersionValue", + "fieldPath": "fieldPathValue" + }, + "note": "noteValue", + "type": "typeValue", + "deprecatedSource": { + "component": "componentValue", + "host": "hostValue" + }, + "deprecatedFirstTimestamp": "2013-01-01T01:01:01Z", + "deprecatedLastTimestamp": "2014-01-01T01:01:01Z", + "deprecatedCount": 15 +} \ No newline at end of file diff --git a/testdata/v1.33.0/events.k8s.io.v1.Event.pb b/testdata/v1.33.0/events.k8s.io.v1.Event.pb new file mode 100644 index 0000000000000000000000000000000000000000..9ea014ffe5324cd2e90e2c2debcd535578701af2 GIT binary patch literal 778 zcmchVyGjE=6oz+=!QF{&)Vqp{sA{KVD$z(IhW@ee0h!?CC!A|V0 zeFR%8A)s%dA{JJ@flg*~BUo73{d3NlGynO{H1k{o3&2K)hzP#a%=0Bomk(E+&x52jm?zyL87a4Z^i=kMEh z$J=;vhPTdl!q#%K849a>?>LId6ehvM=~>a{ZGS*QK{bue^}}nzeoDJDhVBfHUWTEF zGJ#33PKjVN40}GZ^MlML;R2E#{agxG2IdMWh9K{OE(Rk=oUx_-4bkr#ELdvJG8A=% zsPtbC?V9ov#Apvp(WmS$0;@t>5hd~i$2&9Yl*h6mxAS>%p0qV4)$`SjR7Yu7^Ryol CG!s$) literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/events.k8s.io.v1.Event.yaml b/testdata/v1.33.0/events.k8s.io.v1.Event.yaml new file mode 100644 index 0000000000..a3e4cf5617 --- /dev/null +++ b/testdata/v1.33.0/events.k8s.io.v1.Event.yaml @@ -0,0 +1,66 @@ +action: actionValue +apiVersion: events.k8s.io/v1 +deprecatedCount: 15 +deprecatedFirstTimestamp: "2013-01-01T01:01:01Z" +deprecatedLastTimestamp: "2014-01-01T01:01:01Z" +deprecatedSource: + component: componentValue + host: hostValue +eventTime: "2002-01-01T01:01:01.000002Z" +kind: Event +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +note: noteValue +reason: reasonValue +regarding: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue +related: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue +reportingController: reportingControllerValue +reportingInstance: reportingInstanceValue +series: + count: 1 + lastObservedTime: "2002-01-01T01:01:01.000002Z" +type: typeValue diff --git a/testdata/v1.33.0/events.k8s.io.v1beta1.Event.json b/testdata/v1.33.0/events.k8s.io.v1beta1.Event.json new file mode 100644 index 0000000000..a4659adf84 --- /dev/null +++ b/testdata/v1.33.0/events.k8s.io.v1beta1.Event.json @@ -0,0 +1,82 @@ +{ + "kind": "Event", + "apiVersion": "events.k8s.io/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "eventTime": "2002-01-01T01:01:01.000002Z", + "series": { + "count": 1, + "lastObservedTime": "2002-01-01T01:01:01.000002Z" + }, + "reportingController": "reportingControllerValue", + "reportingInstance": "reportingInstanceValue", + "action": "actionValue", + "reason": "reasonValue", + "regarding": { + "kind": "kindValue", + "namespace": "namespaceValue", + "name": "nameValue", + "uid": "uidValue", + "apiVersion": "apiVersionValue", + "resourceVersion": "resourceVersionValue", + "fieldPath": "fieldPathValue" + }, + "related": { + "kind": "kindValue", + "namespace": "namespaceValue", + "name": "nameValue", + "uid": "uidValue", + "apiVersion": "apiVersionValue", + "resourceVersion": "resourceVersionValue", + "fieldPath": "fieldPathValue" + }, + "note": "noteValue", + "type": "typeValue", + "deprecatedSource": { + "component": "componentValue", + "host": "hostValue" + }, + "deprecatedFirstTimestamp": "2013-01-01T01:01:01Z", + "deprecatedLastTimestamp": "2014-01-01T01:01:01Z", + "deprecatedCount": 15 +} \ No newline at end of file diff --git a/testdata/v1.33.0/events.k8s.io.v1beta1.Event.pb b/testdata/v1.33.0/events.k8s.io.v1beta1.Event.pb new file mode 100644 index 0000000000000000000000000000000000000000..fa18d6ad275275e6569be3d142ca5f73ebdaaba5 GIT binary patch literal 783 zcmchVJxc>Y5QZ;m@NQ!+=b<7eSX`MRYCs4nBNl!jB4S~;7bnS@%kHte34UO$2zFv` z?N6|^5(4@URK&u{f1sPaBnGjtvU_)CcJ`fTwq6hhnnjb)0xCtWUJyCL=2{B@NW9=C zmpftiHHn^vkVSC=c5v7Pcf1M|IF_){3wd@YDEeu(D2QUEj!>O|qv|eu9Hw zO|I&I3&N<57Dh{^*}i_e9dV3RrEWg%mD)tR)5r>O0HIieLpK#meIxLZjVWakOVvcD zoq@Bi*7)V74{n^WTxgf<)7HSN$@tyV$A~UwOGj-2`RP{AjSz^C*G_ALiBXkj4SEs z?(Oaw$3aLCgoJVdom+QRb=7-S-~0Jq_2q?NgnXP(b|qv^z+ESJvG-Dwg~m&?aMEBM*Ez>RdgE2{ zryMCbMu)v>*j+{sx0%CyBV=cjCan_n2A*NcA$mDrc59V8m&F(Le3x6|X@1;if!p4kxZ8Vu3e3@<2qI?uzG<8xj9LEif zFcLfJt|{+g%%zt};WBsR!dfQ3o=Q`%8Xi{#nS%xJt1a#rHouAjig~U>laxA!W3-ts z8feA!BK;HbwZUn0)ZzYn{~4`~%;RLtwu1B9p4^$n0h0UXx0Y%_x0&vQ*wo*zlU0IR zb&Sy5Tuqg(DerRe=SluD+m_E|DTpiO(u%!kDk(L6`<3CbJ^5q%<5}{{an(5994C{c z;2GhjJfcFF96hC^*kKm$c4W^efjR9sDSB3FN3__=pfWW&1Nsap_guT%VW&^ZuLeid z=SbCOo*VGc^%Ge5tjAO9(kd4BnVELaf0k4OX8J75);*$tDieNcG?JmAkz&C7UV?t5 zAC`LLaA^2#7OuH|XxLK5Jbzsp_SC38#sf3pr=5`bt;9XlRVC)2QS!vc61XQ|y{K&H zYtW?J;UPCrfmGm?W2C|y%X7IC#&}o7TBoF9+6M2WAJpLDS4kN?TC`2^7le1vriI9w zDv@6BTvw`6FLY6LF=W1kX6JLKE#4Zcj3=OZiWDuMr+cJMr>R3{pso?(da2tg#m{2a zOD{a~xItH^@=pyalx=~Q$*sqS{RM7IUF+&3b8z)JQnQTE2vj^IEgKs#?ykYt$wd{{ z&yqo}M=QeDttHUcW(hT2Cp0)li}WC9xzF!ukrm7wsO7E$!cs!%!iBT)glf6IbHTkM zTU*?coj2eUJ8@hIHVr?EOH=R$exvG3ABFUruu7`Z+)^$2Oj4T+5IzW+HP`0mcB+&< z-q#-Q*=<-NsBN1EVPcs@IlDOQDbTZ1s*|?wc0Gx-B8Fqb3B}7DI8DkH4=$&R(Ngrf zv3^?gYc)z8j*`!5Dec?H~lCX0>#mVgqX=EvfiR@d>2*uBiH~!Ta#r9QjR-%i z0{e8+>9|B{)R5(MgXXAeejhIM`M?_Vjn+R+#^jWXVd(Q_H)JAhn;2{qKQAHc1H zCBT)XMU9W)MnFCZ)N)A7y{h%=VjH_)ik7Jx*en%lC$Uq%&g=Y)T>*rk7TBOlE>M|3(6F=941=j z$m63(mRQWXq#5ARx9+#|xK zRW(X60EHqew$g>Jr_yn|PMAhn2LWN;3u%u&k&Ek$`bPs0gj>j!2J&V6j*(8Z@+z~+y0vt(v{{duzj`=pg_W^zgnCicX zWEy=hzao~U)jnT@8!^~$6OQe&(;~GOGu(!ws%=&+q}6726nEfhx3atNDRMaBTj}0Y zicLthkh4cDMyPrZc4^dhX^T9}e8qAC<>SV4r0QV4aE{rc&JdO34yz4fiKQd4w^}sK z2vey%D`Wi~V)S}BnjjtX8hisb!G9}9{x>vZXawmL8xQldOZy7zm8n)Ba*yRr!%2vu z)MyW2-jh)r3%Z_XWBfpFZHu+k!?-jRFs!_Guj~-us+z7}gK}hTPEx|X4i$`kR>swC zz(4ckHjs6)M)q2B-0QgW=y~^l)<2JuzrsFOQLE7g2?8V&F|CHa+O^&GHiBFn>po|> zV_Cr$SCEU&Pj+~)OFR7=;6{G5bk>Hayg&B?Pc^dN02-ypR@YW?hMO=XPI&#MaH=73 zO2XHWIAt|GI!GHeg*NU7^&AqXR?2R^6VsSaG!D-}4s$XYFA zO(K_^J$M(U$ssPOJFO%cx=aJ_!KCMN*XQAOf6?(Bn0_A`q$YAzaZ@Wlp!gex;bR<) zbJvG4px*)9hjDRRXW>n&>!iOcd;k;3-9z4C{VP5I_!r$zV?sp^j8S)1J2WX^^YV67u)aiba6CiXX}M#g$1Vv~z4{IvsjPm#7U z5p|r$3#w2hQA@j};Wu(`m&q^%8Kxk^+U>A*+hsbYLBrZDdV^u@_F;ildyFfb$E@Ab zDfu(a@{T`new2foIkgmcD+hP_8t&$nmAbcvmtgXrP0Rt5U#j%ueeLHl6|mKxLht1s z|5{J`ym|pJN2bN48V2Vp8;;R4IQ|kEXAE>qbd|B|To->x6Zw>^{A#aY7haLdw}nF| w@?R>f_f1^Ha(LK{vn2d^^WX10z@ImDyy7;3_#f4J3G0B-O^ldW8_`Gp3qe*wkpKVy literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/extensions.v1beta1.DaemonSet.yaml b/testdata/v1.33.0/extensions.v1beta1.DaemonSet.yaml new file mode 100644 index 0000000000..5ae2594312 --- /dev/null +++ b/testdata/v1.33.0/extensions.v1beta1.DaemonSet.yaml @@ -0,0 +1,1250 @@ +apiVersion: extensions/v1beta1 +kind: DaemonSet +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + minReadySeconds: 4 + revisionHistoryLimit: 6 + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + template: + metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + activeDeadlineSeconds: 5 + affinity: + nodeAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - preference: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + podAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + automountServiceAccountToken: true + containers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + dnsConfig: + nameservers: + - nameserversValue + options: + - name: nameValue + value: valueValue + searches: + - searchesValue + dnsPolicy: dnsPolicyValue + enableServiceLinks: true + ephemeralContainers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + targetContainerName: targetContainerNameValue + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + hostAliases: + - hostnames: + - hostnamesValue + ip: ipValue + hostIPC: true + hostNetwork: true + hostPID: true + hostUsers: true + hostname: hostnameValue + imagePullSecrets: + - name: nameValue + initContainers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + nodeName: nodeNameValue + nodeSelector: + nodeSelectorKey: nodeSelectorValue + os: + name: nameValue + overhead: + overheadKey: "0" + preemptionPolicy: preemptionPolicyValue + priority: 25 + priorityClassName: priorityClassNameValue + readinessGates: + - conditionType: conditionTypeValue + resourceClaims: + - name: nameValue + resourceClaimName: resourceClaimNameValue + resourceClaimTemplateName: resourceClaimTemplateNameValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + runtimeClassName: runtimeClassNameValue + schedulerName: schedulerNameValue + schedulingGates: + - name: nameValue + securityContext: + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + fsGroup: 5 + fsGroupChangePolicy: fsGroupChangePolicyValue + runAsGroup: 6 + runAsNonRoot: true + runAsUser: 2 + seLinuxChangePolicy: seLinuxChangePolicyValue + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + supplementalGroups: + - 4 + supplementalGroupsPolicy: supplementalGroupsPolicyValue + sysctls: + - name: nameValue + value: valueValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + serviceAccount: serviceAccountValue + serviceAccountName: serviceAccountNameValue + setHostnameAsFQDN: true + shareProcessNamespace: true + subdomain: subdomainValue + terminationGracePeriodSeconds: 4 + tolerations: + - effect: effectValue + key: keyValue + operator: operatorValue + tolerationSeconds: 5 + value: valueValue + topologySpreadConstraints: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + maxSkew: 1 + minDomains: 5 + nodeAffinityPolicy: nodeAffinityPolicyValue + nodeTaintsPolicy: nodeTaintsPolicyValue + topologyKey: topologyKeyValue + whenUnsatisfiable: whenUnsatisfiableValue + volumes: + - awsElasticBlockStore: + fsType: fsTypeValue + partition: 3 + readOnly: true + volumeID: volumeIDValue + azureDisk: + cachingMode: cachingModeValue + diskName: diskNameValue + diskURI: diskURIValue + fsType: fsTypeValue + kind: kindValue + readOnly: true + azureFile: + readOnly: true + secretName: secretNameValue + shareName: shareNameValue + cephfs: + monitors: + - monitorsValue + path: pathValue + readOnly: true + secretFile: secretFileValue + secretRef: + name: nameValue + user: userValue + cinder: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + volumeID: volumeIDValue + configMap: + defaultMode: 3 + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + csi: + driver: driverValue + fsType: fsTypeValue + nodePublishSecretRef: + name: nameValue + readOnly: true + volumeAttributes: + volumeAttributesKey: volumeAttributesValue + downwardAPI: + defaultMode: 2 + items: + - fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + mode: 4 + path: pathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + emptyDir: + medium: mediumValue + sizeLimit: "0" + ephemeral: + volumeClaimTemplate: + metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + accessModes: + - accessModesValue + dataSource: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + dataSourceRef: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resources: + limits: + limitsKey: "0" + requests: + requestsKey: "0" + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + storageClassName: storageClassNameValue + volumeAttributesClassName: volumeAttributesClassNameValue + volumeMode: volumeModeValue + volumeName: volumeNameValue + fc: + fsType: fsTypeValue + lun: 2 + readOnly: true + targetWWNs: + - targetWWNsValue + wwids: + - wwidsValue + flexVolume: + driver: driverValue + fsType: fsTypeValue + options: + optionsKey: optionsValue + readOnly: true + secretRef: + name: nameValue + flocker: + datasetName: datasetNameValue + datasetUUID: datasetUUIDValue + gcePersistentDisk: + fsType: fsTypeValue + partition: 3 + pdName: pdNameValue + readOnly: true + gitRepo: + directory: directoryValue + repository: repositoryValue + revision: revisionValue + glusterfs: + endpoints: endpointsValue + path: pathValue + readOnly: true + hostPath: + path: pathValue + type: typeValue + image: + pullPolicy: pullPolicyValue + reference: referenceValue + iscsi: + chapAuthDiscovery: true + chapAuthSession: true + fsType: fsTypeValue + initiatorName: initiatorNameValue + iqn: iqnValue + iscsiInterface: iscsiInterfaceValue + lun: 3 + portals: + - portalsValue + readOnly: true + secretRef: + name: nameValue + targetPortal: targetPortalValue + name: nameValue + nfs: + path: pathValue + readOnly: true + server: serverValue + persistentVolumeClaim: + claimName: claimNameValue + readOnly: true + photonPersistentDisk: + fsType: fsTypeValue + pdID: pdIDValue + portworxVolume: + fsType: fsTypeValue + readOnly: true + volumeID: volumeIDValue + projected: + defaultMode: 2 + sources: + - clusterTrustBundle: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + name: nameValue + optional: true + path: pathValue + signerName: signerNameValue + configMap: + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + downwardAPI: + items: + - fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + mode: 4 + path: pathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secret: + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + serviceAccountToken: + audience: audienceValue + expirationSeconds: 2 + path: pathValue + quobyte: + group: groupValue + readOnly: true + registry: registryValue + tenant: tenantValue + user: userValue + volume: volumeValue + rbd: + fsType: fsTypeValue + image: imageValue + keyring: keyringValue + monitors: + - monitorsValue + pool: poolValue + readOnly: true + secretRef: + name: nameValue + user: userValue + scaleIO: + fsType: fsTypeValue + gateway: gatewayValue + protectionDomain: protectionDomainValue + readOnly: true + secretRef: + name: nameValue + sslEnabled: true + storageMode: storageModeValue + storagePool: storagePoolValue + system: systemValue + volumeName: volumeNameValue + secret: + defaultMode: 3 + items: + - key: keyValue + mode: 3 + path: pathValue + optional: true + secretName: secretNameValue + storageos: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + volumeName: volumeNameValue + volumeNamespace: volumeNamespaceValue + vsphereVolume: + fsType: fsTypeValue + storagePolicyID: storagePolicyIDValue + storagePolicyName: storagePolicyNameValue + volumePath: volumePathValue + templateGeneration: 5 + updateStrategy: + rollingUpdate: + maxSurge: maxSurgeValue + maxUnavailable: maxUnavailableValue + type: typeValue +status: + collisionCount: 9 + conditions: + - lastTransitionTime: "2003-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue + currentNumberScheduled: 1 + desiredNumberScheduled: 3 + numberAvailable: 7 + numberMisscheduled: 2 + numberReady: 4 + numberUnavailable: 8 + observedGeneration: 5 + updatedNumberScheduled: 6 diff --git a/testdata/v1.33.0/extensions.v1beta1.Deployment.json b/testdata/v1.33.0/extensions.v1beta1.Deployment.json new file mode 100644 index 0000000000..fdcff4ad0c --- /dev/null +++ b/testdata/v1.33.0/extensions.v1beta1.Deployment.json @@ -0,0 +1,1825 @@ +{ + "kind": "Deployment", + "apiVersion": "extensions/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "replicas": 1, + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "template": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "volumes": [ + { + "name": "nameValue", + "hostPath": { + "path": "pathValue", + "type": "typeValue" + }, + "emptyDir": { + "medium": "mediumValue", + "sizeLimit": "0" + }, + "gcePersistentDisk": { + "pdName": "pdNameValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "awsElasticBlockStore": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "gitRepo": { + "repository": "repositoryValue", + "revision": "revisionValue", + "directory": "directoryValue" + }, + "secret": { + "secretName": "secretNameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "defaultMode": 3, + "optional": true + }, + "nfs": { + "server": "serverValue", + "path": "pathValue", + "readOnly": true + }, + "iscsi": { + "targetPortal": "targetPortalValue", + "iqn": "iqnValue", + "lun": 3, + "iscsiInterface": "iscsiInterfaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "portals": [ + "portalsValue" + ], + "chapAuthDiscovery": true, + "chapAuthSession": true, + "secretRef": { + "name": "nameValue" + }, + "initiatorName": "initiatorNameValue" + }, + "glusterfs": { + "endpoints": "endpointsValue", + "path": "pathValue", + "readOnly": true + }, + "persistentVolumeClaim": { + "claimName": "claimNameValue", + "readOnly": true + }, + "rbd": { + "monitors": [ + "monitorsValue" + ], + "image": "imageValue", + "fsType": "fsTypeValue", + "pool": "poolValue", + "user": "userValue", + "keyring": "keyringValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true + }, + "flexVolume": { + "driver": "driverValue", + "fsType": "fsTypeValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true, + "options": { + "optionsKey": "optionsValue" + } + }, + "cinder": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue" + } + }, + "cephfs": { + "monitors": [ + "monitorsValue" + ], + "path": "pathValue", + "user": "userValue", + "secretFile": "secretFileValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true + }, + "flocker": { + "datasetName": "datasetNameValue", + "datasetUUID": "datasetUUIDValue" + }, + "downwardAPI": { + "items": [ + { + "path": "pathValue", + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "mode": 4 + } + ], + "defaultMode": 2 + }, + "fc": { + "targetWWNs": [ + "targetWWNsValue" + ], + "lun": 2, + "fsType": "fsTypeValue", + "readOnly": true, + "wwids": [ + "wwidsValue" + ] + }, + "azureFile": { + "secretName": "secretNameValue", + "shareName": "shareNameValue", + "readOnly": true + }, + "configMap": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "defaultMode": 3, + "optional": true + }, + "vsphereVolume": { + "volumePath": "volumePathValue", + "fsType": "fsTypeValue", + "storagePolicyName": "storagePolicyNameValue", + "storagePolicyID": "storagePolicyIDValue" + }, + "quobyte": { + "registry": "registryValue", + "volume": "volumeValue", + "readOnly": true, + "user": "userValue", + "group": "groupValue", + "tenant": "tenantValue" + }, + "azureDisk": { + "diskName": "diskNameValue", + "diskURI": "diskURIValue", + "cachingMode": "cachingModeValue", + "fsType": "fsTypeValue", + "readOnly": true, + "kind": "kindValue" + }, + "photonPersistentDisk": { + "pdID": "pdIDValue", + "fsType": "fsTypeValue" + }, + "projected": { + "sources": [ + { + "secret": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "optional": true + }, + "downwardAPI": { + "items": [ + { + "path": "pathValue", + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "mode": 4 + } + ] + }, + "configMap": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "optional": true + }, + "serviceAccountToken": { + "audience": "audienceValue", + "expirationSeconds": 2, + "path": "pathValue" + }, + "clusterTrustBundle": { + "name": "nameValue", + "signerName": "signerNameValue", + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "optional": true, + "path": "pathValue" + } + } + ], + "defaultMode": 2 + }, + "portworxVolume": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "scaleIO": { + "gateway": "gatewayValue", + "system": "systemValue", + "secretRef": { + "name": "nameValue" + }, + "sslEnabled": true, + "protectionDomain": "protectionDomainValue", + "storagePool": "storagePoolValue", + "storageMode": "storageModeValue", + "volumeName": "volumeNameValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "storageos": { + "volumeName": "volumeNameValue", + "volumeNamespace": "volumeNamespaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue" + } + }, + "csi": { + "driver": "driverValue", + "readOnly": true, + "fsType": "fsTypeValue", + "volumeAttributes": { + "volumeAttributesKey": "volumeAttributesValue" + }, + "nodePublishSecretRef": { + "name": "nameValue" + } + }, + "ephemeral": { + "volumeClaimTemplate": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "accessModes": [ + "accessModesValue" + ], + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + } + }, + "volumeName": "volumeNameValue", + "storageClassName": "storageClassNameValue", + "volumeMode": "volumeModeValue", + "dataSource": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue" + }, + "dataSourceRef": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue", + "namespace": "namespaceValue" + }, + "volumeAttributesClassName": "volumeAttributesClassNameValue" + } + } + }, + "image": { + "reference": "referenceValue", + "pullPolicy": "pullPolicyValue" + } + } + ], + "initContainers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true + } + ], + "containers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true + } + ], + "ephemeralContainers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true, + "targetContainerName": "targetContainerNameValue" + } + ], + "restartPolicy": "restartPolicyValue", + "terminationGracePeriodSeconds": 4, + "activeDeadlineSeconds": 5, + "dnsPolicy": "dnsPolicyValue", + "nodeSelector": { + "nodeSelectorKey": "nodeSelectorValue" + }, + "serviceAccountName": "serviceAccountNameValue", + "serviceAccount": "serviceAccountValue", + "automountServiceAccountToken": true, + "nodeName": "nodeNameValue", + "hostNetwork": true, + "hostPID": true, + "hostIPC": true, + "shareProcessNamespace": true, + "securityContext": { + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 2, + "runAsGroup": 6, + "runAsNonRoot": true, + "supplementalGroups": [ + 4 + ], + "supplementalGroupsPolicy": "supplementalGroupsPolicyValue", + "fsGroup": 5, + "sysctls": [ + { + "name": "nameValue", + "value": "valueValue" + } + ], + "fsGroupChangePolicy": "fsGroupChangePolicyValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "seLinuxChangePolicy": "seLinuxChangePolicyValue" + }, + "imagePullSecrets": [ + { + "name": "nameValue" + } + ], + "hostname": "hostnameValue", + "subdomain": "subdomainValue", + "affinity": { + "nodeAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "nodeSelectorTerms": [ + { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + ] + }, + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "preference": { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + } + ] + }, + "podAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": [ + { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + ], + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "podAffinityTerm": { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + } + ] + }, + "podAntiAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": [ + { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + ], + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "podAffinityTerm": { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + } + ] + } + }, + "schedulerName": "schedulerNameValue", + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ], + "hostAliases": [ + { + "ip": "ipValue", + "hostnames": [ + "hostnamesValue" + ] + } + ], + "priorityClassName": "priorityClassNameValue", + "priority": 25, + "dnsConfig": { + "nameservers": [ + "nameserversValue" + ], + "searches": [ + "searchesValue" + ], + "options": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "readinessGates": [ + { + "conditionType": "conditionTypeValue" + } + ], + "runtimeClassName": "runtimeClassNameValue", + "enableServiceLinks": true, + "preemptionPolicy": "preemptionPolicyValue", + "overhead": { + "overheadKey": "0" + }, + "topologySpreadConstraints": [ + { + "maxSkew": 1, + "topologyKey": "topologyKeyValue", + "whenUnsatisfiable": "whenUnsatisfiableValue", + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "minDomains": 5, + "nodeAffinityPolicy": "nodeAffinityPolicyValue", + "nodeTaintsPolicy": "nodeTaintsPolicyValue", + "matchLabelKeys": [ + "matchLabelKeysValue" + ] + } + ], + "setHostnameAsFQDN": true, + "os": { + "name": "nameValue" + }, + "hostUsers": true, + "schedulingGates": [ + { + "name": "nameValue" + } + ], + "resourceClaims": [ + { + "name": "nameValue", + "resourceClaimName": "resourceClaimNameValue", + "resourceClaimTemplateName": "resourceClaimTemplateNameValue" + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + } + } + }, + "strategy": { + "type": "typeValue", + "rollingUpdate": { + "maxUnavailable": "maxUnavailableValue", + "maxSurge": "maxSurgeValue" + } + }, + "minReadySeconds": 5, + "revisionHistoryLimit": 6, + "paused": true, + "rollbackTo": { + "revision": 1 + }, + "progressDeadlineSeconds": 9 + }, + "status": { + "observedGeneration": 1, + "replicas": 2, + "updatedReplicas": 3, + "readyReplicas": 7, + "availableReplicas": 4, + "unavailableReplicas": 5, + "terminatingReplicas": 9, + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "lastUpdateTime": "2006-01-01T01:01:01Z", + "lastTransitionTime": "2007-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ], + "collisionCount": 8 + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/extensions.v1beta1.Deployment.pb b/testdata/v1.33.0/extensions.v1beta1.Deployment.pb new file mode 100644 index 0000000000000000000000000000000000000000..29a5f98cea2c3d64412c5e52de69a418849dc6dc GIT binary patch literal 11087 zcmeHNO^h5z72Y>%F#v*?2i!=7$G5FKt4gFM2aPlWss13+#C?j1tNt*xF7@)F%pM}L*N8l;B{61)Qs28 zMqVqHGPmxk>Zh+Vs5Sb*DZH3GUxa$PZZalZjLgP6~PBYJTw>!)U>5Ui3 zUvs437#;SaVRsol+-45*jgXyBnzTyP8+e8(hv?;i*{!qOSr=c_^IdLOwvNAymwz10W;LB{A7UiS(VpS&IH{5so~&t)l!D<#v48_{G^Ztcyl4i4_oAKYKglV6Rh?(zC4 z87BqL2-oBh6~g53DJ8`Yvv{{7dxi;2YbQw2vrH+&g90PO$qOy zR|}CfRU*CMxvo^DUg)CgV#rJh-OlGuTf8+?8Bf9L8B(--p6-!4ou&?*gt|tE>!pFK z6hDhuFF*6Z;|5)w%0JVuP__kHCbu3R_7}M=b*-zDOv9C@NX;@rBT(%jX<1&5?d~dk zldPzA{Uqs+d$b~=-C|<;+7zLt>x2f!e32dmE%!t|E%JiN1GU^WK(mylbm`K0d8V~o z&$-~?M05}J4BvGq+Q=+SDx+p5=S`-%-Pz$H#P z1-0CtU@kHHbkpgmwA82}Lw5b{sA_%}F7?E~8uX0TKSM_3l(S*z^VM$11aKScZxn{o z6QkaPn+M6y4i4bVqlYuU&XJm7nk)z+e~dHh)1-z-oOgIAPArPp5ti}U%Lq2JHm%=r z^?fzk`dA!0=4>MfQbV1IS54zb<5TEn9)BSXr!)(I3J+*Lzo%h(AGcXJ(QmK4;`|Gq zBo&{vn4h{it$JPCmKj4BH~o28^>r17luWmSWJ9tRy@1F{oH0`#+NXJpMxIfo zsO1o7m7|F3nh9_zuDL-tzbF=Lyb8)_N;V>zAbPa#1Nq=gPWPP2wWGb!Fr_M(?C#&y zoZX{^9aYsR#Re!8S+JEZ3_X>O+jYV;i|Zw%T64xR~%cWzNOcI{0K;e^qdzxrvjvE9%@4v;1Sx&tu90-A|CZ(V6L&4 zP}h$rlJ}g=G15N=RpzK6V=P6uoTupo(fWa@gVUcld1&Qv7jX5bIr6=acn5R1gO7m> zS``DEcL5WA%%3hlfn=$JWr)Z!&tWW%0B4f0{ZYYM7JEa=m45>nBYDG;k%Ja2v~6K) z=nJ1E8P22y-;H^ImQhok*ldGI%7Z2ZQ6=P5exZUP#XJ`|l9+1gEP0~c35+?PSy&q4 zhJC?fW*UjY9XyQv!l2TkGq%cz^BRK zgm0yLPboGb)k4l5u^6H19oVH&+odgvFf$d)36zf;Pm!vFc;N!GMV%ok$Q@Q2#1hRT zakQE>&B&%wc@{=`JH+Uvax_6Y<|X(RtbzYVj(j+4#?%NhC^qgFXPf(K)(aD@Kwyu# zHN#1WqSR;)#=Iw|I39F8&&K?L+}ajvsfTfSB4Aj1?QY#8z!ep)UxjkyZBA0ey#^J` zepbfSuET%w7 zk&9#9XOugV6?}08x#-MzhX=c~(|-bPc!V`zlosgJ>Xdz-&|wPvJ+sfBWQ7BHLgwUFQ`VwdL&|#vn~9& z19wl6wlNlUT*M2iP$f~#-C+3j+?!=GfFJ`1GN|1SYPVgcBMchUZZR4RYPa`GtlC3d z;XGvRmQKi@Y3AxRFy!fj4t-yQg6%H>cFSHM|6qe{CWLP=2Y>PxQ23L?~dZ zzlGk(J^Zzv{sr{{V455imui@tx0W4a!{GQ+Xp9)>i0CR~*M%rhFG(x`Y4=X86cWc22J4Vw;$W0wP+|Z83S=h6 literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/extensions.v1beta1.DeploymentRollback.yaml b/testdata/v1.33.0/extensions.v1beta1.DeploymentRollback.yaml new file mode 100644 index 0000000000..67ed04692a --- /dev/null +++ b/testdata/v1.33.0/extensions.v1beta1.DeploymentRollback.yaml @@ -0,0 +1,7 @@ +apiVersion: extensions/v1beta1 +kind: DeploymentRollback +name: nameValue +rollbackTo: + revision: 1 +updatedAnnotations: + updatedAnnotationsKey: updatedAnnotationsValue diff --git a/testdata/v1.33.0/extensions.v1beta1.Ingress.json b/testdata/v1.33.0/extensions.v1beta1.Ingress.json new file mode 100644 index 0000000000..aeb0351951 --- /dev/null +++ b/testdata/v1.33.0/extensions.v1beta1.Ingress.json @@ -0,0 +1,105 @@ +{ + "kind": "Ingress", + "apiVersion": "extensions/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "ingressClassName": "ingressClassNameValue", + "backend": { + "serviceName": "serviceNameValue", + "servicePort": "servicePortValue", + "resource": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue" + } + }, + "tls": [ + { + "hosts": [ + "hostsValue" + ], + "secretName": "secretNameValue" + } + ], + "rules": [ + { + "host": "hostValue", + "http": { + "paths": [ + { + "path": "pathValue", + "pathType": "pathTypeValue", + "backend": { + "serviceName": "serviceNameValue", + "servicePort": "servicePortValue", + "resource": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue" + } + } + } + ] + } + } + ] + }, + "status": { + "loadBalancer": { + "ingress": [ + { + "ip": "ipValue", + "hostname": "hostnameValue", + "ports": [ + { + "port": 1, + "protocol": "protocolValue", + "error": "errorValue" + } + ] + } + ] + } + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/extensions.v1beta1.Ingress.pb b/testdata/v1.33.0/extensions.v1beta1.Ingress.pb new file mode 100644 index 0000000000000000000000000000000000000000..d1203f1177d4bc0103f907f196d93a9e38216a7a GIT binary patch literal 726 zcmb`F!EVz)5QgovDE1U5W>pZfl#3-Uy+A7=LVHUOh=NcmAr9Qu?lfKE?3&$mL|V1? z_APpbH{cB_d0GpV@!DncZ<;dC&ub-!yW?1Xs_en;B}lN!oAu zNTO2Y#{>A)f{@b*exgN%~rw|r2!$Q5o8Ci3oy^*ERp_~g%wShM2 z_}^{f~zwgWLA>*`Q$2Fk!x$rZ1IH8=5P+Ea>L}}(< z;3t3Er1cEH=Qk^{w^f^AaiBiVO1GKqRcM`@4q{bh%T3s&p0{8hVufDX6$DHmEU7+n!vE(< zBICYXM*5h!Kek&?r5daqcnzxw8%war36q);T|XPQtuYL C!1gu( literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/extensions.v1beta1.Ingress.yaml b/testdata/v1.33.0/extensions.v1beta1.Ingress.yaml new file mode 100644 index 0000000000..13cedd0d4c --- /dev/null +++ b/testdata/v1.33.0/extensions.v1beta1.Ingress.yaml @@ -0,0 +1,69 @@ +apiVersion: extensions/v1beta1 +kind: Ingress +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + backend: + resource: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + serviceName: serviceNameValue + servicePort: servicePortValue + ingressClassName: ingressClassNameValue + rules: + - host: hostValue + http: + paths: + - backend: + resource: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + serviceName: serviceNameValue + servicePort: servicePortValue + path: pathValue + pathType: pathTypeValue + tls: + - hosts: + - hostsValue + secretName: secretNameValue +status: + loadBalancer: + ingress: + - hostname: hostnameValue + ip: ipValue + ports: + - error: errorValue + port: 1 + protocol: protocolValue diff --git a/testdata/v1.33.0/extensions.v1beta1.NetworkPolicy.json b/testdata/v1.33.0/extensions.v1beta1.NetworkPolicy.json new file mode 100644 index 0000000000..41d542a9bb --- /dev/null +++ b/testdata/v1.33.0/extensions.v1beta1.NetworkPolicy.json @@ -0,0 +1,163 @@ +{ + "kind": "NetworkPolicy", + "apiVersion": "extensions/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "podSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "ingress": [ + { + "ports": [ + { + "protocol": "protocolValue", + "port": "portValue", + "endPort": 3 + } + ], + "from": [ + { + "podSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "ipBlock": { + "cidr": "cidrValue", + "except": [ + "exceptValue" + ] + } + } + ] + } + ], + "egress": [ + { + "ports": [ + { + "protocol": "protocolValue", + "port": "portValue", + "endPort": 3 + } + ], + "to": [ + { + "podSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "ipBlock": { + "cidr": "cidrValue", + "except": [ + "exceptValue" + ] + } + } + ] + } + ], + "policyTypes": [ + "policyTypesValue" + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/extensions.v1beta1.NetworkPolicy.pb b/testdata/v1.33.0/extensions.v1beta1.NetworkPolicy.pb new file mode 100644 index 0000000000000000000000000000000000000000..4c7ce5ac9cbe0c9bb442c01cf47cd081b9649266 GIT binary patch literal 950 zcmds$F;4<96vyv`grf+Y7YB0VnK-a0Bqqd>Q3+u%4sN~Uf%T5|(iQ}btAn3HXLlFB zfe9bM#5g$n4Ybz^5@#m2e_vnU`~6?rxFsyKgFKi@pn@ z@_=Vub+lDzJI?&!<2mnIM@l_@z9`j0XEjtza0rPwhM89~QlAI|RKb)oiDibKZM!RL zopW)3iZP+4vH!~-ENSXhoRU?LeY<7z>VQz3kShhK>)hEP+8kkuhro5ftFSclzrgqZ zmI;)H_xV@OwVJ9JBzU|z{ka9J`GCJ=pO}i^=(|i{> zG0coE8xUr={L&;VWvIPZTa_!PoJkh3#N<~U+qL{+%DB{lTF!g2*W7olE`0R@BGUhv bdkLlyqz2vp=l%jW)!#3BIp#)vE3m!+^a4PJ literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/extensions.v1beta1.NetworkPolicy.yaml b/testdata/v1.33.0/extensions.v1beta1.NetworkPolicy.yaml new file mode 100644 index 0000000000..176cbe3313 --- /dev/null +++ b/testdata/v1.33.0/extensions.v1beta1.NetworkPolicy.yaml @@ -0,0 +1,97 @@ +apiVersion: extensions/v1beta1 +kind: NetworkPolicy +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + egress: + - ports: + - endPort: 3 + port: portValue + protocol: protocolValue + to: + - ipBlock: + cidr: cidrValue + except: + - exceptValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + podSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + ingress: + - from: + - ipBlock: + cidr: cidrValue + except: + - exceptValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + podSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + ports: + - endPort: 3 + port: portValue + protocol: protocolValue + podSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + policyTypes: + - policyTypesValue diff --git a/testdata/v1.33.0/extensions.v1beta1.ReplicaSet.json b/testdata/v1.33.0/extensions.v1beta1.ReplicaSet.json new file mode 100644 index 0000000000..0ede375564 --- /dev/null +++ b/testdata/v1.33.0/extensions.v1beta1.ReplicaSet.json @@ -0,0 +1,1809 @@ +{ + "kind": "ReplicaSet", + "apiVersion": "extensions/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "replicas": 1, + "minReadySeconds": 4, + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "template": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "volumes": [ + { + "name": "nameValue", + "hostPath": { + "path": "pathValue", + "type": "typeValue" + }, + "emptyDir": { + "medium": "mediumValue", + "sizeLimit": "0" + }, + "gcePersistentDisk": { + "pdName": "pdNameValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "awsElasticBlockStore": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "gitRepo": { + "repository": "repositoryValue", + "revision": "revisionValue", + "directory": "directoryValue" + }, + "secret": { + "secretName": "secretNameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "defaultMode": 3, + "optional": true + }, + "nfs": { + "server": "serverValue", + "path": "pathValue", + "readOnly": true + }, + "iscsi": { + "targetPortal": "targetPortalValue", + "iqn": "iqnValue", + "lun": 3, + "iscsiInterface": "iscsiInterfaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "portals": [ + "portalsValue" + ], + "chapAuthDiscovery": true, + "chapAuthSession": true, + "secretRef": { + "name": "nameValue" + }, + "initiatorName": "initiatorNameValue" + }, + "glusterfs": { + "endpoints": "endpointsValue", + "path": "pathValue", + "readOnly": true + }, + "persistentVolumeClaim": { + "claimName": "claimNameValue", + "readOnly": true + }, + "rbd": { + "monitors": [ + "monitorsValue" + ], + "image": "imageValue", + "fsType": "fsTypeValue", + "pool": "poolValue", + "user": "userValue", + "keyring": "keyringValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true + }, + "flexVolume": { + "driver": "driverValue", + "fsType": "fsTypeValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true, + "options": { + "optionsKey": "optionsValue" + } + }, + "cinder": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue" + } + }, + "cephfs": { + "monitors": [ + "monitorsValue" + ], + "path": "pathValue", + "user": "userValue", + "secretFile": "secretFileValue", + "secretRef": { + "name": "nameValue" + }, + "readOnly": true + }, + "flocker": { + "datasetName": "datasetNameValue", + "datasetUUID": "datasetUUIDValue" + }, + "downwardAPI": { + "items": [ + { + "path": "pathValue", + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "mode": 4 + } + ], + "defaultMode": 2 + }, + "fc": { + "targetWWNs": [ + "targetWWNsValue" + ], + "lun": 2, + "fsType": "fsTypeValue", + "readOnly": true, + "wwids": [ + "wwidsValue" + ] + }, + "azureFile": { + "secretName": "secretNameValue", + "shareName": "shareNameValue", + "readOnly": true + }, + "configMap": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "defaultMode": 3, + "optional": true + }, + "vsphereVolume": { + "volumePath": "volumePathValue", + "fsType": "fsTypeValue", + "storagePolicyName": "storagePolicyNameValue", + "storagePolicyID": "storagePolicyIDValue" + }, + "quobyte": { + "registry": "registryValue", + "volume": "volumeValue", + "readOnly": true, + "user": "userValue", + "group": "groupValue", + "tenant": "tenantValue" + }, + "azureDisk": { + "diskName": "diskNameValue", + "diskURI": "diskURIValue", + "cachingMode": "cachingModeValue", + "fsType": "fsTypeValue", + "readOnly": true, + "kind": "kindValue" + }, + "photonPersistentDisk": { + "pdID": "pdIDValue", + "fsType": "fsTypeValue" + }, + "projected": { + "sources": [ + { + "secret": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "optional": true + }, + "downwardAPI": { + "items": [ + { + "path": "pathValue", + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "mode": 4 + } + ] + }, + "configMap": { + "name": "nameValue", + "items": [ + { + "key": "keyValue", + "path": "pathValue", + "mode": 3 + } + ], + "optional": true + }, + "serviceAccountToken": { + "audience": "audienceValue", + "expirationSeconds": 2, + "path": "pathValue" + }, + "clusterTrustBundle": { + "name": "nameValue", + "signerName": "signerNameValue", + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "optional": true, + "path": "pathValue" + } + } + ], + "defaultMode": 2 + }, + "portworxVolume": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "scaleIO": { + "gateway": "gatewayValue", + "system": "systemValue", + "secretRef": { + "name": "nameValue" + }, + "sslEnabled": true, + "protectionDomain": "protectionDomainValue", + "storagePool": "storagePoolValue", + "storageMode": "storageModeValue", + "volumeName": "volumeNameValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "storageos": { + "volumeName": "volumeNameValue", + "volumeNamespace": "volumeNamespaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue" + } + }, + "csi": { + "driver": "driverValue", + "readOnly": true, + "fsType": "fsTypeValue", + "volumeAttributes": { + "volumeAttributesKey": "volumeAttributesValue" + }, + "nodePublishSecretRef": { + "name": "nameValue" + } + }, + "ephemeral": { + "volumeClaimTemplate": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "accessModes": [ + "accessModesValue" + ], + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + } + }, + "volumeName": "volumeNameValue", + "storageClassName": "storageClassNameValue", + "volumeMode": "volumeModeValue", + "dataSource": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue" + }, + "dataSourceRef": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue", + "namespace": "namespaceValue" + }, + "volumeAttributesClassName": "volumeAttributesClassNameValue" + } + } + }, + "image": { + "reference": "referenceValue", + "pullPolicy": "pullPolicyValue" + } + } + ], + "initContainers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true + } + ], + "containers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true + } + ], + "ephemeralContainers": [ + { + "name": "nameValue", + "image": "imageValue", + "command": [ + "commandValue" + ], + "args": [ + "argsValue" + ], + "workingDir": "workingDirValue", + "ports": [ + { + "name": "nameValue", + "hostPort": 2, + "containerPort": 3, + "protocol": "protocolValue", + "hostIP": "hostIPValue" + } + ], + "envFrom": [ + { + "prefix": "prefixValue", + "configMapRef": { + "name": "nameValue", + "optional": true + }, + "secretRef": { + "name": "nameValue", + "optional": true + } + } + ], + "env": [ + { + "name": "nameValue", + "value": "valueValue", + "valueFrom": { + "fieldRef": { + "apiVersion": "apiVersionValue", + "fieldPath": "fieldPathValue" + }, + "resourceFieldRef": { + "containerName": "containerNameValue", + "resource": "resourceValue", + "divisor": "0" + }, + "configMapKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + }, + "secretKeyRef": { + "name": "nameValue", + "key": "keyValue", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + }, + "resizePolicy": [ + { + "resourceName": "resourceNameValue", + "restartPolicy": "restartPolicyValue" + } + ], + "restartPolicy": "restartPolicyValue", + "volumeMounts": [ + { + "name": "nameValue", + "readOnly": true, + "recursiveReadOnly": "recursiveReadOnlyValue", + "mountPath": "mountPathValue", + "subPath": "subPathValue", + "mountPropagation": "mountPropagationValue", + "subPathExpr": "subPathExprValue" + } + ], + "volumeDevices": [ + { + "name": "nameValue", + "devicePath": "devicePathValue" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "readinessProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "startupProbe": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "grpc": { + "port": 1, + "service": "serviceValue" + }, + "initialDelaySeconds": 2, + "timeoutSeconds": 3, + "periodSeconds": 4, + "successThreshold": 5, + "failureThreshold": 6, + "terminationGracePeriodSeconds": 7 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "preStop": { + "exec": { + "command": [ + "commandValue" + ] + }, + "httpGet": { + "path": "pathValue", + "port": "portValue", + "host": "hostValue", + "scheme": "schemeValue", + "httpHeaders": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "tcpSocket": { + "port": "portValue", + "host": "hostValue" + }, + "sleep": { + "seconds": 1 + } + }, + "stopSignal": "stopSignalValue" + }, + "terminationMessagePath": "terminationMessagePathValue", + "terminationMessagePolicy": "terminationMessagePolicyValue", + "imagePullPolicy": "imagePullPolicyValue", + "securityContext": { + "capabilities": { + "add": [ + "addValue" + ], + "drop": [ + "dropValue" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 4, + "runAsGroup": 8, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "procMountValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + } + }, + "stdin": true, + "stdinOnce": true, + "tty": true, + "targetContainerName": "targetContainerNameValue" + } + ], + "restartPolicy": "restartPolicyValue", + "terminationGracePeriodSeconds": 4, + "activeDeadlineSeconds": 5, + "dnsPolicy": "dnsPolicyValue", + "nodeSelector": { + "nodeSelectorKey": "nodeSelectorValue" + }, + "serviceAccountName": "serviceAccountNameValue", + "serviceAccount": "serviceAccountValue", + "automountServiceAccountToken": true, + "nodeName": "nodeNameValue", + "hostNetwork": true, + "hostPID": true, + "hostIPC": true, + "shareProcessNamespace": true, + "securityContext": { + "seLinuxOptions": { + "user": "userValue", + "role": "roleValue", + "type": "typeValue", + "level": "levelValue" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", + "gmsaCredentialSpec": "gmsaCredentialSpecValue", + "runAsUserName": "runAsUserNameValue", + "hostProcess": true + }, + "runAsUser": 2, + "runAsGroup": 6, + "runAsNonRoot": true, + "supplementalGroups": [ + 4 + ], + "supplementalGroupsPolicy": "supplementalGroupsPolicyValue", + "fsGroup": 5, + "sysctls": [ + { + "name": "nameValue", + "value": "valueValue" + } + ], + "fsGroupChangePolicy": "fsGroupChangePolicyValue", + "seccompProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "appArmorProfile": { + "type": "typeValue", + "localhostProfile": "localhostProfileValue" + }, + "seLinuxChangePolicy": "seLinuxChangePolicyValue" + }, + "imagePullSecrets": [ + { + "name": "nameValue" + } + ], + "hostname": "hostnameValue", + "subdomain": "subdomainValue", + "affinity": { + "nodeAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "nodeSelectorTerms": [ + { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + ] + }, + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "preference": { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + } + ] + }, + "podAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": [ + { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + ], + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "podAffinityTerm": { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + } + ] + }, + "podAntiAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": [ + { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + ], + "preferredDuringSchedulingIgnoredDuringExecution": [ + { + "weight": 1, + "podAffinityTerm": { + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "namespaces": [ + "namespacesValue" + ], + "topologyKey": "topologyKeyValue", + "namespaceSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "matchLabelKeys": [ + "matchLabelKeysValue" + ], + "mismatchLabelKeys": [ + "mismatchLabelKeysValue" + ] + } + } + ] + } + }, + "schedulerName": "schedulerNameValue", + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ], + "hostAliases": [ + { + "ip": "ipValue", + "hostnames": [ + "hostnamesValue" + ] + } + ], + "priorityClassName": "priorityClassNameValue", + "priority": 25, + "dnsConfig": { + "nameservers": [ + "nameserversValue" + ], + "searches": [ + "searchesValue" + ], + "options": [ + { + "name": "nameValue", + "value": "valueValue" + } + ] + }, + "readinessGates": [ + { + "conditionType": "conditionTypeValue" + } + ], + "runtimeClassName": "runtimeClassNameValue", + "enableServiceLinks": true, + "preemptionPolicy": "preemptionPolicyValue", + "overhead": { + "overheadKey": "0" + }, + "topologySpreadConstraints": [ + { + "maxSkew": 1, + "topologyKey": "topologyKeyValue", + "whenUnsatisfiable": "whenUnsatisfiableValue", + "labelSelector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "minDomains": 5, + "nodeAffinityPolicy": "nodeAffinityPolicyValue", + "nodeTaintsPolicy": "nodeTaintsPolicyValue", + "matchLabelKeys": [ + "matchLabelKeysValue" + ] + } + ], + "setHostnameAsFQDN": true, + "os": { + "name": "nameValue" + }, + "hostUsers": true, + "schedulingGates": [ + { + "name": "nameValue" + } + ], + "resourceClaims": [ + { + "name": "nameValue", + "resourceClaimName": "resourceClaimNameValue", + "resourceClaimTemplateName": "resourceClaimTemplateNameValue" + } + ], + "resources": { + "limits": { + "limitsKey": "0" + }, + "requests": { + "requestsKey": "0" + }, + "claims": [ + { + "name": "nameValue", + "request": "requestValue" + } + ] + } + } + } + }, + "status": { + "replicas": 1, + "fullyLabeledReplicas": 2, + "readyReplicas": 4, + "availableReplicas": 5, + "terminatingReplicas": 7, + "observedGeneration": 3, + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "lastTransitionTime": "2003-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/extensions.v1beta1.ReplicaSet.pb b/testdata/v1.33.0/extensions.v1beta1.ReplicaSet.pb new file mode 100644 index 0000000000000000000000000000000000000000..1512b538469328ede1b96073830dccd9b9847f3f GIT binary patch literal 11000 zcmeHNO>7)V74{oD#8dN|ivQA^MBZjutXW{a7AsjJA;oqAir2}SNlaD-A$q!N#ufK; z_jdQ#aS##&A)#DAIV~%Jw2?qjI3VSiJs`4|-9^h`PY4MK1&PCoL*T^E0bW=2PtDlL z8pRQjc5dBO)m86Ry`S%U)tmFd5Sb>FT?v^JaMuZ5+QDCf!pPj^l<# z7|9)VSCw}$=JLxVzsViBu$IZMr_$6ahR0PwW?>%uN{c&&&99<>VxH^JB*l*57;WZ@ z23mH#NdH89t$!LFb-4e*e}=0=b2u5Zt>EI0CwHbkLUP~!&SEv_Hq)IDoBBp$6zB>; zy*fr{ZmgtgSCx0U{PSdVlkLdok`%?2l4*slXfi3c_Rd!a2lwO;?vLlmuf|mOcx#MI zki2Jv8}f+qVRHDCl0t`ByxWmI!vtovlceBTsVC7wD>Ig<;c3vPNomWqyB&7+wEU`n zL~WK-eCD|U4_!Yo3!iQA)W5W{#eHU`-E&_cm4KN(3$t}66{E_8pBj#2sB5GUFn=qt zf2AK5x5$yu@Y^h0b^Xw=rHrHeb?Mqu!}?Jkm;pcQgv@Ux0ivcVF$?vgCq9;jdkPu_ zWkX+sCglzfxq%9#0xzE+W#(9(%bieuMpdyIl$1@|;GOh?Dy)B%iNZ_*3?O6;p%gwY8jyssP>SwtgXd%cMZNt z)>XTHmh{IxS{Bi6H8Fi{hEUUWLW5(zNDqRRdLo||dBOBZHFq7*ETt)3x^!NiX*Jh# zF1UAOdz)Lb^9Fo+w;h**4a3he(-gdk->CZ1M_Kw!SRobZZmAYME~!lfXg+8(t1jlp zom44(tfxKRv)iypP}?>S!o)KRa&~dpQ=n(3R3mNQ?RwJE3Yd`%CloJt;4CRwJlISZ zqs8cTt#MZLYgN-QH_$B4xmKKhRpXn1xhxId1x%@)wO1&)2PYqGdhf#zfE3%9_qUBW z%oKv1AY?L{^&9!P=er>W9n6xa-42?7)U2BBQ|w^%q$L%9F+PD*-(^*wRrnBomm}}x z$jtuEbsFe5o}}fXmG8^GFqR)DC8KL`=EOJ&%{%kh+O`t(XeHon)oZi^#ReGQ5+|L3 zYVHrPl$d?G>2yq5YSfS+yMA|6HNOv+dSYM|dPeJ?BS+_NYyY+76g$$#+mhbQbi=rJ3JI87Dem`%lPbd1e;l#*6+Cb zff{XXJdPbpwh;uWq0Ystrtzcx8FVv`enaQ>nr;WlhGZ>z9+8zigIZew>%HGT%U?w};!!UI<_3!i zb!}3Syyt9=lm0oVGDj5|V==v&Lm;`V}iA;_J)+J{{S*hMh#0w4w|>nwuP;s zFMOV4IFsgmH|7CaMoo2Mvn?hm51J4}m5@`T%Vi8H=DEm`#8izH@=UuE7)w60n1hVW zzTh!4jl^_vcc-*`>UW)mU=58m9Xt)|I>`i}+{EAqXR(fI)ZbW~>O*pZ~P77!+X1EQwNUP24DDJ@1?qzr3v*bv^ zx6-|*6q}H0A!m3`kAhOl970hrG2E++3 z;1o_ZAWlj88W5+frbqi}qo&ZtgP@)R;*{L!4TzIMQ8PC2NheOX0PesSl{?kGi+ZI3 zrx#eOg{(B#pSwN}cY2GC@4~SUp-!p-tBRXi`2ocr zF$^E`XpCJS#(;hga399RZJmWTt*(>)u<#L#BXFmXn4OV>ds$MuLBBL!w$PKw84Ka|NZU*{O3}~dubzxe=V&Qv3M6< Op9pj{e^?vRhyDu|0WXdK literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/extensions.v1beta1.ReplicaSet.yaml b/testdata/v1.33.0/extensions.v1beta1.ReplicaSet.yaml new file mode 100644 index 0000000000..d28a057358 --- /dev/null +++ b/testdata/v1.33.0/extensions.v1beta1.ReplicaSet.yaml @@ -0,0 +1,1241 @@ +apiVersion: extensions/v1beta1 +kind: ReplicaSet +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + minReadySeconds: 4 + replicas: 1 + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + template: + metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + activeDeadlineSeconds: 5 + affinity: + nodeAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - preference: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + podAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + weight: 1 + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + mismatchLabelKeys: + - mismatchLabelKeysValue + namespaceSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + namespaces: + - namespacesValue + topologyKey: topologyKeyValue + automountServiceAccountToken: true + containers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + dnsConfig: + nameservers: + - nameserversValue + options: + - name: nameValue + value: valueValue + searches: + - searchesValue + dnsPolicy: dnsPolicyValue + enableServiceLinks: true + ephemeralContainers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + targetContainerName: targetContainerNameValue + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + hostAliases: + - hostnames: + - hostnamesValue + ip: ipValue + hostIPC: true + hostNetwork: true + hostPID: true + hostUsers: true + hostname: hostnameValue + imagePullSecrets: + - name: nameValue + initContainers: + - args: + - argsValue + command: + - commandValue + env: + - name: nameValue + value: valueValue + valueFrom: + configMapKeyRef: + key: keyValue + name: nameValue + optional: true + fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secretKeyRef: + key: keyValue + name: nameValue + optional: true + envFrom: + - configMapRef: + name: nameValue + optional: true + prefix: prefixValue + secretRef: + name: nameValue + optional: true + image: imageValue + imagePullPolicy: imagePullPolicyValue + lifecycle: + postStart: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + preStop: + exec: + command: + - commandValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + sleep: + seconds: 1 + tcpSocket: + host: hostValue + port: portValue + stopSignal: stopSignalValue + livenessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + name: nameValue + ports: + - containerPort: 3 + hostIP: hostIPValue + hostPort: 2 + name: nameValue + protocol: protocolValue + readinessProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + resizePolicy: + - resourceName: resourceNameValue + restartPolicy: restartPolicyValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + securityContext: + allowPrivilegeEscalation: true + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + capabilities: + add: + - addValue + drop: + - dropValue + privileged: true + procMount: procMountValue + readOnlyRootFilesystem: true + runAsGroup: 8 + runAsNonRoot: true + runAsUser: 4 + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + startupProbe: + exec: + command: + - commandValue + failureThreshold: 6 + grpc: + port: 1 + service: serviceValue + httpGet: + host: hostValue + httpHeaders: + - name: nameValue + value: valueValue + path: pathValue + port: portValue + scheme: schemeValue + initialDelaySeconds: 2 + periodSeconds: 4 + successThreshold: 5 + tcpSocket: + host: hostValue + port: portValue + terminationGracePeriodSeconds: 7 + timeoutSeconds: 3 + stdin: true + stdinOnce: true + terminationMessagePath: terminationMessagePathValue + terminationMessagePolicy: terminationMessagePolicyValue + tty: true + volumeDevices: + - devicePath: devicePathValue + name: nameValue + volumeMounts: + - mountPath: mountPathValue + mountPropagation: mountPropagationValue + name: nameValue + readOnly: true + recursiveReadOnly: recursiveReadOnlyValue + subPath: subPathValue + subPathExpr: subPathExprValue + workingDir: workingDirValue + nodeName: nodeNameValue + nodeSelector: + nodeSelectorKey: nodeSelectorValue + os: + name: nameValue + overhead: + overheadKey: "0" + preemptionPolicy: preemptionPolicyValue + priority: 25 + priorityClassName: priorityClassNameValue + readinessGates: + - conditionType: conditionTypeValue + resourceClaims: + - name: nameValue + resourceClaimName: resourceClaimNameValue + resourceClaimTemplateName: resourceClaimTemplateNameValue + resources: + claims: + - name: nameValue + request: requestValue + limits: + limitsKey: "0" + requests: + requestsKey: "0" + restartPolicy: restartPolicyValue + runtimeClassName: runtimeClassNameValue + schedulerName: schedulerNameValue + schedulingGates: + - name: nameValue + securityContext: + appArmorProfile: + localhostProfile: localhostProfileValue + type: typeValue + fsGroup: 5 + fsGroupChangePolicy: fsGroupChangePolicyValue + runAsGroup: 6 + runAsNonRoot: true + runAsUser: 2 + seLinuxChangePolicy: seLinuxChangePolicyValue + seLinuxOptions: + level: levelValue + role: roleValue + type: typeValue + user: userValue + seccompProfile: + localhostProfile: localhostProfileValue + type: typeValue + supplementalGroups: + - 4 + supplementalGroupsPolicy: supplementalGroupsPolicyValue + sysctls: + - name: nameValue + value: valueValue + windowsOptions: + gmsaCredentialSpec: gmsaCredentialSpecValue + gmsaCredentialSpecName: gmsaCredentialSpecNameValue + hostProcess: true + runAsUserName: runAsUserNameValue + serviceAccount: serviceAccountValue + serviceAccountName: serviceAccountNameValue + setHostnameAsFQDN: true + shareProcessNamespace: true + subdomain: subdomainValue + terminationGracePeriodSeconds: 4 + tolerations: + - effect: effectValue + key: keyValue + operator: operatorValue + tolerationSeconds: 5 + value: valueValue + topologySpreadConstraints: + - labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + matchLabelKeys: + - matchLabelKeysValue + maxSkew: 1 + minDomains: 5 + nodeAffinityPolicy: nodeAffinityPolicyValue + nodeTaintsPolicy: nodeTaintsPolicyValue + topologyKey: topologyKeyValue + whenUnsatisfiable: whenUnsatisfiableValue + volumes: + - awsElasticBlockStore: + fsType: fsTypeValue + partition: 3 + readOnly: true + volumeID: volumeIDValue + azureDisk: + cachingMode: cachingModeValue + diskName: diskNameValue + diskURI: diskURIValue + fsType: fsTypeValue + kind: kindValue + readOnly: true + azureFile: + readOnly: true + secretName: secretNameValue + shareName: shareNameValue + cephfs: + monitors: + - monitorsValue + path: pathValue + readOnly: true + secretFile: secretFileValue + secretRef: + name: nameValue + user: userValue + cinder: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + volumeID: volumeIDValue + configMap: + defaultMode: 3 + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + csi: + driver: driverValue + fsType: fsTypeValue + nodePublishSecretRef: + name: nameValue + readOnly: true + volumeAttributes: + volumeAttributesKey: volumeAttributesValue + downwardAPI: + defaultMode: 2 + items: + - fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + mode: 4 + path: pathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + emptyDir: + medium: mediumValue + sizeLimit: "0" + ephemeral: + volumeClaimTemplate: + metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + accessModes: + - accessModesValue + dataSource: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + dataSourceRef: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resources: + limits: + limitsKey: "0" + requests: + requestsKey: "0" + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + storageClassName: storageClassNameValue + volumeAttributesClassName: volumeAttributesClassNameValue + volumeMode: volumeModeValue + volumeName: volumeNameValue + fc: + fsType: fsTypeValue + lun: 2 + readOnly: true + targetWWNs: + - targetWWNsValue + wwids: + - wwidsValue + flexVolume: + driver: driverValue + fsType: fsTypeValue + options: + optionsKey: optionsValue + readOnly: true + secretRef: + name: nameValue + flocker: + datasetName: datasetNameValue + datasetUUID: datasetUUIDValue + gcePersistentDisk: + fsType: fsTypeValue + partition: 3 + pdName: pdNameValue + readOnly: true + gitRepo: + directory: directoryValue + repository: repositoryValue + revision: revisionValue + glusterfs: + endpoints: endpointsValue + path: pathValue + readOnly: true + hostPath: + path: pathValue + type: typeValue + image: + pullPolicy: pullPolicyValue + reference: referenceValue + iscsi: + chapAuthDiscovery: true + chapAuthSession: true + fsType: fsTypeValue + initiatorName: initiatorNameValue + iqn: iqnValue + iscsiInterface: iscsiInterfaceValue + lun: 3 + portals: + - portalsValue + readOnly: true + secretRef: + name: nameValue + targetPortal: targetPortalValue + name: nameValue + nfs: + path: pathValue + readOnly: true + server: serverValue + persistentVolumeClaim: + claimName: claimNameValue + readOnly: true + photonPersistentDisk: + fsType: fsTypeValue + pdID: pdIDValue + portworxVolume: + fsType: fsTypeValue + readOnly: true + volumeID: volumeIDValue + projected: + defaultMode: 2 + sources: + - clusterTrustBundle: + labelSelector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + name: nameValue + optional: true + path: pathValue + signerName: signerNameValue + configMap: + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + downwardAPI: + items: + - fieldRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + mode: 4 + path: pathValue + resourceFieldRef: + containerName: containerNameValue + divisor: "0" + resource: resourceValue + secret: + items: + - key: keyValue + mode: 3 + path: pathValue + name: nameValue + optional: true + serviceAccountToken: + audience: audienceValue + expirationSeconds: 2 + path: pathValue + quobyte: + group: groupValue + readOnly: true + registry: registryValue + tenant: tenantValue + user: userValue + volume: volumeValue + rbd: + fsType: fsTypeValue + image: imageValue + keyring: keyringValue + monitors: + - monitorsValue + pool: poolValue + readOnly: true + secretRef: + name: nameValue + user: userValue + scaleIO: + fsType: fsTypeValue + gateway: gatewayValue + protectionDomain: protectionDomainValue + readOnly: true + secretRef: + name: nameValue + sslEnabled: true + storageMode: storageModeValue + storagePool: storagePoolValue + system: systemValue + volumeName: volumeNameValue + secret: + defaultMode: 3 + items: + - key: keyValue + mode: 3 + path: pathValue + optional: true + secretName: secretNameValue + storageos: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + volumeName: volumeNameValue + volumeNamespace: volumeNamespaceValue + vsphereVolume: + fsType: fsTypeValue + storagePolicyID: storagePolicyIDValue + storagePolicyName: storagePolicyNameValue + volumePath: volumePathValue +status: + availableReplicas: 5 + conditions: + - lastTransitionTime: "2003-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue + fullyLabeledReplicas: 2 + observedGeneration: 3 + readyReplicas: 4 + replicas: 1 + terminatingReplicas: 7 diff --git a/testdata/v1.33.0/extensions.v1beta1.Scale.json b/testdata/v1.33.0/extensions.v1beta1.Scale.json new file mode 100644 index 0000000000..74603e1ccb --- /dev/null +++ b/testdata/v1.33.0/extensions.v1beta1.Scale.json @@ -0,0 +1,56 @@ +{ + "kind": "Scale", + "apiVersion": "extensions/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "replicas": 1 + }, + "status": { + "replicas": 1, + "selector": { + "selectorKey": "selectorValue" + }, + "targetSelector": "targetSelectorValue" + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/extensions.v1beta1.Scale.pb b/testdata/v1.33.0/extensions.v1beta1.Scale.pb new file mode 100644 index 0000000000000000000000000000000000000000..394e86eef4d5ec60b24297c5c75f9b79d9ffcdb2 GIT binary patch literal 454 zcmZ8dyG{Z@6x{`k%b>817G|~Dl13pRA(oVCj0wiV?k-%&$S}K^nKh#E2mA;VYd^t1 zFySAJg|&a6GqVBF?%Z=9=iD>tDv#_DinkhtVyRFEH?0IUwCGxY037L4nY@=sRlpQ4 zf#*oK#wbvN#Mu{pkOh*!=J@|1O7K+Z;na zR2Q?XNami!?ni@hI% C=$oVf literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/extensions.v1beta1.Scale.yaml b/testdata/v1.33.0/extensions.v1beta1.Scale.yaml new file mode 100644 index 0000000000..4d8465601b --- /dev/null +++ b/testdata/v1.33.0/extensions.v1beta1.Scale.yaml @@ -0,0 +1,41 @@ +apiVersion: extensions/v1beta1 +kind: Scale +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + replicas: 1 +status: + replicas: 1 + selector: + selectorKey: selectorValue + targetSelector: targetSelectorValue diff --git a/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1.FlowSchema.json b/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1.FlowSchema.json new file mode 100644 index 0000000000..2afc3cf008 --- /dev/null +++ b/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1.FlowSchema.json @@ -0,0 +1,112 @@ +{ + "kind": "FlowSchema", + "apiVersion": "flowcontrol.apiserver.k8s.io/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "priorityLevelConfiguration": { + "name": "nameValue" + }, + "matchingPrecedence": 2, + "distinguisherMethod": { + "type": "typeValue" + }, + "rules": [ + { + "subjects": [ + { + "kind": "kindValue", + "user": { + "name": "nameValue" + }, + "group": { + "name": "nameValue" + }, + "serviceAccount": { + "namespace": "namespaceValue", + "name": "nameValue" + } + } + ], + "resourceRules": [ + { + "verbs": [ + "verbsValue" + ], + "apiGroups": [ + "apiGroupsValue" + ], + "resources": [ + "resourcesValue" + ], + "clusterScope": true, + "namespaces": [ + "namespacesValue" + ] + } + ], + "nonResourceRules": [ + { + "verbs": [ + "verbsValue" + ], + "nonResourceURLs": [ + "nonResourceURLsValue" + ] + } + ] + } + ] + }, + "status": { + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "lastTransitionTime": "2003-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1.FlowSchema.pb b/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1.FlowSchema.pb new file mode 100644 index 0000000000000000000000000000000000000000..e146421bd86ac2588ecb7734a8b39e17c3e55ef9 GIT binary patch literal 681 zcmZ8f%SyvQ6isTu_Eyt4xRAI|W?8UmK`4Ra1tpH`gdi=&Y-I!)=nXGQuDC06Ns*vsFjl7 z)I^PG#kEWn;<(a*6sFo7Z#rh>TP~SDrsmYda)Y^8fpRwx>BHV1e>!4QtD^QiktMrnt7<0@EDWxZpxJY0`!LaCf}L?? z3dE7oK>v`w_kRsV4ezf%W3JV}Wjs99hgVVR%xVz|H@7WUC;rF@W9qXFm7K|L!NW8j zj?o7jS~)o+j~yUK*P*lU?-=B-N!9`I(0(e6I4FNp$s|g1&lyrm^Le{g9o;p9(ENhN yw2)#yJLu8=PKH^BwH$R)(RigK>!CB>&tK>attifP_5o@W_kbPkje%X>VO#7-1b_TxOQYGMFsH#`~@?g zzz-m#ZhQb@VD8QUu0u=2_I&s5?!D)zDGhXlwg;5o^f*fdry-7s1Th8?Mok$KzB}Ic z{Ei@8kYv(^G0+pv24t8DoDj~uHw(QNki+l@E-_8PTOR@g)r9j!$*;`2GRD1(60Av} zgEnE2o~YX?>1)*36d-vj6c2<{+jX_M+OqBGoI0jglec%mihwwrrv&h-IuBEqu6{-6F}sit04S>%Q6nN3qv2ZUitZk0g2=fUiv z@(43L1fdIFg~xOM3;F*4HG%T*G5xk&qoI}o?aPZvoF#KuM1{NimMhclG6@}Oh@50W z^0sW#+sGGIY||~&teUk`^ow)sAFFT8O_ZdHBFzN*>ipNsOq~x(0BE`K~De$IUlZZhM;Y$YN zVLy^1JJG6T(V2}pD;kZ;G~rO2NJ(4mF7#@(``-_Ls=o7;qPwTR6z#+5N2tdl#Mpep zE7r(EI}vj5gp?{3DJ`*Wzm!|d_fJqCMKXUlc;nCKY+6kcpiE@b?Yg=-jHHO8pG45^ z`Q?VNI2KZzqqYU+sbqTpjDGNb4W}Fa-@knDoenL-_{F{uiyXB+mnHMk&wN z+*Wh$YXRZq1)UYCjmN19Nu1)*76d-vj6c2<{+jX_I+P19e?d0B?bA5p9h_LLi_ov@qs%g|zAbBBsX3G?{0b!VuTP0BM zc`!p%8DWNpAaud4@_6olA>aGI##bIbrr$-!XsTsE`|@HEXUQCvP~q;r?Z`A-CZR(O zkew_@?v`b`8~MVDWjcj=v0mIRd8Ik_j?qz`P?jo+G!yKp^ItDBb>1%v!16ccMn!#* LR4%j$&+v^Oagw;N literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta1.PriorityLevelConfiguration.yaml b/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta1.PriorityLevelConfiguration.yaml new file mode 100644 index 0000000000..f185e6dbce --- /dev/null +++ b/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta1.PriorityLevelConfiguration.yaml @@ -0,0 +1,56 @@ +apiVersion: flowcontrol.apiserver.k8s.io/v1beta1 +kind: PriorityLevelConfiguration +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + exempt: + lendablePercent: 2 + nominalConcurrencyShares: 1 + limited: + assuredConcurrencyShares: 1 + borrowingLimitPercent: 4 + lendablePercent: 3 + limitResponse: + queuing: + handSize: 2 + queueLengthLimit: 3 + queues: 1 + type: typeValue + type: typeValue +status: + conditions: + - lastTransitionTime: "2003-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue diff --git a/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta2.FlowSchema.json b/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta2.FlowSchema.json new file mode 100644 index 0000000000..9270c20610 --- /dev/null +++ b/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta2.FlowSchema.json @@ -0,0 +1,112 @@ +{ + "kind": "FlowSchema", + "apiVersion": "flowcontrol.apiserver.k8s.io/v1beta2", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "priorityLevelConfiguration": { + "name": "nameValue" + }, + "matchingPrecedence": 2, + "distinguisherMethod": { + "type": "typeValue" + }, + "rules": [ + { + "subjects": [ + { + "kind": "kindValue", + "user": { + "name": "nameValue" + }, + "group": { + "name": "nameValue" + }, + "serviceAccount": { + "namespace": "namespaceValue", + "name": "nameValue" + } + } + ], + "resourceRules": [ + { + "verbs": [ + "verbsValue" + ], + "apiGroups": [ + "apiGroupsValue" + ], + "resources": [ + "resourcesValue" + ], + "clusterScope": true, + "namespaces": [ + "namespacesValue" + ] + } + ], + "nonResourceRules": [ + { + "verbs": [ + "verbsValue" + ], + "nonResourceURLs": [ + "nonResourceURLsValue" + ] + } + ] + } + ] + }, + "status": { + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "lastTransitionTime": "2003-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta2.FlowSchema.pb b/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta2.FlowSchema.pb new file mode 100644 index 0000000000000000000000000000000000000000..e62f711aebf5d7507fb3a1bb1ff2bd29737e404a GIT binary patch literal 686 zcmZ8f%}(1u5Vk|4CKGVXiUTqiwBnRQ082;_5<<#>N-e4o&>pz0!-SeRyVkA^0>lgO z796WSLSFz?;vK3UdM$SjFj+gn;x<3u%zpEIJL(w+LRcFn>T;lDrd84vX>3qmpze-( zrW>pEi_Hi#5i-~#)Y0HOjs^Q)hd(uFN-@T7BFT|0o}ol7GW;?v1>U4hnRPIMZ1d}^a`NuyD@CLC%LD`~5}5B)~t@&4bhy6=3V=;zaKiVomp8JdZRFfpI; zinWT+PDC6$A*IShMoVnlujCeUz6H%uEQ^POH~xIarqdg)-Z9sNLN5eUnEsC9J3q zF0?8l`?Y}5Y&yn&xX`bh!>ZT`a^?jmN19Nuf?er+W>2Q_`PD4B-62u5Zm_#xpe0Q`T zLy8-o-xh=ml8#$20(!z(kMuKvQ^J||W}){2au^=KC8im8>wRFLns7cZ`IT8$4sj=^ z1Zxs#uSHm*C+c=ax*9b$1xTI=#RDPLc3q8Do3=f9{CqCD#;HP2(^rMs=&FVsiesSi z48~q5hk7CoPz5u_Q!P=q-KDqYTpu7OAuK=a|LG4FYU))L$g+?esPBVV|27kC`lDXmJ9aP`LCC$IvZv@5fM7@dM0u3RzF`=fAxJm>>39;uri3%SzpOitGF$a$e=z&-5z#L zJ5sBsYayoM3xltO`rbdmkzh|%xUWE6iV^-2afWRE7$s_v;@+ebc;l`~L_de{IfL{;ZU1MNn7oH>eXs@{~oWazOzly)$=Vy`*64j^;m=$n;kr7 zjXbmyAqP)LsZx>B65IAmxyAfmhx#y*`NP3Ge?Dc?YLWnDBA?x^tDA#Jia5F;f_Bee zH-y=dkm4A%Eig|dqEzQ+N0hd@zH(H`x{dxgF+*F^|swrd5{YdEiYb<@vJP zYEFGEAiTVwvmli`C=C61uv=iZV6#M>H4M3w6+Kes<>r}`;SG(#6d#~9OTWjEz*gVD G;m#ZRg6l8< literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta3.FlowSchema.yaml b/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta3.FlowSchema.yaml new file mode 100644 index 0000000000..7e5c4329c0 --- /dev/null +++ b/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta3.FlowSchema.yaml @@ -0,0 +1,72 @@ +apiVersion: flowcontrol.apiserver.k8s.io/v1beta3 +kind: FlowSchema +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + distinguisherMethod: + type: typeValue + matchingPrecedence: 2 + priorityLevelConfiguration: + name: nameValue + rules: + - nonResourceRules: + - nonResourceURLs: + - nonResourceURLsValue + verbs: + - verbsValue + resourceRules: + - apiGroups: + - apiGroupsValue + clusterScope: true + namespaces: + - namespacesValue + resources: + - resourcesValue + verbs: + - verbsValue + subjects: + - group: + name: nameValue + kind: kindValue + serviceAccount: + name: nameValue + namespace: namespaceValue + user: + name: nameValue +status: + conditions: + - lastTransitionTime: "2003-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue diff --git a/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.json b/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.json new file mode 100644 index 0000000000..9bcd0b5ab2 --- /dev/null +++ b/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.json @@ -0,0 +1,77 @@ +{ + "kind": "PriorityLevelConfiguration", + "apiVersion": "flowcontrol.apiserver.k8s.io/v1beta3", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "type": "typeValue", + "limited": { + "nominalConcurrencyShares": 1, + "limitResponse": { + "type": "typeValue", + "queuing": { + "queues": 1, + "handSize": 2, + "queueLengthLimit": 3 + } + }, + "lendablePercent": 3, + "borrowingLimitPercent": 4 + }, + "exempt": { + "nominalConcurrencyShares": 1, + "lendablePercent": 2 + } + }, + "status": { + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "lastTransitionTime": "2003-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.pb b/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.pb new file mode 100644 index 0000000000000000000000000000000000000000..f7d8d446bbcb5ae53a77dc4c377af7b60eb47d9b GIT binary patch literal 547 zcmZ8eu};G<5KY<&61S8P7^<+Kh^a$>BBTllA(ag()B!QDIqkJFaqY-XiVETf_zPw} zfgeCf-S_~+z}%eyT!)s3?fLHA-FwebQyQp+w)>RdbU8}|rvZ+M1Tg{;L`@kGzBAej zA;J5u*AavZl8oCh0(!z(pA1rg6T+GMRz&XwWHUU3OH5O6*9O2qHQ{_-@~X40jBz)k z_$v}2K7Yfqbg>MCt9LzJGr;!Tpu7iA}l-X{pt4?YU-;hki3vxvuTReK4F-WTP0BM zc`!p%8DfS9Aaud4@_6QdF5mmV##bIbCf`NJXsBgCd-7r&XUQCvP~q;r<;XN#B%wnM zke$p)?xtnB>-oZxWjcjgu~ytFd8HZlj?qz`P?jo+G!yKp^ItDhb>1%v!16ccdPRMa LR4%j$&+v^Ob%MCD literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.yaml b/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.yaml new file mode 100644 index 0000000000..2bb7ded37f --- /dev/null +++ b/testdata/v1.33.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.yaml @@ -0,0 +1,56 @@ +apiVersion: flowcontrol.apiserver.k8s.io/v1beta3 +kind: PriorityLevelConfiguration +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + exempt: + lendablePercent: 2 + nominalConcurrencyShares: 1 + limited: + borrowingLimitPercent: 4 + lendablePercent: 3 + limitResponse: + queuing: + handSize: 2 + queueLengthLimit: 3 + queues: 1 + type: typeValue + nominalConcurrencyShares: 1 + type: typeValue +status: + conditions: + - lastTransitionTime: "2003-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue diff --git a/testdata/v1.33.0/imagepolicy.k8s.io.v1alpha1.ImageReview.json b/testdata/v1.33.0/imagepolicy.k8s.io.v1alpha1.ImageReview.json new file mode 100644 index 0000000000..c05070e537 --- /dev/null +++ b/testdata/v1.33.0/imagepolicy.k8s.io.v1alpha1.ImageReview.json @@ -0,0 +1,64 @@ +{ + "kind": "ImageReview", + "apiVersion": "imagepolicy.k8s.io/v1alpha1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "containers": [ + { + "image": "imageValue" + } + ], + "annotations": { + "annotationsKey": "annotationsValue" + }, + "namespace": "namespaceValue" + }, + "status": { + "allowed": true, + "reason": "reasonValue", + "auditAnnotations": { + "auditAnnotationsKey": "auditAnnotationsValue" + } + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/imagepolicy.k8s.io.v1alpha1.ImageReview.pb b/testdata/v1.33.0/imagepolicy.k8s.io.v1alpha1.ImageReview.pb new file mode 100644 index 0000000000000000000000000000000000000000..b71c3c9ceaad4f2fa6b596b5047a23cb0164cfbb GIT binary patch literal 541 zcma)3%}&BV5N?6QvLMu|iK(|9i9sPDX-quG&7T-!j0bO17;x>fZFXA>8ehP-@a!Y_ z1}40N@xa+P&}A!#oVi`GAT_d02hhhjVze`=hrX=SXm{8E7T-X_DIHCV z7dWJN=S=eCJx7Wh26zQ5MQ5##90eqJHly6iv?^ohWG&vRMAkc{Jk%34E2UkHni~RT zlnT{{Lehw9)?aB`*7$kyTCj~{g^C#teDlo?d|{wnV$2N8aRq? zaKo|M3FEjA9pHj6>OAGpM+Oxr9zq94DL5N_pulkg=X1!lrdbi=t}gM`1w_3wLIJnxb2#m`Y2y z0vwCQ)BWXS^>+W#cyfo&$xqfcnvx8nP+X2eKpY)vZbQ7 zy36sQ9##R`Wg(&cRiW-y2ol9XG&fRf^)}T}!&$8c9kDr3TbGn cyQFJEs84d7}E?2JU1$y1zo>lM@&Q2-8Mj2EO(Bzo+w)OzP;A8h5S zdh9Rt2MaZw7Rl+VkX^ODsCgdE2sTE9kpzWqcn;5J{^#=jzchjJ@GS5XX~RX)>BNh6)lWLcmK8RSRO(TYC^c5D((Pi)`C%U7PNP-9)M43wZJs zJo^Z~fzWpl58eddKsUSg1M%o>c4qd!zyHkkYQlhJC{i3>Gu|V#Tj|wAg|OADbuYI^ zyBrJQJoO&p2?Jn-gpsBSa^$RkQwjAALG z%I?%z^;~X%Ej{Un{Rw|CrYRRtM5aO3%$msy9YRq^ZX}@6xi_0I-$xX6F;@vM&!W`- z2;cuL6G#tl!><|Fs7f&$w#CUH(v#WFLgx0a?uw*2o`f3ehY1aT1sqAV%UKfXm;N^3 zPjADSI=C6H1aQGbtkJ!Kz%7pB$)X~#)3R1?0fKX|BNSig#D5U@PO3LH94yLjmHwkf sh=iDc?7$XmLXP|xbyBMI6Dg3OWSO25aTc={3suSo%sJBw@QuLu1{;OzG5`Po literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/networking.k8s.io.v1.Ingress.yaml b/testdata/v1.33.0/networking.k8s.io.v1.Ingress.yaml new file mode 100644 index 0000000000..b01d1b3445 --- /dev/null +++ b/testdata/v1.33.0/networking.k8s.io.v1.Ingress.yaml @@ -0,0 +1,75 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + defaultBackend: + resource: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + service: + name: nameValue + port: + name: nameValue + number: 2 + ingressClassName: ingressClassNameValue + rules: + - host: hostValue + http: + paths: + - backend: + resource: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + service: + name: nameValue + port: + name: nameValue + number: 2 + path: pathValue + pathType: pathTypeValue + tls: + - hosts: + - hostsValue + secretName: secretNameValue +status: + loadBalancer: + ingress: + - hostname: hostnameValue + ip: ipValue + ports: + - error: errorValue + port: 1 + protocol: protocolValue diff --git a/testdata/v1.33.0/networking.k8s.io.v1.IngressClass.json b/testdata/v1.33.0/networking.k8s.io.v1.IngressClass.json new file mode 100644 index 0000000000..99065b04ec --- /dev/null +++ b/testdata/v1.33.0/networking.k8s.io.v1.IngressClass.json @@ -0,0 +1,56 @@ +{ + "kind": "IngressClass", + "apiVersion": "networking.k8s.io/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "controller": "controllerValue", + "parameters": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue", + "scope": "scopeValue", + "namespace": "namespaceValue" + } + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/networking.k8s.io.v1.IngressClass.pb b/testdata/v1.33.0/networking.k8s.io.v1.IngressClass.pb new file mode 100644 index 0000000000000000000000000000000000000000..1f883673983eec5d648e44c34fbafc3fb0b5df87 GIT binary patch literal 490 zcmZuuJ5Iwu5OqEh$&in+QXrQWm5Tt8kSsbvf%phfL=<#uXJaki>{>f^P(WOOTTpWX z#0`*g2Sh>54PdiYLKM-xoq6--z1bu{3wEF*Xm%%6!bIFn0_-xmJK1*{ry^Dq@t6}t z=d}VKWvB}>rq_h$)Y*!upo(Pla#3x!A8GUn>~NMRc-4`qnGb@jjrHk8|s{dl;b&_I-3PF6QKt!B81FHrbSHKUU?hN z?E%zvuwt?M=ighp@!KS2t48)pK}oeoOc2iQwLzovR0^RnCW6FNnS#@j={*0!zPm2t z=?tH4?>98A;VGKWj-<$xdvJ3>`;Kn!e7>K2pKj_jlm5Gw;;0W&)b ze}L3aKtc@6`~f&NEfsSow)6S<-rchu`CJ2Aph-}AL0N>!q!anPgXzv}&#?xI9nu(w zxpP|uZzW(7I7KHg&XBV?K?E_FqQQc4>%}flV5mwwi=%kl$0U*`+D3*)5_Ovlahfqv zhZx6{NY=0R3}gQA@m#UBLxCPYUj!P0(-tse7@(LRq1>q{C{F|)s6#?%3R58>x9yd+ ztU2EYrbwn5yTAUurJHsGCV17zuI}rsF~$VO_(~X*I(K>iHl~ok31X6P>NF|xFYLR2 zWjvALeg0LpwXP6D@rWPiiJHto1(dFDdN$93E4Fqb(d*BLL>F+|1S2LP#^Mymj#)sp5qe+|#*&O=l0>!bmA9I? z+XX}VDh|6#{oX=Nt4>n7DrCD9lz6>Q8HwqG6sUNfOCi*TgpmPqRdB2%o%)~4cmLCP z(!9Uq|-h=Oj7U(DjouC;4}0^$PPfr6SN za08^=0Z~wM1K6yU575o~&6}AtR2FQ3&oRFhGNnA}q@n6iv3=7eEW09I&psR+#IZ!B zyr&wxSHb3Fgy)16=&dKnQIZ@_XD#2EPE|%O%ax$1kPS~LPt8TUQP9|+-iD?Wh17c} z6&2ic!*LJeULAd#ZT${)>N<9`7!?D$q-{Q%x9 Bp%efB literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/networking.k8s.io.v1alpha1.IPAddress.yaml b/testdata/v1.33.0/networking.k8s.io.v1alpha1.IPAddress.yaml new file mode 100644 index 0000000000..0bf2b17cb8 --- /dev/null +++ b/testdata/v1.33.0/networking.k8s.io.v1alpha1.IPAddress.yaml @@ -0,0 +1,40 @@ +apiVersion: networking.k8s.io/v1alpha1 +kind: IPAddress +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + parentRef: + group: groupValue + name: nameValue + namespace: namespaceValue + resource: resourceValue diff --git a/testdata/v1.33.0/networking.k8s.io.v1alpha1.ServiceCIDR.json b/testdata/v1.33.0/networking.k8s.io.v1alpha1.ServiceCIDR.json new file mode 100644 index 0000000000..cd77b39a0f --- /dev/null +++ b/testdata/v1.33.0/networking.k8s.io.v1alpha1.ServiceCIDR.json @@ -0,0 +1,63 @@ +{ + "kind": "ServiceCIDR", + "apiVersion": "networking.k8s.io/v1alpha1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "cidrs": [ + "cidrsValue" + ] + }, + "status": { + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "observedGeneration": 3, + "lastTransitionTime": "2004-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/networking.k8s.io.v1alpha1.ServiceCIDR.pb b/testdata/v1.33.0/networking.k8s.io.v1alpha1.ServiceCIDR.pb new file mode 100644 index 0000000000000000000000000000000000000000..970393e6fae7b73bd208f08e7c39637234fb65c7 GIT binary patch literal 490 zcmZ8eJ5Iwu6m&ik@j4{NqKI6&BSj#QkSv;rK*L7}0ivLLPF}*|&Dz?vg973L+=7~x zjvFB54v2!98^C6rpXg@aXWq2tba;*s5k1Rl=d`gZ3>i8 zD%2bbNh7YS{#vJ0n!J3!7j5HMq1T@eh0e)MjhGAqWby>Zj+H^Z5qP8moJR>HibS{V zmA9U`+a;!QmmPMO`n`pkdKF^2Dr6_;=R~znIWYR51Ztk=TtLc0;4na;3r;19r~c>i z-TyS6^6)kJE!aj&ks<5Jt8ttqvsWbf$ES`h(_oQ=4z)~3m-c2S-F?y~W-?!LEUAp9 bnVec-Nnf`Ff}Ew;DyuJ$N~IR*8lLe7;gG2b literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/networking.k8s.io.v1alpha1.ServiceCIDR.yaml b/testdata/v1.33.0/networking.k8s.io.v1alpha1.ServiceCIDR.yaml new file mode 100644 index 0000000000..4bf6b492dc --- /dev/null +++ b/testdata/v1.33.0/networking.k8s.io.v1alpha1.ServiceCIDR.yaml @@ -0,0 +1,45 @@ +apiVersion: networking.k8s.io/v1alpha1 +kind: ServiceCIDR +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + cidrs: + - cidrsValue +status: + conditions: + - lastTransitionTime: "2004-01-01T01:01:01Z" + message: messageValue + observedGeneration: 3 + reason: reasonValue + status: statusValue + type: typeValue diff --git a/testdata/v1.33.0/networking.k8s.io.v1beta1.IPAddress.json b/testdata/v1.33.0/networking.k8s.io.v1beta1.IPAddress.json new file mode 100644 index 0000000000..68b4d2e1ba --- /dev/null +++ b/testdata/v1.33.0/networking.k8s.io.v1beta1.IPAddress.json @@ -0,0 +1,54 @@ +{ + "kind": "IPAddress", + "apiVersion": "networking.k8s.io/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "parentRef": { + "group": "groupValue", + "resource": "resourceValue", + "namespace": "namespaceValue", + "name": "nameValue" + } + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/networking.k8s.io.v1beta1.IPAddress.pb b/testdata/v1.33.0/networking.k8s.io.v1beta1.IPAddress.pb new file mode 100644 index 0000000000000000000000000000000000000000..2f1f28ce8668a9307fa0ee7c118f7d2617faf5a9 GIT binary patch literal 464 zcmZWlJ5Iwu6tt5_*bm|uivnD_phyu&B#=c%IzB=v5Cz>DzgUZ%U2E3{1;hoo0|hll z;08#!1EQej2C!KxAE2A}n>RCQC=J+#Er!J{7b#^)CkaoAjAI#OXTO_B;LUzs26s;j;B%^mqpyqirBUl>|MiLad;W<2?`k%@7|I!4? z!^h;i?ixKshFL7n$9a{^K?7>{4}Djb(L4zqY6$xPiQr{k{b>Fg{|k6w$2S7w2OQ3z Ar~m)} literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/networking.k8s.io.v1beta1.IPAddress.yaml b/testdata/v1.33.0/networking.k8s.io.v1beta1.IPAddress.yaml new file mode 100644 index 0000000000..b16eff5d7f --- /dev/null +++ b/testdata/v1.33.0/networking.k8s.io.v1beta1.IPAddress.yaml @@ -0,0 +1,40 @@ +apiVersion: networking.k8s.io/v1beta1 +kind: IPAddress +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + parentRef: + group: groupValue + name: nameValue + namespace: namespaceValue + resource: resourceValue diff --git a/testdata/v1.33.0/networking.k8s.io.v1beta1.Ingress.json b/testdata/v1.33.0/networking.k8s.io.v1beta1.Ingress.json new file mode 100644 index 0000000000..7a95be4a58 --- /dev/null +++ b/testdata/v1.33.0/networking.k8s.io.v1beta1.Ingress.json @@ -0,0 +1,105 @@ +{ + "kind": "Ingress", + "apiVersion": "networking.k8s.io/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "ingressClassName": "ingressClassNameValue", + "backend": { + "serviceName": "serviceNameValue", + "servicePort": "servicePortValue", + "resource": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue" + } + }, + "tls": [ + { + "hosts": [ + "hostsValue" + ], + "secretName": "secretNameValue" + } + ], + "rules": [ + { + "host": "hostValue", + "http": { + "paths": [ + { + "path": "pathValue", + "pathType": "pathTypeValue", + "backend": { + "serviceName": "serviceNameValue", + "servicePort": "servicePortValue", + "resource": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue" + } + } + } + ] + } + } + ] + }, + "status": { + "loadBalancer": { + "ingress": [ + { + "ip": "ipValue", + "hostname": "hostnameValue", + "ports": [ + { + "port": 1, + "protocol": "protocolValue", + "error": "errorValue" + } + ] + } + ] + } + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/networking.k8s.io.v1beta1.Ingress.pb b/testdata/v1.33.0/networking.k8s.io.v1beta1.Ingress.pb new file mode 100644 index 0000000000000000000000000000000000000000..1c582df7cf5f64ec230e992295bed0a0e1e12380 GIT binary patch literal 733 zcmb`F!A{#i5QgnQ6?=*kv!aMv;$pQI4zwU40=3t zt(Iqur6{GDL#deHR&CYWL2!F zOJ)N<_L8B#Bc!$n$$N+l`=%6S;h6pzmCOSi3Z-2T(p1=ysK?iK4q?@H4nILaAHss_ zLnr)yo+PT=N6Sdxn0Hsbv5lN6HOBe`Yp@D+_BUEoF;)-EVx{wePohE!Ejl8%QUWNY KaF>&KsrLj^Z1{!% literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/networking.k8s.io.v1beta1.Ingress.yaml b/testdata/v1.33.0/networking.k8s.io.v1beta1.Ingress.yaml new file mode 100644 index 0000000000..8a8237b25a --- /dev/null +++ b/testdata/v1.33.0/networking.k8s.io.v1beta1.Ingress.yaml @@ -0,0 +1,69 @@ +apiVersion: networking.k8s.io/v1beta1 +kind: Ingress +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + backend: + resource: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + serviceName: serviceNameValue + servicePort: servicePortValue + ingressClassName: ingressClassNameValue + rules: + - host: hostValue + http: + paths: + - backend: + resource: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + serviceName: serviceNameValue + servicePort: servicePortValue + path: pathValue + pathType: pathTypeValue + tls: + - hosts: + - hostsValue + secretName: secretNameValue +status: + loadBalancer: + ingress: + - hostname: hostnameValue + ip: ipValue + ports: + - error: errorValue + port: 1 + protocol: protocolValue diff --git a/testdata/v1.33.0/networking.k8s.io.v1beta1.IngressClass.json b/testdata/v1.33.0/networking.k8s.io.v1beta1.IngressClass.json new file mode 100644 index 0000000000..8fd98672b1 --- /dev/null +++ b/testdata/v1.33.0/networking.k8s.io.v1beta1.IngressClass.json @@ -0,0 +1,56 @@ +{ + "kind": "IngressClass", + "apiVersion": "networking.k8s.io/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "controller": "controllerValue", + "parameters": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue", + "scope": "scopeValue", + "namespace": "namespaceValue" + } + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/networking.k8s.io.v1beta1.IngressClass.pb b/testdata/v1.33.0/networking.k8s.io.v1beta1.IngressClass.pb new file mode 100644 index 0000000000000000000000000000000000000000..72f1d490426487d23c8b48dc14d5f1894dd4e868 GIT binary patch literal 495 zcmZuuJ5Iwu5OqEh$&!z;D8QvVTm%vc$)Y0^h>s9OL_xQ9Cf4H3uC-%>0^$PPf|?T` zZh(|KAPQ=30GqWEqKNM8%$qmw%_ad_WQS}E$nK;{n20+`fE^}xZ@VF6wCglZM63Yu zh*L!8wL(71q%PGk-bt-Qtc5Fl(Tzn(C9psLedyhL1R#+;Iw2q%Rjg8 zuF7~i!{_v;Vp}~e27HKvNm^Xypi0UQk9`~SaB&H9)B$NnQe;YUK3{W4n%dv7l6hL} T{XY)DNc%Aif8`%s%d>s~Whty@ literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/networking.k8s.io.v1beta1.IngressClass.yaml b/testdata/v1.33.0/networking.k8s.io.v1beta1.IngressClass.yaml new file mode 100644 index 0000000000..a8fd20df75 --- /dev/null +++ b/testdata/v1.33.0/networking.k8s.io.v1beta1.IngressClass.yaml @@ -0,0 +1,42 @@ +apiVersion: networking.k8s.io/v1beta1 +kind: IngressClass +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + controller: controllerValue + parameters: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue + namespace: namespaceValue + scope: scopeValue diff --git a/testdata/v1.33.0/networking.k8s.io.v1beta1.ServiceCIDR.json b/testdata/v1.33.0/networking.k8s.io.v1beta1.ServiceCIDR.json new file mode 100644 index 0000000000..2fdd547009 --- /dev/null +++ b/testdata/v1.33.0/networking.k8s.io.v1beta1.ServiceCIDR.json @@ -0,0 +1,63 @@ +{ + "kind": "ServiceCIDR", + "apiVersion": "networking.k8s.io/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "cidrs": [ + "cidrsValue" + ] + }, + "status": { + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "observedGeneration": 3, + "lastTransitionTime": "2004-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/networking.k8s.io.v1beta1.ServiceCIDR.pb b/testdata/v1.33.0/networking.k8s.io.v1beta1.ServiceCIDR.pb new file mode 100644 index 0000000000000000000000000000000000000000..5b45721bd271377b90de0123b68f7f3e73430230 GIT binary patch literal 489 zcmZ8eJ5Iwu6m&ik@v}*cMG;)OLMZ}?gk+^b1R6d<2oMF`+IfibZUCEgexjRwpLsL0p(ixhhAoEaeau732F=hDO&afvT0W+vWgAz>M>N30 z0!x4T&Yq^-s*Oe^qdkS%n;b=) zaXE)v(3q*Jx7MvxCNJObWlKAe==JAAq6@gKgB}qdBXNpj+sL8X@Li}9#^RKul0>zw zmA9I?+XG#i%MUwC{q90dqec?CDrC3d6?m;r8HwnF6sUNf3qF`b!pH!*D%jOHnfjm0 zcmC73(!2CRX}g@>)6D_c}-j<@W}X~JVV!aYW$v_JCj zwge?kMtDJ3f_8m~93v9r@r-iJRFxqaWG!x0BJ+F`=GDokoOGB$4XFNK(Ny z+g<4ui_@pimx5&+DD?dGs?Z5su0n~CJ~DZT6T6&2{i5%JNjMiViIs_#t%X|m-0VOp zpgbGw{N;D&X__?>(#0U{TsIfhe98%iZI=O7T@`Avt-hrUqT)dnC4ST{s>!`uF53R5#T7++oJD5h-xMP=3Q{2X* z{gp%SOQ^{32re*9!LAR1L5vePo~4{>RuvH*=oYskfCfi|g=(T%NQtjdw-JNjX)OC7 z7KAgE?XC0+h3WI>Yu+*rBzpONljsCpuAw5u9#C-z6T76Ln($my#f!t%X?i z+-##_NSI#i{ONb+YMM11kwqbGvuDP&fG|wSofN2eo=gvwN0{Lu#42G|d6eBhlkfbe zapesk)1RDWbR`*3Uz|@O?aWRdE!{u#Es=V2CzPp=CR&ZP?faPdbhfL3Y*dQ4zejGt z&uqvcv+Z2T-_^3;odJbG!sDz`UrcDFTc{AiMB|E9&Giuu8fSY|$t^(;NE#JvEIWp4 F`~q>}xyb+k literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/node.k8s.io.v1alpha1.RuntimeClass.yaml b/testdata/v1.33.0/node.k8s.io.v1alpha1.RuntimeClass.yaml new file mode 100644 index 0000000000..5d76039898 --- /dev/null +++ b/testdata/v1.33.0/node.k8s.io.v1alpha1.RuntimeClass.yaml @@ -0,0 +1,48 @@ +apiVersion: node.k8s.io/v1alpha1 +kind: RuntimeClass +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + overhead: + podFixed: + podFixedKey: "0" + runtimeHandler: runtimeHandlerValue + scheduling: + nodeSelector: + nodeSelectorKey: nodeSelectorValue + tolerations: + - effect: effectValue + key: keyValue + operator: operatorValue + tolerationSeconds: 5 + value: valueValue diff --git a/testdata/v1.33.0/node.k8s.io.v1beta1.RuntimeClass.json b/testdata/v1.33.0/node.k8s.io.v1beta1.RuntimeClass.json new file mode 100644 index 0000000000..720d8c5eb9 --- /dev/null +++ b/testdata/v1.33.0/node.k8s.io.v1beta1.RuntimeClass.json @@ -0,0 +1,66 @@ +{ + "kind": "RuntimeClass", + "apiVersion": "node.k8s.io/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "handler": "handlerValue", + "overhead": { + "podFixed": { + "podFixedKey": "0" + } + }, + "scheduling": { + "nodeSelector": { + "nodeSelectorKey": "nodeSelectorValue" + }, + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/node.k8s.io.v1beta1.RuntimeClass.pb b/testdata/v1.33.0/node.k8s.io.v1beta1.RuntimeClass.pb new file mode 100644 index 0000000000000000000000000000000000000000..1233b744b6cbca8bd5fbe5fadeccc351963430f2 GIT binary patch literal 533 zcmZ8eJ5Iwu5Vc7V$>isl6v(BaKq*2JffP{&i2@KpfG7~nIv$6`n_bImM+C$LxCJ#w z;08#!144qD8-TqgA)r%KEp|mB^NuL@)r)2!rmjNWMu<|xVbX`8 zq=GB9x6&^Zrca+Qc|$u$(DT=8f==La4T_97$mAhT%u)u`3&(~k;ao%{N=%e&EYzy! zW(SHs<=J5CFTXuc)2xwzE(U4qJw2>>loLkpl7PzRQFov`BAg5{RD@X-LAw7ezV+Y6 zPIh>oe&-CWo0uVU<@qGYF0-45rTd4zA!BEL33b%+HQ_G%onSSgk05vEFgk;w9GL&3*MhAUZCkwv#)oK91cT|&=GY*ewiY-zUk11y%c A^7{=< z&_kT8gAB}(DS9))5G8jCP|tZZL$EnV3?*3T0CX~5-M_;3{*Lk04Ij(zwrdR4Fic~4 zRr1=IaR;>SA11CW!o~@0>bYgYebAu6e~s#!{vH<@M~U7()xV{gf^ICz%cAykV0wmc F`~Ydl2P6kkXrNGIIYAL+ ziR{BfNDftP&bBP;>Gt)Z>=*|U-M>Fd)FEdzVl(I>6Ni|)6%Eyku1~7Kd6YsSR9!n$ zXVvp}i`YZTHL>@t-=C0HlGg&yN92mWn0@a)wvrFbe;LyiJ72IkR7yifc zz5mDf(!-Pe~A2F86P09bdbwM z*dNhe;jyFEL(TQTGTmk31bRm>kZme_qgGlgZ~WN&xxGW|bZpkG2>C&o=B<^!W2sjX T1o8FzjXAkGLZ+)J4Bz+!{r2Ic literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/policy.v1.PodDisruptionBudget.yaml b/testdata/v1.33.0/policy.v1.PodDisruptionBudget.yaml new file mode 100644 index 0000000000..e51af35c18 --- /dev/null +++ b/testdata/v1.33.0/policy.v1.PodDisruptionBudget.yaml @@ -0,0 +1,61 @@ +apiVersion: policy/v1 +kind: PodDisruptionBudget +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + maxUnavailable: maxUnavailableValue + minAvailable: minAvailableValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + unhealthyPodEvictionPolicy: unhealthyPodEvictionPolicyValue +status: + conditions: + - lastTransitionTime: "2004-01-01T01:01:01Z" + message: messageValue + observedGeneration: 3 + reason: reasonValue + status: statusValue + type: typeValue + currentHealthy: 4 + desiredHealthy: 5 + disruptedPods: + disruptedPodsKey: null + disruptionsAllowed: 3 + expectedPods: 6 + observedGeneration: 1 diff --git a/testdata/v1.33.0/policy.v1beta1.Eviction.json b/testdata/v1.33.0/policy.v1beta1.Eviction.json new file mode 100644 index 0000000000..0e6e890407 --- /dev/null +++ b/testdata/v1.33.0/policy.v1beta1.Eviction.json @@ -0,0 +1,59 @@ +{ + "kind": "Eviction", + "apiVersion": "policy/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "deleteOptions": { + "gracePeriodSeconds": 1, + "preconditions": { + "uid": "uidValue", + "resourceVersion": "resourceVersionValue" + }, + "orphanDependents": true, + "propagationPolicy": "propagationPolicyValue", + "dryRun": [ + "dryRunValue" + ], + "ignoreStoreReadErrorWithClusterBreakingPotential": true + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/policy.v1beta1.Eviction.pb b/testdata/v1.33.0/policy.v1beta1.Eviction.pb new file mode 100644 index 0000000000000000000000000000000000000000..c5399ef982f16ed43fbad5826aaf6b9e21d4a5e4 GIT binary patch literal 473 zcmZvZyGjE=6oz+`fSZYK)l+Ap2eGjB4RkU~Vi3E3&hB1|^rcMROQb4b ziZ{SBq`PAjs3675RVehASuJ5ulteok`RJU9iS1~585>&F*;A;KOqn`V+Dy06?pDw9 z7EhnAmB2YQ>iO%mb=CNXzZIsy<=@IGY7?SsSYSDl7bK IxuFv|KgF!0LjV8( literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/policy.v1beta1.Eviction.yaml b/testdata/v1.33.0/policy.v1beta1.Eviction.yaml new file mode 100644 index 0000000000..d48b01a4d7 --- /dev/null +++ b/testdata/v1.33.0/policy.v1beta1.Eviction.yaml @@ -0,0 +1,44 @@ +apiVersion: policy/v1beta1 +deleteOptions: + dryRun: + - dryRunValue + gracePeriodSeconds: 1 + ignoreStoreReadErrorWithClusterBreakingPotential: true + orphanDependents: true + preconditions: + resourceVersion: resourceVersionValue + uid: uidValue + propagationPolicy: propagationPolicyValue +kind: Eviction +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue diff --git a/testdata/v1.33.0/policy.v1beta1.PodDisruptionBudget.json b/testdata/v1.33.0/policy.v1beta1.PodDisruptionBudget.json new file mode 100644 index 0000000000..d7ef20e576 --- /dev/null +++ b/testdata/v1.33.0/policy.v1beta1.PodDisruptionBudget.json @@ -0,0 +1,85 @@ +{ + "kind": "PodDisruptionBudget", + "apiVersion": "policy/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "minAvailable": "minAvailableValue", + "selector": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "maxUnavailable": "maxUnavailableValue", + "unhealthyPodEvictionPolicy": "unhealthyPodEvictionPolicyValue" + }, + "status": { + "observedGeneration": 1, + "disruptedPods": { + "disruptedPodsKey": null + }, + "disruptionsAllowed": 3, + "currentHealthy": 4, + "desiredHealthy": 5, + "expectedPods": 6, + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "observedGeneration": 3, + "lastTransitionTime": "2004-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/policy.v1beta1.PodDisruptionBudget.pb b/testdata/v1.33.0/policy.v1beta1.PodDisruptionBudget.pb new file mode 100644 index 0000000000000000000000000000000000000000..dadce0b4f029cb43818029d9271fd6895d4650c0 GIT binary patch literal 670 zcmZ8fO>Wab6t)}FI^#5P-AV*+iY&FNvS}L$De49_DjSGU7Qmvr=lC_5dOWr~c2tA7 z0JlIadjxKP)H_rxSh3&+FrI0C=j_MLgnq3!t36wPh|H}5(8M-=Rr ze1^b^StS?Y)tpXhk7KnXYOW8q>Fp6W(mR5YY*XPI-Ntk4=*h|E*-O$a7G^z1$PX$t aZ@00ErRU@b;^FuEEx9^ErmHE8!1xEmh~s+z literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/policy.v1beta1.PodDisruptionBudget.yaml b/testdata/v1.33.0/policy.v1beta1.PodDisruptionBudget.yaml new file mode 100644 index 0000000000..5cc8d45587 --- /dev/null +++ b/testdata/v1.33.0/policy.v1beta1.PodDisruptionBudget.yaml @@ -0,0 +1,61 @@ +apiVersion: policy/v1beta1 +kind: PodDisruptionBudget +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + maxUnavailable: maxUnavailableValue + minAvailable: minAvailableValue + selector: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue + unhealthyPodEvictionPolicy: unhealthyPodEvictionPolicyValue +status: + conditions: + - lastTransitionTime: "2004-01-01T01:01:01Z" + message: messageValue + observedGeneration: 3 + reason: reasonValue + status: statusValue + type: typeValue + currentHealthy: 4 + desiredHealthy: 5 + disruptedPods: + disruptedPodsKey: null + disruptionsAllowed: 3 + expectedPods: 6 + observedGeneration: 1 diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1.ClusterRole.json b/testdata/v1.33.0/rbac.authorization.k8s.io.v1.ClusterRole.json new file mode 100644 index 0000000000..c18c88e41b --- /dev/null +++ b/testdata/v1.33.0/rbac.authorization.k8s.io.v1.ClusterRole.json @@ -0,0 +1,83 @@ +{ + "kind": "ClusterRole", + "apiVersion": "rbac.authorization.k8s.io/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "rules": [ + { + "verbs": [ + "verbsValue" + ], + "apiGroups": [ + "apiGroupsValue" + ], + "resources": [ + "resourcesValue" + ], + "resourceNames": [ + "resourceNamesValue" + ], + "nonResourceURLs": [ + "nonResourceURLsValue" + ] + } + ], + "aggregationRule": { + "clusterRoleSelectors": [ + { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1.ClusterRole.pb b/testdata/v1.33.0/rbac.authorization.k8s.io.v1.ClusterRole.pb new file mode 100644 index 0000000000000000000000000000000000000000..7ab4355c85204b98a89a7e7751cb5a84d898a83d GIT binary patch literal 579 zcmZ8eO-{l<7%fO53{q;t!ZfbBaDfRbiAm!U7be;eLzIQPDSW`#GSkeoBw)ONp2D?9 z@CGK_!MJek4Rks~k+^&BoA2knH=!pCbcptOfCnv{CKJZV0w;vgR_KWqVMntQyLuj_ zA_3lG5!lZq^if0=il@-WQ403%7$|U@KsPTrX7(y#JkTv}O+YmA2@Tamvz(HlLhS|z z!BQ^!fD3t4RlV&_xx9S&dMjDRr9`ja?-E_3yFFBiZ~&3Gg1KGQP)!6bGBKqrQOeb` zwZT=-{VA%1gzCf2pMH0(rdh`^*%WeI@Cv*>A{0ktAqA>EPlW*OOfkh{;HqGoEYAGr z@}2){TBasoM&I4Yt05_w6{w4w&$-VyU0f}tSL?g6MvnhwZXNg15^%Su5nHKW7@7$on;DF I`wZ9k1%{o<7ytkO literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1.ClusterRole.yaml b/testdata/v1.33.0/rbac.authorization.k8s.io.v1.ClusterRole.yaml new file mode 100644 index 0000000000..6467543328 --- /dev/null +++ b/testdata/v1.33.0/rbac.authorization.k8s.io.v1.ClusterRole.yaml @@ -0,0 +1,54 @@ +aggregationRule: + clusterRoleSelectors: + - matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +rules: +- apiGroups: + - apiGroupsValue + nonResourceURLs: + - nonResourceURLsValue + resourceNames: + - resourceNamesValue + resources: + - resourcesValue + verbs: + - verbsValue diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.json b/testdata/v1.33.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.json new file mode 100644 index 0000000000..c7c30cc731 --- /dev/null +++ b/testdata/v1.33.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.json @@ -0,0 +1,59 @@ +{ + "kind": "ClusterRoleBinding", + "apiVersion": "rbac.authorization.k8s.io/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "subjects": [ + { + "kind": "kindValue", + "apiGroup": "apiGroupValue", + "name": "nameValue", + "namespace": "namespaceValue" + } + ], + "roleRef": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue" + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.pb b/testdata/v1.33.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.pb new file mode 100644 index 0000000000000000000000000000000000000000..fef76c0d062fcd4e60abe8768fb0d12b963d7b5f GIT binary patch literal 512 zcmZvYze)o^5XLWmz+^Saxmd_ybzqYsYCt$FVqx6s) zouRsr99v9unCQ`$0(r}mvVcBb0XIn3dniyrhG(-@P@PP53hk*StZ3xjQzjC(Q7;+R zajLnYP)nn%50$omyKc17DwW2MAJ0YKJGScS^VO&TkFI@Wx z{DBGoU|hKN545xl5_k8Ud+xobr*Wtpbc~K1&1!cRH2I^7U&`_MA&yy?wvy>IU5(qADX1Fm(kpylYD{5e3L4oQu?0Hf?VU8_nZ6 zs>YPt!~UQDVB@AyBMIF$a#{!rvNoceFgn);&7PM+g!U$clQBp`U{@ro_viNg|7!yM zhR@|s$#YtI8L*+coh3Gzb{Q3)o;#k(qD>Me)ILH}kdZx!U2W__iY&3%cXP4D0nYL2 U3oO^DbHRJ-bnklI^`sLxzbb*Og8%>k literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1.Role.yaml b/testdata/v1.33.0/rbac.authorization.k8s.io.v1.Role.yaml new file mode 100644 index 0000000000..38b545cd2c --- /dev/null +++ b/testdata/v1.33.0/rbac.authorization.k8s.io.v1.Role.yaml @@ -0,0 +1,45 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +rules: +- apiGroups: + - apiGroupsValue + nonResourceURLs: + - nonResourceURLsValue + resourceNames: + - resourceNamesValue + resources: + - resourcesValue + verbs: + - verbsValue diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1.RoleBinding.json b/testdata/v1.33.0/rbac.authorization.k8s.io.v1.RoleBinding.json new file mode 100644 index 0000000000..44f5d01efe --- /dev/null +++ b/testdata/v1.33.0/rbac.authorization.k8s.io.v1.RoleBinding.json @@ -0,0 +1,59 @@ +{ + "kind": "RoleBinding", + "apiVersion": "rbac.authorization.k8s.io/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "subjects": [ + { + "kind": "kindValue", + "apiGroup": "apiGroupValue", + "name": "nameValue", + "namespace": "namespaceValue" + } + ], + "roleRef": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue" + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1.RoleBinding.pb b/testdata/v1.33.0/rbac.authorization.k8s.io.v1.RoleBinding.pb new file mode 100644 index 0000000000000000000000000000000000000000..078c69e8ee11b8d9c59770de9d1672b90858b9c9 GIT binary patch literal 505 zcmZvYy-EW?6oofGU@|euI#|eJwO|t=YCu>l(+DaeA{KUcvo~?v$;>jdD@pECF`zFc@>V2O0Ykh5o*`Wupg;vFp3X;JW4hG|^kx#ju95don27B~tCF$ER-JW) zT4u`VP-*k2odzr2N@eo+@mzMDBU3$nzMATcTy2mlhY-0w#u2T}N_!Fdqya+6)RNn^ zo9nISW}j4JlX*D5Xd63;gP*BZ26TsQn0NT@sLP%DJAYg#X4roIrQ~z^( zZ}}PDczBShrkQC;z<2>Yg=>%C z4NSO$apBq<=yZl6arfT;fBt{(P1KPVY9U{QFl<7aOt~OSNC;=ms3V(%AJ1Dr<0-V< z$~jGCf<>QG>^>LK#||npnBf7?6uSo#%&>q2_wtfwXI&Y?(2V$1iRm~XEYdF;rId^` zYS#spJQZpV3#m@)YGKCDpY+#Hh zTEA{PTU^iFpQ3U^m^tkI>GwBk8a0T?wvdxTryy!$!hn*c5~%k)6+*N>0|pZ;biuWG zocYh?d;iz?%ERaCXV@d9#R3GG|4!^YGYpWEyUg(4h_xnqv`~lb)@FT?n4W zhWmCtYwHVBM literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.ClusterRole.yaml b/testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.ClusterRole.yaml new file mode 100644 index 0000000000..7f0858f61a --- /dev/null +++ b/testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.ClusterRole.yaml @@ -0,0 +1,54 @@ +aggregationRule: + clusterRoleSelectors: + - matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue +apiVersion: rbac.authorization.k8s.io/v1alpha1 +kind: ClusterRole +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +rules: +- apiGroups: + - apiGroupsValue + nonResourceURLs: + - nonResourceURLsValue + resourceNames: + - resourceNamesValue + resources: + - resourcesValue + verbs: + - verbsValue diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.json b/testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.json new file mode 100644 index 0000000000..36534c7ad0 --- /dev/null +++ b/testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.json @@ -0,0 +1,59 @@ +{ + "kind": "ClusterRoleBinding", + "apiVersion": "rbac.authorization.k8s.io/v1alpha1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "subjects": [ + { + "kind": "kindValue", + "apiVersion": "apiVersionValue", + "name": "nameValue", + "namespace": "namespaceValue" + } + ], + "roleRef": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue" + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.pb b/testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.pb new file mode 100644 index 0000000000000000000000000000000000000000..b70e6566de6457cc4886c5b14c75e157cbf57e35 GIT binary patch literal 520 zcmZvYy-EW?6oofGU^1FyT`XkF1)CJn1jNNM7J`b1h=twVgB4A)0SV2692CNWYz!y|MrQ`lo<0>KvNZ+{LzK4R z)kU)Kzr^>~-vq|P=lrMSIvw*2Szp~ulPsCzGATYhc3q{TRT4JTqa3Wa{xDC!7PY@e SYR1K>6gtW1{x$78f%6Lk^tD9* literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.yaml b/testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.yaml new file mode 100644 index 0000000000..6cdb234124 --- /dev/null +++ b/testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.yaml @@ -0,0 +1,43 @@ +apiVersion: rbac.authorization.k8s.io/v1alpha1 +kind: ClusterRoleBinding +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +roleRef: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue +subjects: +- apiVersion: apiVersionValue + kind: kindValue + name: nameValue + namespace: namespaceValue diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.Role.json b/testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.Role.json new file mode 100644 index 0000000000..ea4a6c314a --- /dev/null +++ b/testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.Role.json @@ -0,0 +1,65 @@ +{ + "kind": "Role", + "apiVersion": "rbac.authorization.k8s.io/v1alpha1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "rules": [ + { + "verbs": [ + "verbsValue" + ], + "apiGroups": [ + "apiGroupsValue" + ], + "resources": [ + "resourcesValue" + ], + "resourceNames": [ + "resourceNamesValue" + ], + "nonResourceURLs": [ + "nonResourceURLsValue" + ] + } + ] +} \ No newline at end of file diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.Role.pb b/testdata/v1.33.0/rbac.authorization.k8s.io.v1alpha1.Role.pb new file mode 100644 index 0000000000000000000000000000000000000000..31edb183861a442e11407fd5fcb20d91dd6c9137 GIT binary patch literal 498 zcmZ8e%T59@6dfLkP<0q5EX*vsoCOMr$;71_6D7tFW#R4)6sS|$NjpOV#vkx6T>A<9 zfeHU$T)6fRw6qKocjw%DdhfZXNu(SUA}nJVv>?wWLed3fRPa_3sTLI{vo^4F0&TzA z6O8!F3i>FcI)^Fg1IvkjG$x!#$jD7m3fy&9r7*A(e5eQ;btzBGi?Ei{p+TLdBueB` z>xfi(r>RDJ7q!~z^=n!6oGXpqzTY*vMGwcQ&LAdCU6Z-LZ=rb+W8?zoA~VKK+uPwr z^LU2p3FUTi@aG?I-GmKD>8_E}QdE+S5#_+>LK`%5UP>`Km;#3}k*46gB3<8K*bn}X z!TN^J)lbE9I(iskLv=S#Z8GOoRDOEC@KhdelQ5z75t!ad3M}U*PO<*W9%vVEh7p3uixq zqnioe!8kbk4fMDMY>3-)@4x#!PaG(VbcruR7<3>@$3oIMq*U-u9H0xo>6iQ6e=C6TAhMp}R9ejuKM5T$Q}$va1ppf-t9wc=Q3TD^R~Yjs8L_DGFEh)kX1%&q6rY=k~(0_P$% z{HE;`-e%_hh}2^3!92V_et%8VZb3qeAcuBf%hr%`V05kl&FYgKlI;m_7@;%;w<(gP z{}sNsdB)csJ{Lb_$Li^0$Rc$!OY&q+Dx~!A*mqPGu9GmK9v5KU&4Weyji|kS($FqW OrO1+;?qAcM%sIDO`I5 zZ(zb5j0@M^K&LYliM#i{`F`Ge6MDixEp)^KJZ$1LnKDk6I3bKSLr*jbJDIlwNO0S( zoJXlhfcIGh_Hz+^?4UBmGZ^3~1^ZwE6gWK3;uAR7CGhH9cwO36r} zPMw2bDVKe~g}kh)-d?vsNtAw3uzU+0d4diY%Z>{>=gE`w+!ZWggl=B$Wz9v-`vNP|rhD%1f&bKrqKX`52m1!rlj zxnt(dn!9$+voFxKMx8R+U#EN9_t%p>zsb_t;@Zj9ee%fUZnRcM*rA z0z$~lxo~TLu6LT7T~bP{2iF8Y{NaqIR)v(!gY4v@oT_%20M3RM(49WyVzSx?0X@&)wH$b%_YJR8v-$u4 literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.ClusterRoleBinding.yaml b/testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.ClusterRoleBinding.yaml new file mode 100644 index 0000000000..5e78834997 --- /dev/null +++ b/testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.ClusterRoleBinding.yaml @@ -0,0 +1,43 @@ +apiVersion: rbac.authorization.k8s.io/v1beta1 +kind: ClusterRoleBinding +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +roleRef: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue +subjects: +- apiGroup: apiGroupValue + kind: kindValue + name: nameValue + namespace: namespaceValue diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.Role.json b/testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.Role.json new file mode 100644 index 0000000000..6d7db5102b --- /dev/null +++ b/testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.Role.json @@ -0,0 +1,65 @@ +{ + "kind": "Role", + "apiVersion": "rbac.authorization.k8s.io/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "rules": [ + { + "verbs": [ + "verbsValue" + ], + "apiGroups": [ + "apiGroupsValue" + ], + "resources": [ + "resourcesValue" + ], + "resourceNames": [ + "resourceNamesValue" + ], + "nonResourceURLs": [ + "nonResourceURLsValue" + ] + } + ] +} \ No newline at end of file diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.Role.pb b/testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.Role.pb new file mode 100644 index 0000000000000000000000000000000000000000..e50a66e58fb1a965eeb435bbadd3a95a936d7cd4 GIT binary patch literal 497 zcmZ8e%T59@6dfLkP<0p^7G`$NP8KL6CKH!zOq3Wyl!dzvT(C}QC+!Rg7=OUOaP24X z2PXW3apBrO(9$wU+}(5Tx%Zx)#-Vc1F*=eF88k_jJ_t$YB&C8k<4`rJIGMI0NJ$Hq zdx8O8l+Z^JRXLeJpRf$@!5BD5lEQUP`R=N#5;CxoU|#_nbt#X{M5B_?p{d$+2})#A z>p&`f(y-x9r&3wIel5zLbE&Jh?{{6@p!-8qWh4Tou3(0DZD}T=0J(&7ks9Bo?QLPB zc|1eam~wmA|MMSg+%#$=q1#4I3t>UlMwAmq=h~pz^HPY=-h^;625AWFie&Zv+`j*R zO`zZKx%?@4PFpVnHdME>#3plIM#ZP+j;FF{lY|MikI)okWKUvO8@rGqODy)?Tx@ZG XbG-Tj%Qfm;@ZLJzyIyxa=>*O%v^%a^ literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.Role.yaml b/testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.Role.yaml new file mode 100644 index 0000000000..c5ff6d5eca --- /dev/null +++ b/testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.Role.yaml @@ -0,0 +1,45 @@ +apiVersion: rbac.authorization.k8s.io/v1beta1 +kind: Role +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +rules: +- apiGroups: + - apiGroupsValue + nonResourceURLs: + - nonResourceURLsValue + resourceNames: + - resourceNamesValue + resources: + - resourcesValue + verbs: + - verbsValue diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.json b/testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.json new file mode 100644 index 0000000000..42b6dc21a5 --- /dev/null +++ b/testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.json @@ -0,0 +1,59 @@ +{ + "kind": "RoleBinding", + "apiVersion": "rbac.authorization.k8s.io/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "subjects": [ + { + "kind": "kindValue", + "apiGroup": "apiGroupValue", + "name": "nameValue", + "namespace": "namespaceValue" + } + ], + "roleRef": { + "apiGroup": "apiGroupValue", + "kind": "kindValue", + "name": "nameValue" + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.pb b/testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.pb new file mode 100644 index 0000000000000000000000000000000000000000..120f92e51c9f34fb14bbac14abd0b863458e88cf GIT binary patch literal 510 zcmZvYy-or_6or?cM0OBZCl+QqH?g5WATilk(wL|*#uy8`yKupAhndaHE(sW4z_+mW z5v*)Ycn4!)?HlMY1VpsEKj+ST=ft6QNR#ZU2)Yf((i^GR1X3nNBMxE#P*_I%2>}< z?QMlxX3FSLY4fw4h8vwyY5Mr_T=bk{Q$2mYn(CZf?+}+mgj}ECn3m_Iy@&!*1tDZ= z@$K4M>8oU>pC3KUmV#Yml&2kY+B-sal^2;A~<5?dd}MAU)7_K8Fv*Zu^TG0L; N`K_h@TK1j5`3B{ou?heH literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.yaml b/testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.yaml new file mode 100644 index 0000000000..1e8620b5fc --- /dev/null +++ b/testdata/v1.33.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.yaml @@ -0,0 +1,43 @@ +apiVersion: rbac.authorization.k8s.io/v1beta1 +kind: RoleBinding +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +roleRef: + apiGroup: apiGroupValue + kind: kindValue + name: nameValue +subjects: +- apiGroup: apiGroupValue + kind: kindValue + name: nameValue + namespace: namespaceValue diff --git a/testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceClass.json b/testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceClass.json new file mode 100644 index 0000000000..cc837baa17 --- /dev/null +++ b/testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceClass.json @@ -0,0 +1,72 @@ +{ + "kind": "DeviceClass", + "apiVersion": "resource.k8s.io/v1alpha3", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "selectors": [ + { + "cel": { + "expression": "expressionValue" + } + } + ], + "config": [ + { + "opaque": { + "driver": "driverValue", + "parameters": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + } + } + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceClass.pb b/testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceClass.pb new file mode 100644 index 0000000000000000000000000000000000000000..1ed35bed01c1d546665efe8befae054f32c19619 GIT binary patch literal 552 zcmZ8eJx>Bb5IvAY7?h9Gf>3T_LJW$=giwN&8e?H7?BLP^eoxbo0kFlG3CKVfD&&gvV>a*RdWB_e)Yc$ zGdFy`|E`ss10zPFr!U89mP{)H>B+QR(y_Nl!iM^kf-NXRkw(fC7SXu(5QBz%FXF@b z`W|=_wsg)~j7AtJL3KY2%qOy4mfUUlPOJxEkSsTxR^+qRghiwT_ffM}V`^9vVQjEb P93nRn3rY&ps>7T=04Ke0 literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceClass.yaml b/testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceClass.yaml new file mode 100644 index 0000000000..9f786dc430 --- /dev/null +++ b/testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceClass.yaml @@ -0,0 +1,48 @@ +apiVersion: resource.k8s.io/v1alpha3 +kind: DeviceClass +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + config: + - opaque: + driver: driverValue + parameters: + apiVersion: example.com/v1 + kind: CustomType + spec: + replicas: 1 + status: + available: 1 + selectors: + - cel: + expression: expressionValue diff --git a/testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceTaintRule.json b/testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceTaintRule.json new file mode 100644 index 0000000000..84ad149568 --- /dev/null +++ b/testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceTaintRule.json @@ -0,0 +1,67 @@ +{ + "kind": "DeviceTaintRule", + "apiVersion": "resource.k8s.io/v1alpha3", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "deviceSelector": { + "deviceClassName": "deviceClassNameValue", + "driver": "driverValue", + "pool": "poolValue", + "device": "deviceValue", + "selectors": [ + { + "cel": { + "expression": "expressionValue" + } + } + ] + }, + "taint": { + "key": "keyValue", + "value": "valueValue", + "effect": "effectValue", + "timeAdded": "2004-01-01T01:01:01Z" + } + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceTaintRule.pb b/testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceTaintRule.pb new file mode 100644 index 0000000000000000000000000000000000000000..60244465bfcc245cd915a3eb004db19e5d4f7ae5 GIT binary patch literal 543 zcmZ8dy-tHr7=^ZpaM41sL&L~eWBrQ>ajZ^iOk; z={pz)U3~+k7fTzr^ZlK3z7slJLR+Yl0FSc7gI?(H9*K7HJxt?kd|>J)kP{Dvn6UIR zqhNm3(R&T43{PN$X$EF%3=9&S!o{LxHRn?vW3ODXH#pGXoUl+_bd`+w0`0dKx+6$9 ziJ0g*YkftTJ%7G74C%B$FW+wk8lbBVQYm(U@-vv4S_#F4YojJ+EJ|@&kchFdQj49N zL!^d;mBQB2zg@ZM>NqB=Ms{UKPV|5phR2YIhS`kb`Tq<1)_)qi z_~B#rQ#Yjjf()q7hts%B=BR;c_YZx8XKs~*2=!4$1Jw3K_Qw=+UWIFFenRp;ZA*=# uhzc9FR&I-;yNOyzhugSdt#UQDkrKkRG>!7Pj=+`%K>%JViltdgvZY^5)VvM= literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceTaintRule.yaml b/testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceTaintRule.yaml new file mode 100644 index 0000000000..8d06614b99 --- /dev/null +++ b/testdata/v1.33.0/resource.k8s.io.v1alpha3.DeviceTaintRule.yaml @@ -0,0 +1,48 @@ +apiVersion: resource.k8s.io/v1alpha3 +kind: DeviceTaintRule +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + deviceSelector: + device: deviceValue + deviceClassName: deviceClassNameValue + driver: driverValue + pool: poolValue + selectors: + - cel: + expression: expressionValue + taint: + effect: effectValue + key: keyValue + timeAdded: "2004-01-01T01:01:01Z" + value: valueValue diff --git a/testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceClaim.json b/testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceClaim.json new file mode 100644 index 0000000000..2d53360bc0 --- /dev/null +++ b/testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceClaim.json @@ -0,0 +1,238 @@ +{ + "kind": "ResourceClaim", + "apiVersion": "resource.k8s.io/v1alpha3", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "devices": { + "requests": [ + { + "name": "nameValue", + "deviceClassName": "deviceClassNameValue", + "selectors": [ + { + "cel": { + "expression": "expressionValue" + } + } + ], + "allocationMode": "allocationModeValue", + "count": 5, + "adminAccess": true, + "firstAvailable": [ + { + "name": "nameValue", + "deviceClassName": "deviceClassNameValue", + "selectors": [ + { + "cel": { + "expression": "expressionValue" + } + } + ], + "allocationMode": "allocationModeValue", + "count": 5, + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ] + } + ], + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ] + } + ], + "constraints": [ + { + "requests": [ + "requestsValue" + ], + "matchAttribute": "matchAttributeValue" + } + ], + "config": [ + { + "requests": [ + "requestsValue" + ], + "opaque": { + "driver": "driverValue", + "parameters": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + } + } + } + ] + } + }, + "status": { + "allocation": { + "devices": { + "results": [ + { + "request": "requestValue", + "driver": "driverValue", + "pool": "poolValue", + "device": "deviceValue", + "adminAccess": true, + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ] + } + ], + "config": [ + { + "source": "sourceValue", + "requests": [ + "requestsValue" + ], + "opaque": { + "driver": "driverValue", + "parameters": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + } + } + } + ] + }, + "nodeSelector": { + "nodeSelectorTerms": [ + { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + ] + } + }, + "reservedFor": [ + { + "apiGroup": "apiGroupValue", + "resource": "resourceValue", + "name": "nameValue", + "uid": "uidValue" + } + ], + "devices": [ + { + "driver": "driverValue", + "pool": "poolValue", + "device": "deviceValue", + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "observedGeneration": 3, + "lastTransitionTime": "2004-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ], + "data": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + }, + "networkData": { + "interfaceName": "interfaceNameValue", + "ips": [ + "ipsValue" + ], + "hardwareAddress": "hardwareAddressValue" + } + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceClaim.pb b/testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceClaim.pb new file mode 100644 index 0000000000000000000000000000000000000000..041dfae981c46f207120f615834b9a392ce4320f GIT binary patch literal 1526 zcmc&!PiqrF6wf9tCU2WI-S$xSIEd6BwM`X5F4FcO_>WSg2XB+zmv+qT&N{OjTT3q% zJm}GbXU~2F5qcK-1w4rd&wc})ok_B3L68c1d-MLk-|x-qw^a$Q!;(ZLG8y1XzpYl7 zxH(v(JlUt~UVUe1+2WK%-l+>;%TSAHgu9ey=*{n8jFP7KXr%IIbE`^dU|mREA@4n4 zao-9@RGh>f;=WwTm6d;k68RHJlHOCNrG*3vdSS%Mm;UF7OM9(t}7 zO+=T#ERAE4(o`og=ElU^_&mK0wLXh&VZZ2~jJs*h(S%Jlvg))QIoD$`UUfPr&Lnkzow0KZ zs(n1PIMgi;!ouRiAfLpTh>N`*2B~>0Pj6l-%DW16iO(`rsb#`jh-ez@Z=|VY-7K}G z{8!FJw+s}xp=5&*VIg#nNWnGf5Imq!!f_=KkzRaqgXEi{^;?-rMU>N}bt=JtbdHF` zgtLGu(pfv!TD^3cmUYGfWqK(&=7wYc-86hD!$}$XFf;7i;xyTdUrU7GLy#=L79^*2 zIgs8u;M$LDi=Bte|4&%#z&2d_{i?Wwd{u_5{;A(O)HR29rN|O9s;@_#n4A<}yf`@I zW%>Ln6!81*1pMR<)Y8!>^<2xbsj^flzH`%+NY(IawPy6mQ~D|xx8^_DF}))mi&K<6 feQL)i!K<>wV(BmLQyD&|5;wvyKM)qE5-I%xpT!Db literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceClaim.yaml b/testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceClaim.yaml new file mode 100644 index 0000000000..a6dc051405 --- /dev/null +++ b/testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceClaim.yaml @@ -0,0 +1,149 @@ +apiVersion: resource.k8s.io/v1alpha3 +kind: ResourceClaim +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + devices: + config: + - opaque: + driver: driverValue + parameters: + apiVersion: example.com/v1 + kind: CustomType + spec: + replicas: 1 + status: + available: 1 + requests: + - requestsValue + constraints: + - matchAttribute: matchAttributeValue + requests: + - requestsValue + requests: + - adminAccess: true + allocationMode: allocationModeValue + count: 5 + deviceClassName: deviceClassNameValue + firstAvailable: + - allocationMode: allocationModeValue + count: 5 + deviceClassName: deviceClassNameValue + name: nameValue + selectors: + - cel: + expression: expressionValue + tolerations: + - effect: effectValue + key: keyValue + operator: operatorValue + tolerationSeconds: 5 + value: valueValue + name: nameValue + selectors: + - cel: + expression: expressionValue + tolerations: + - effect: effectValue + key: keyValue + operator: operatorValue + tolerationSeconds: 5 + value: valueValue +status: + allocation: + devices: + config: + - opaque: + driver: driverValue + parameters: + apiVersion: example.com/v1 + kind: CustomType + spec: + replicas: 1 + status: + available: 1 + requests: + - requestsValue + source: sourceValue + results: + - adminAccess: true + device: deviceValue + driver: driverValue + pool: poolValue + request: requestValue + tolerations: + - effect: effectValue + key: keyValue + operator: operatorValue + tolerationSeconds: 5 + value: valueValue + nodeSelector: + nodeSelectorTerms: + - matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + devices: + - conditions: + - lastTransitionTime: "2004-01-01T01:01:01Z" + message: messageValue + observedGeneration: 3 + reason: reasonValue + status: statusValue + type: typeValue + data: + apiVersion: example.com/v1 + kind: CustomType + spec: + replicas: 1 + status: + available: 1 + device: deviceValue + driver: driverValue + networkData: + hardwareAddress: hardwareAddressValue + interfaceName: interfaceNameValue + ips: + - ipsValue + pool: poolValue + reservedFor: + - apiGroup: apiGroupValue + name: nameValue + resource: resourceValue + uid: uidValue diff --git a/testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.json b/testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.json new file mode 100644 index 0000000000..22826de5ec --- /dev/null +++ b/testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.json @@ -0,0 +1,171 @@ +{ + "kind": "ResourceClaimTemplate", + "apiVersion": "resource.k8s.io/v1alpha3", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "devices": { + "requests": [ + { + "name": "nameValue", + "deviceClassName": "deviceClassNameValue", + "selectors": [ + { + "cel": { + "expression": "expressionValue" + } + } + ], + "allocationMode": "allocationModeValue", + "count": 5, + "adminAccess": true, + "firstAvailable": [ + { + "name": "nameValue", + "deviceClassName": "deviceClassNameValue", + "selectors": [ + { + "cel": { + "expression": "expressionValue" + } + } + ], + "allocationMode": "allocationModeValue", + "count": 5, + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ] + } + ], + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ] + } + ], + "constraints": [ + { + "requests": [ + "requestsValue" + ], + "matchAttribute": "matchAttributeValue" + } + ], + "config": [ + { + "requests": [ + "requestsValue" + ], + "opaque": { + "driver": "driverValue", + "parameters": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + } + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.pb b/testdata/v1.33.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.pb new file mode 100644 index 0000000000000000000000000000000000000000..a91e9e068aba4420e886f4c858c9c9a44743f7b7 GIT binary patch literal 1226 zcmeHHy>1jS5Z=utaOdNGvKORiON%0k(2)y7I&H_L<4*`hDd@brbBS5+da=E$TuxUZ zQ2;MNL&GB=BxZ_TS8gOHSG#yh+^s@E^xe*3WAb?#~F{rAt>dW@cKqXr`(FnJ#) zUelW9Mu<_HWEodP=_Cg3uAEKGvjfyfXl4uh%l`4Ao81n{>1rc;?$8yTG0h00=ej|Y z=an0xYbnXd2?*ox+B~n`KX2c^oCfPRe7*Ql>pJ^78L(I$O>#S#U>&VZXQQqx!o?)a zP~TnoKjnWvvcB4BR zdv5T;T@}b*XAJJ3dIA&6ww7fZx8(CtS@Fd{xC!GiM9Lg?Hb#GR%e#SE0-hHjmF2tF zONok3?pmKB2hxBN>-0K0zy@bdf>KpCSkF=wszN%LdB^! zZahMJ7vDc^1n9FClB%Te;izI>` z<-AZ-X%SNn8sDbp%|3K9#_iy6!ym0_hJ9MHCdkN*UD2O0PILBF0~($8ZUWnpcHgxdlMZwpDmvq5~BP71^+`3H;D<(#IqFG9qr_t$Nwz7|r zWP#AEz11z17B63K#kz5!(ChcRLN{=C0A)@cBTbmqAWZMi>|6h3 zh`Ql(@mr`Hr%DXDCvT_WGMP>h^0RrjE)!>!gbwvN2fNUK8csr0SVdz#KmrmfUc|=P zdJmi#Svw~kf)nb899wSSt3M=1B)wbly+p==pDtIN4ACW>8Hq6D%%zfa+H=LK2or^s Q;+QfOF~_tpw+v$Z0Tu$i0ssI2 literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/resource.k8s.io.v1beta1.DeviceClass.yaml b/testdata/v1.33.0/resource.k8s.io.v1beta1.DeviceClass.yaml new file mode 100644 index 0000000000..8cbd63240c --- /dev/null +++ b/testdata/v1.33.0/resource.k8s.io.v1beta1.DeviceClass.yaml @@ -0,0 +1,48 @@ +apiVersion: resource.k8s.io/v1beta1 +kind: DeviceClass +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + config: + - opaque: + driver: driverValue + parameters: + apiVersion: example.com/v1 + kind: CustomType + spec: + replicas: 1 + status: + available: 1 + selectors: + - cel: + expression: expressionValue diff --git a/testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceClaim.json b/testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceClaim.json new file mode 100644 index 0000000000..5f52f15319 --- /dev/null +++ b/testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceClaim.json @@ -0,0 +1,238 @@ +{ + "kind": "ResourceClaim", + "apiVersion": "resource.k8s.io/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "devices": { + "requests": [ + { + "name": "nameValue", + "deviceClassName": "deviceClassNameValue", + "selectors": [ + { + "cel": { + "expression": "expressionValue" + } + } + ], + "allocationMode": "allocationModeValue", + "count": 5, + "adminAccess": true, + "firstAvailable": [ + { + "name": "nameValue", + "deviceClassName": "deviceClassNameValue", + "selectors": [ + { + "cel": { + "expression": "expressionValue" + } + } + ], + "allocationMode": "allocationModeValue", + "count": 5, + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ] + } + ], + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ] + } + ], + "constraints": [ + { + "requests": [ + "requestsValue" + ], + "matchAttribute": "matchAttributeValue" + } + ], + "config": [ + { + "requests": [ + "requestsValue" + ], + "opaque": { + "driver": "driverValue", + "parameters": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + } + } + } + ] + } + }, + "status": { + "allocation": { + "devices": { + "results": [ + { + "request": "requestValue", + "driver": "driverValue", + "pool": "poolValue", + "device": "deviceValue", + "adminAccess": true, + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ] + } + ], + "config": [ + { + "source": "sourceValue", + "requests": [ + "requestsValue" + ], + "opaque": { + "driver": "driverValue", + "parameters": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + } + } + } + ] + }, + "nodeSelector": { + "nodeSelectorTerms": [ + { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + ] + } + }, + "reservedFor": [ + { + "apiGroup": "apiGroupValue", + "resource": "resourceValue", + "name": "nameValue", + "uid": "uidValue" + } + ], + "devices": [ + { + "driver": "driverValue", + "pool": "poolValue", + "device": "deviceValue", + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "observedGeneration": 3, + "lastTransitionTime": "2004-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ], + "data": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + }, + "networkData": { + "interfaceName": "interfaceNameValue", + "ips": [ + "ipsValue" + ], + "hardwareAddress": "hardwareAddressValue" + } + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceClaim.pb b/testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceClaim.pb new file mode 100644 index 0000000000000000000000000000000000000000..889c2db17b3d012cd188e9fcc70ef49bd2d3091a GIT binary patch literal 1525 zcmc&!PiqrF6wf9tCU2WI-4-l+97IZx+D3(ti?lrm{-YG>!Q1TaOFPZ(&N{Oj8$&M^ zJm}GbXU~2F5qcK-1w4rd&wc})ok_B3L68c1d-MLk-|x-qwPgub;i^E%GvVV}uPxUY zzuDjLFr^z#eRpKo4k?SAQyadPp%&8!_h^`*v$&5j3Yy~MvC5s#tump$aUpeyVfP`6 zdpe?7%~+tN*7CUM9tz2LthMbcTh;2>`|lrT8m0S6`takkl6K(f3e-aCVJIKqz_E>} zBRm50G>&;nQuWrZWTO;qg{OX5It|4eDtH zK2_k&IiQyV>@yz~4N?|ZFTo-#;8CLDCkT=y8iw50Jw4)qskJ)0ZgozqY3lwuW9K$h zdpIyS)C~^Yz~VwbpG2F8jomK#seY`^Ze1$MxdwHC&oY#$VZvF8XzCwqrm0|FmYP!T zE9;_L1`_N*u>P2^0K6e7xF#KfM>I-8T=RLP_MY4z`KBoSb|zCE<#Z{XOwcEtArY8_ z%%_rcHjb56EnTK$m9bBmTFMY}!?F8r7QU3>qzpZn8})5)n(oD|C7g#NkPN>DB&&5f zkltEgn}2MIorlc*Pgv~24qX5Js@VN}RYt7-soyQAD-Q1oo+WxzSB*L~IVrw)ad61X z^7&OL;CJmQ_{m+UrQ=WP*oI?WWu;Pl=cX-?%F)$o&8d?o)m6}L&403EYDXLvrzpDW e)J{%1jS5Z=utaOdNGvKIu}(xQkWblgQmI&H_L<4*`hDd@brbHS{4z1ZGWE~l%I zD1eusq2Un_5;aoZ0Z~x%2H>^1A5wzo=*IJnXT~$%=VT-uG(gt`NM48t`pHQ4DZfDDd7i(3cI=$VdvugcaazpFjpeLk|}&zg?j+Cy@=oEeULL zpJs`Y^?pAMe$=0lJd-WN0-O-`uW>$A2z$rU2VPp{#jd((39(^!AJ;9-h-*v zw5GWcV$>#C#uZUIiGjOoXA|@605uYt*~0#+f4uBwuS0UW-pIfmxuP?n8DaEHH)!&_ zazk__B^fyZVH{qY=hgcc?fVzgVEu-#=Ray)XJ01+7R#e)ZYL9LqK(;n+?7SRoP-(b zyG#G4{O_mysfIq*(Cgpmyc0u7BhaLma>eK#+D08X&GnX+JjFf27>~^6AMn_2ba!ju z1~1%of&6vG;5Mo!Ftu!JS+;RYJ|C48UkrqsFquH4%wczH{71LE8>l7Vc>z*czI(lt zsOae(r34KNWlQ-l-HTxblBgLAS}tS}qi}{-ioyYgQ=&f+=tn%&zYM;KD?MueVIdVy oD^X~l%ptt+J&}t#*$DieFhaU_Z{r~1WS^rEC2ui literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceClaimTemplate.yaml b/testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceClaimTemplate.yaml new file mode 100644 index 0000000000..524a93574b --- /dev/null +++ b/testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceClaimTemplate.yaml @@ -0,0 +1,114 @@ +apiVersion: resource.k8s.io/v1beta1 +kind: ResourceClaimTemplate +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue + spec: + devices: + config: + - opaque: + driver: driverValue + parameters: + apiVersion: example.com/v1 + kind: CustomType + spec: + replicas: 1 + status: + available: 1 + requests: + - requestsValue + constraints: + - matchAttribute: matchAttributeValue + requests: + - requestsValue + requests: + - adminAccess: true + allocationMode: allocationModeValue + count: 5 + deviceClassName: deviceClassNameValue + firstAvailable: + - allocationMode: allocationModeValue + count: 5 + deviceClassName: deviceClassNameValue + name: nameValue + selectors: + - cel: + expression: expressionValue + tolerations: + - effect: effectValue + key: keyValue + operator: operatorValue + tolerationSeconds: 5 + value: valueValue + name: nameValue + selectors: + - cel: + expression: expressionValue + tolerations: + - effect: effectValue + key: keyValue + operator: operatorValue + tolerationSeconds: 5 + value: valueValue diff --git a/testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceSlice.json b/testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceSlice.json new file mode 100644 index 0000000000..027d504463 --- /dev/null +++ b/testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceSlice.json @@ -0,0 +1,155 @@ +{ + "kind": "ResourceSlice", + "apiVersion": "resource.k8s.io/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "driver": "driverValue", + "pool": { + "name": "nameValue", + "generation": 2, + "resourceSliceCount": 3 + }, + "nodeName": "nodeNameValue", + "nodeSelector": { + "nodeSelectorTerms": [ + { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + ] + }, + "allNodes": true, + "devices": [ + { + "name": "nameValue", + "basic": { + "attributes": { + "attributesKey": { + "int": 2, + "bool": true, + "string": "stringValue", + "version": "versionValue" + } + }, + "capacity": { + "capacityKey": { + "value": "0" + } + }, + "consumesCounters": [ + { + "counterSet": "counterSetValue", + "counters": { + "countersKey": { + "value": "0" + } + } + } + ], + "nodeName": "nodeNameValue", + "nodeSelector": { + "nodeSelectorTerms": [ + { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + ] + }, + "allNodes": true, + "taints": [ + { + "key": "keyValue", + "value": "valueValue", + "effect": "effectValue", + "timeAdded": "2004-01-01T01:01:01Z" + } + ] + } + } + ], + "perDeviceNodeSelection": true, + "sharedCounters": [ + { + "name": "nameValue", + "counters": { + "countersKey": { + "value": "0" + } + } + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceSlice.pb b/testdata/v1.33.0/resource.k8s.io.v1beta1.ResourceSlice.pb new file mode 100644 index 0000000000000000000000000000000000000000..3f4ace0ecdc12643fe1b77dc324e05fa324f62b2 GIT binary patch literal 857 zcmcJN!A{#i5Qgmp+GLCqV<8p!g6acBkxD}(B#UE?P*n&Jhu+rCB-+}nquq6+fO_nu z*FHg|-gpEg9sr4VKpcAR81{kSJM;bjIE{n_TkwXX$P1p}b{dIontzz= z#3;#*?;brCjx(B||LYap)u7498J?1?K!0_F3^|ebX_g9FWmSwxVp>91U^e_nS*l-j z8U-EbsJAv-dWu}ooat=zy5DHr{``Hl8b#MlpPG&pW z7012WdOdJiK3F&&9>F1OLLG&<-usGipqpcHgxdlMZwpDmvq5~BP71^+BTbmqAWZMi>|6h3 zh`Ql(@mr`HZ6$`>leg1wnM|h$`PsZ%mx;4VLWlaCgI#Dq4JV;0tfDa=AOQ&#FJj|t zy$8;Wteuk%!3p(4jx9Iv)gO{0lHRTOULxbbPnRoBhUk*cj6@i6=2A&Ir*p-s2or^s Q;+QfOF~_tpw+v$Z0T>It0{{R3 literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/resource.k8s.io.v1beta2.DeviceClass.yaml b/testdata/v1.33.0/resource.k8s.io.v1beta2.DeviceClass.yaml new file mode 100644 index 0000000000..3d59e2040f --- /dev/null +++ b/testdata/v1.33.0/resource.k8s.io.v1beta2.DeviceClass.yaml @@ -0,0 +1,48 @@ +apiVersion: resource.k8s.io/v1beta2 +kind: DeviceClass +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + config: + - opaque: + driver: driverValue + parameters: + apiVersion: example.com/v1 + kind: CustomType + spec: + replicas: 1 + status: + available: 1 + selectors: + - cel: + expression: expressionValue diff --git a/testdata/v1.33.0/resource.k8s.io.v1beta2.ResourceClaim.json b/testdata/v1.33.0/resource.k8s.io.v1beta2.ResourceClaim.json new file mode 100644 index 0000000000..b9494bdda3 --- /dev/null +++ b/testdata/v1.33.0/resource.k8s.io.v1beta2.ResourceClaim.json @@ -0,0 +1,240 @@ +{ + "kind": "ResourceClaim", + "apiVersion": "resource.k8s.io/v1beta2", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "devices": { + "requests": [ + { + "name": "nameValue", + "exactly": { + "deviceClassName": "deviceClassNameValue", + "selectors": [ + { + "cel": { + "expression": "expressionValue" + } + } + ], + "allocationMode": "allocationModeValue", + "count": 4, + "adminAccess": true, + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ] + }, + "firstAvailable": [ + { + "name": "nameValue", + "deviceClassName": "deviceClassNameValue", + "selectors": [ + { + "cel": { + "expression": "expressionValue" + } + } + ], + "allocationMode": "allocationModeValue", + "count": 5, + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ] + } + ] + } + ], + "constraints": [ + { + "requests": [ + "requestsValue" + ], + "matchAttribute": "matchAttributeValue" + } + ], + "config": [ + { + "requests": [ + "requestsValue" + ], + "opaque": { + "driver": "driverValue", + "parameters": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + } + } + } + ] + } + }, + "status": { + "allocation": { + "devices": { + "results": [ + { + "request": "requestValue", + "driver": "driverValue", + "pool": "poolValue", + "device": "deviceValue", + "adminAccess": true, + "tolerations": [ + { + "key": "keyValue", + "operator": "operatorValue", + "value": "valueValue", + "effect": "effectValue", + "tolerationSeconds": 5 + } + ] + } + ], + "config": [ + { + "source": "sourceValue", + "requests": [ + "requestsValue" + ], + "opaque": { + "driver": "driverValue", + "parameters": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + } + } + } + ] + }, + "nodeSelector": { + "nodeSelectorTerms": [ + { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + ] + } + }, + "reservedFor": [ + { + "apiGroup": "apiGroupValue", + "resource": "resourceValue", + "name": "nameValue", + "uid": "uidValue" + } + ], + "devices": [ + { + "driver": "driverValue", + "pool": "poolValue", + "device": "deviceValue", + "conditions": [ + { + "type": "typeValue", + "status": "statusValue", + "observedGeneration": 3, + "lastTransitionTime": "2004-01-01T01:01:01Z", + "reason": "reasonValue", + "message": "messageValue" + } + ], + "data": { + "apiVersion": "example.com/v1", + "kind": "CustomType", + "spec": { + "replicas": 1 + }, + "status": { + "available": 1 + } + }, + "networkData": { + "interfaceName": "interfaceNameValue", + "ips": [ + "ipsValue" + ], + "hardwareAddress": "hardwareAddressValue" + } + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/resource.k8s.io.v1beta2.ResourceClaim.pb b/testdata/v1.33.0/resource.k8s.io.v1beta2.ResourceClaim.pb new file mode 100644 index 0000000000000000000000000000000000000000..8c944ef4fabfc9a71d319fefc7412662e98d5376 GIT binary patch literal 1527 zcmc&!J8u&~5cb)Lu;=2$xkMt`3at>bEEI?V$#R2|6iB=jMJNT`-rYFa_+ISZnLLz+ zNEAp^6x7uG1PY{-NcjU)h=Q7b0DHT(&xwMBQb4yiGdJ_i_svYdBTLYPs{&=52@jY1 z9l6ZoTZ0uBQ`UCsn?uKXzpxo6jQjf4UK|zOLLqq^X=~@oTD5xm;m4<`M(Lq?ef;@Fy*A+a64V0bVjv&k zzGIuG{==m(%c3YwS*ns~cVpsP$L!vNTAxRzFe&iUF`CvKOZX&^+g8UCb3GohfFCG; zI?o%+g_)2=Y#W6(IJ0q*_dkM9&ZnWOhwrDqDveTGCBwj%&-N3;Om_;(hevA-nYm*o zG^r;Q_*{XvXNW$4MIQ&;LnVZiW44_In1?ysOH_t2hh%{TLF{Q%Ph#IxyEfId+IOMa z$9;pmZji^O5dwp}wsuh)dp-10{n4Bz$JV6e7vdln;h-1cXii@ag>xP10$*e(Q=^5m z5VF+USxr;H-7GcG$!qI;SOyYoU+}?5G9TPSTBuFC6!%z|1i0+Qp_+VpljgIc?CY6K z<1iOY*<^wq?H*ErNx(fOX?NvFS=HEO>a8*k7*}H%VD2~~@2BBw8IH@)hnXR6!}}x_ zQcL1E7?N)EHKbosD(9UAw%KG;>?~#EKXI`M8*t;#qh}BD(HpAzw{dr%t~7ig;w;gv z64mNN=d@Vz;^fd*<+Gzu&`<0M`ssbBrK2@z~Y+S|o=@DTN4=I4rk!d))4w;#jVb zD3IVk&>`^?D3B7 zA16+u49y9TK#Rt)P*mw62JS4a&7SA`P!CyLUhH1*Ckr-PZJMxUB0KibPTOM^Q_jvb zK~v|o?ZLH(#`FYJlW-0Kma0Nfap-OBOrphR9qq0o1=JVl zsjtAfkH8yL;vK3Udgcw<^=^|G)B_i8L~D(F;IF(avI30;BtYTe!ZzTNPw_bU2+|3gJ5@VO7|oFtfwV_f)-3H6I4gbrb> zkVGmGUG{37kzwZ7tJu6aTn2*J$#mqSKZUY+EUq+rNla&+N)Y~RFV@~JG8Qq%W zUZdX(Tvm+Nj)$jk0=v-4aABBS!&Df=z?oO7W&!_+efxIw?ZKgk;1Vf0O-hN{;~hm} zhmKG=Hq~8PkI>NLQ-%hro%MAA(IF9M{YY*Oe&U_r<@|X z&vo)qBP~H^a7}pu?(P%>D4N6Nit;+kDP}aTBz_x#PcE29&BmZvu*9HIPXWq8X&oqJ zQW!Sa8aJDZm#?>mW1VUA`u(m^NN)P1#c2c_&!Kd;D`++%pLD1YGN-vVF=J=rZ8Ues zq?IyJeeC_^_t$9#U7E4YAcuBftL}se%Gq28G(JyuM0RFW&?zWGxE+}-?_b6D{@eKa zhR?-M-LXd640wW9WmYwF(jc{m$FYM&v~FTqs#ELRzLNmPie+o(!Cs~SW`+nQXK`r) Ic$RPd0`MZ7sQ>@~ literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/scheduling.k8s.io.v1.PriorityClass.yaml b/testdata/v1.33.0/scheduling.k8s.io.v1.PriorityClass.yaml new file mode 100644 index 0000000000..275260df3a --- /dev/null +++ b/testdata/v1.33.0/scheduling.k8s.io.v1.PriorityClass.yaml @@ -0,0 +1,38 @@ +apiVersion: scheduling.k8s.io/v1 +description: descriptionValue +globalDefault: true +kind: PriorityClass +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +preemptionPolicy: preemptionPolicyValue +value: 2 diff --git a/testdata/v1.33.0/scheduling.k8s.io.v1alpha1.PriorityClass.json b/testdata/v1.33.0/scheduling.k8s.io.v1alpha1.PriorityClass.json new file mode 100644 index 0000000000..dc20dd4f91 --- /dev/null +++ b/testdata/v1.33.0/scheduling.k8s.io.v1alpha1.PriorityClass.json @@ -0,0 +1,50 @@ +{ + "kind": "PriorityClass", + "apiVersion": "scheduling.k8s.io/v1alpha1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "value": 2, + "globalDefault": true, + "description": "descriptionValue", + "preemptionPolicy": "preemptionPolicyValue" +} \ No newline at end of file diff --git a/testdata/v1.33.0/scheduling.k8s.io.v1alpha1.PriorityClass.pb b/testdata/v1.33.0/scheduling.k8s.io.v1alpha1.PriorityClass.pb new file mode 100644 index 0000000000000000000000000000000000000000..d359c56527d559d442b1bf02b1b2e9c416a3e99b GIT binary patch literal 456 zcmZ8dK}y3w6iwQK&1l;g6iSv^R;ach1ebNEB3+0JcR$H*J7zi=W)dNa7jWejTzdp> zAoLF6!nHTh>4ete?#=t}zj^yHn&SA;-%V<+qnpB_OUOK}#W3Yv{5AZ_40%OTe$X6$af zjpp{4I4R}T$NpdbV4bGd0YNu|9ND2QI}^%*(R&@x_&nJW*_i`}DM~|l?My81U&Z(T z+XVWC&&5yOwT9XZS)#5=Q8jbYAhn0bk*kVm-Ndp~x7M`-H$fFkD%Q@ueIXI&h8Smz L#-$11TY>cp=xLtp literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/scheduling.k8s.io.v1alpha1.PriorityClass.yaml b/testdata/v1.33.0/scheduling.k8s.io.v1alpha1.PriorityClass.yaml new file mode 100644 index 0000000000..23476e4b56 --- /dev/null +++ b/testdata/v1.33.0/scheduling.k8s.io.v1alpha1.PriorityClass.yaml @@ -0,0 +1,38 @@ +apiVersion: scheduling.k8s.io/v1alpha1 +description: descriptionValue +globalDefault: true +kind: PriorityClass +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +preemptionPolicy: preemptionPolicyValue +value: 2 diff --git a/testdata/v1.33.0/scheduling.k8s.io.v1beta1.PriorityClass.json b/testdata/v1.33.0/scheduling.k8s.io.v1beta1.PriorityClass.json new file mode 100644 index 0000000000..44cb32f460 --- /dev/null +++ b/testdata/v1.33.0/scheduling.k8s.io.v1beta1.PriorityClass.json @@ -0,0 +1,50 @@ +{ + "kind": "PriorityClass", + "apiVersion": "scheduling.k8s.io/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "value": 2, + "globalDefault": true, + "description": "descriptionValue", + "preemptionPolicy": "preemptionPolicyValue" +} \ No newline at end of file diff --git a/testdata/v1.33.0/scheduling.k8s.io.v1beta1.PriorityClass.pb b/testdata/v1.33.0/scheduling.k8s.io.v1beta1.PriorityClass.pb new file mode 100644 index 0000000000000000000000000000000000000000..a61387a182eeac29563f1b9df53571faf81ef59c GIT binary patch literal 455 zcmZ8dF;2rk5VVs>BnL^11yXS7(nTPVkSxm30YWJd1>M=+gu|CR>()kc5Feo83)DP; zA0Xuqh=Q6Qz~!ujh;D9nc5Zgk5G@jr1B`DWDL50;ei~w*$;10W1UVhJ?XhA~vAjIx z6w!UIlaCr{2|9yo$_sFJryxMl94=Rs*I7<6qj4qi+X#Ge!9;2{f@Z-IgNAzwP!>w- zKp~UDu;JFI*<8GQy)_)`OrzKDca6s6rbk+wM!@kLN_V@0W+U=RhYBHcnrjm?b~fHd zb9YQyDHGMl-d}!yohIngjBN%vvO`;SCrnVz<~pG9d9ow2Goyk|K^emB$ZUE4D!%vM z#@9D|E`I8cHPmLn6TB+3s+p4psXaW794w-B6U$PaTF>^K1Ta=CTRR8)nF5#@Vk|j} KOB2AeeCrn~^`3wL literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/scheduling.k8s.io.v1beta1.PriorityClass.yaml b/testdata/v1.33.0/scheduling.k8s.io.v1beta1.PriorityClass.yaml new file mode 100644 index 0000000000..046a8a448d --- /dev/null +++ b/testdata/v1.33.0/scheduling.k8s.io.v1beta1.PriorityClass.yaml @@ -0,0 +1,38 @@ +apiVersion: scheduling.k8s.io/v1beta1 +description: descriptionValue +globalDefault: true +kind: PriorityClass +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +preemptionPolicy: preemptionPolicyValue +value: 2 diff --git a/testdata/v1.33.0/storage.k8s.io.v1.CSIDriver.json b/testdata/v1.33.0/storage.k8s.io.v1.CSIDriver.json new file mode 100644 index 0000000000..84efb979be --- /dev/null +++ b/testdata/v1.33.0/storage.k8s.io.v1.CSIDriver.json @@ -0,0 +1,64 @@ +{ + "kind": "CSIDriver", + "apiVersion": "storage.k8s.io/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "attachRequired": true, + "podInfoOnMount": true, + "volumeLifecycleModes": [ + "volumeLifecycleModesValue" + ], + "storageCapacity": true, + "fsGroupPolicy": "fsGroupPolicyValue", + "tokenRequests": [ + { + "audience": "audienceValue", + "expirationSeconds": 2 + } + ], + "requiresRepublish": true, + "seLinuxMount": true, + "nodeAllocatableUpdatePeriodSeconds": 9 + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/storage.k8s.io.v1.CSIDriver.pb b/testdata/v1.33.0/storage.k8s.io.v1.CSIDriver.pb new file mode 100644 index 0000000000000000000000000000000000000000..07aeaa7f75626b62cdf0ff913f6b0119dc875cbd GIT binary patch literal 478 zcmZ9I%}T>S6or$vU^3b^4K6ebku1BYS`dOOse*sC6ciWkCdo}1Go1-DNg;|a;9IzM z>C!h4`VQj4wQr#5L~C((=Kh@d?uk9Ap$*iMDHnJIo!FBd!nYgL1^JOQ2Douvl%hjf{j!byo#Qo{3@(ge07) zs<+fLjOpXYOU=?w3-$E*TBsqqUPC6uK2UiExxHLUwc)#{ff?f|P74#&wie!M=4Ka} zF=6G$&L6)!r)f8FLKZ=`bx#+~h%ijaZ2_o!9&{hAj4>+$5~^S~crv^H7vK4B;}$o( zPrs^`)-B9{hVn8`%4GIxsB(ATvt;JalTe`!4BgV5^$Dlh82TiFAP*><^AJjkO}%YL i@<{M38FEU3T%mMZsE)Ic0Q*Vas(AXoer!6Lt9=6~$fAD$ literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/storage.k8s.io.v1.CSIDriver.yaml b/testdata/v1.33.0/storage.k8s.io.v1.CSIDriver.yaml new file mode 100644 index 0000000000..748c7614a9 --- /dev/null +++ b/testdata/v1.33.0/storage.k8s.io.v1.CSIDriver.yaml @@ -0,0 +1,47 @@ +apiVersion: storage.k8s.io/v1 +kind: CSIDriver +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + attachRequired: true + fsGroupPolicy: fsGroupPolicyValue + nodeAllocatableUpdatePeriodSeconds: 9 + podInfoOnMount: true + requiresRepublish: true + seLinuxMount: true + storageCapacity: true + tokenRequests: + - audience: audienceValue + expirationSeconds: 2 + volumeLifecycleModes: + - volumeLifecycleModesValue diff --git a/testdata/v1.33.0/storage.k8s.io.v1.CSINode.json b/testdata/v1.33.0/storage.k8s.io.v1.CSINode.json new file mode 100644 index 0000000000..0bfe5b71b2 --- /dev/null +++ b/testdata/v1.33.0/storage.k8s.io.v1.CSINode.json @@ -0,0 +1,60 @@ +{ + "kind": "CSINode", + "apiVersion": "storage.k8s.io/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "drivers": [ + { + "name": "nameValue", + "nodeID": "nodeIDValue", + "topologyKeys": [ + "topologyKeysValue" + ], + "allocatable": { + "count": 1 + } + } + ] + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/storage.k8s.io.v1.CSINode.pb b/testdata/v1.33.0/storage.k8s.io.v1.CSINode.pb new file mode 100644 index 0000000000000000000000000000000000000000..f67125d6a2bad437491c8fd452dda97b579521fe GIT binary patch literal 447 zcmZ9Iu};G<5QdYsQd1YwBw|1jQ^pQ0t%MXY7M234kU$J<4!K4qt{vG4Qb4=_55UgM zBk%@DeFwzA%o~8~s3l_ieRuxvzb_4?f%cFqb1rZKgEW)_!iRSwuYGheo$(mF=O+4S zpboK}cpAhA~C9RZRTLd}7Ygfm?Y z+Y`%LzI?s49OFc(*Y9_w&e8QQ>QEd3m8Vd8-Ad{oQGjgB7|(I8Omy3+z4grP0qUfL zRg3+<{J|zozlSqY53+BDrs&NH!<5{sfZFHDjL_BsGlfU!f@kw=b^kiP|KBE1H+(LC znvOA6W0L>m$s>Ie<%jJr&spC0RdzMJ!mQ=XIxLzO9LSf+0T F#xF_Km~;RD literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/storage.k8s.io.v1.CSINode.yaml b/testdata/v1.33.0/storage.k8s.io.v1.CSINode.yaml new file mode 100644 index 0000000000..4f780e15c6 --- /dev/null +++ b/testdata/v1.33.0/storage.k8s.io.v1.CSINode.yaml @@ -0,0 +1,42 @@ +apiVersion: storage.k8s.io/v1 +kind: CSINode +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + drivers: + - allocatable: + count: 1 + name: nameValue + nodeID: nodeIDValue + topologyKeys: + - topologyKeysValue diff --git a/testdata/v1.33.0/storage.k8s.io.v1.CSIStorageCapacity.json b/testdata/v1.33.0/storage.k8s.io.v1.CSIStorageCapacity.json new file mode 100644 index 0000000000..38c75991ec --- /dev/null +++ b/testdata/v1.33.0/storage.k8s.io.v1.CSIStorageCapacity.json @@ -0,0 +1,63 @@ +{ + "kind": "CSIStorageCapacity", + "apiVersion": "storage.k8s.io/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "nodeTopology": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "storageClassName": "storageClassNameValue", + "capacity": "0", + "maximumVolumeSize": "0" +} \ No newline at end of file diff --git a/testdata/v1.33.0/storage.k8s.io.v1.CSIStorageCapacity.pb b/testdata/v1.33.0/storage.k8s.io.v1.CSIStorageCapacity.pb new file mode 100644 index 0000000000000000000000000000000000000000..29c136467f1ae9d12e7c37604295293c22099ee9 GIT binary patch literal 518 zcmZ8e!A`pfJZ5MV0KaOTuBR26}T8o(G&Adw;}Y;XKk z&h0U(hJ@+H?w^0JaMNx=L^h3dP2Y^0Gs1w9J84kqJemR8UI3GuiWT8Bc$Ck-w(tIz z@#G92tM9UH^rRT3Q*oI^dNchBD&0Q}Y>@`VCe%_#NRG6CWO6eqCbl>Jy7NA=LY!$_ i*Dkm=<<^$Dj<)RX{+@P7L5Si^UKyF)cK*1AXZ!$bh_NpK literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/storage.k8s.io.v1.CSIStorageCapacity.yaml b/testdata/v1.33.0/storage.k8s.io.v1.CSIStorageCapacity.yaml new file mode 100644 index 0000000000..4781557d73 --- /dev/null +++ b/testdata/v1.33.0/storage.k8s.io.v1.CSIStorageCapacity.yaml @@ -0,0 +1,45 @@ +apiVersion: storage.k8s.io/v1 +capacity: "0" +kind: CSIStorageCapacity +maximumVolumeSize: "0" +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +nodeTopology: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue +storageClassName: storageClassNameValue diff --git a/testdata/v1.33.0/storage.k8s.io.v1.StorageClass.json b/testdata/v1.33.0/storage.k8s.io.v1.StorageClass.json new file mode 100644 index 0000000000..82d3874817 --- /dev/null +++ b/testdata/v1.33.0/storage.k8s.io.v1.StorageClass.json @@ -0,0 +1,68 @@ +{ + "kind": "StorageClass", + "apiVersion": "storage.k8s.io/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "provisioner": "provisionerValue", + "parameters": { + "parametersKey": "parametersValue" + }, + "reclaimPolicy": "reclaimPolicyValue", + "mountOptions": [ + "mountOptionsValue" + ], + "allowVolumeExpansion": true, + "volumeBindingMode": "volumeBindingModeValue", + "allowedTopologies": [ + { + "matchLabelExpressions": [ + { + "key": "keyValue", + "values": [ + "valuesValue" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/testdata/v1.33.0/storage.k8s.io.v1.StorageClass.pb b/testdata/v1.33.0/storage.k8s.io.v1.StorageClass.pb new file mode 100644 index 0000000000000000000000000000000000000000..b1e32d4c891dd3118bdf3f0f77a75a71de1d4a5c GIT binary patch literal 545 zcmZ9INlwEs6o!+w5~(|-5n{*+vh1RiN=Q+cVaHer#DbmEx|NAzM|KjaATGcySaSq! zfYdu67Oast05~=s#O}TSP2c+?Ul?E?v_;A|oT6^zi!Npd`Jq$4($X=3LO9=L@LmE{ z3S)EwNrs&E6j8)siY^wC+bpUgfg|1GH3TA)GfX2j(Xlc-R#AVGBf&B*`w$nHQKkAD zfo08~KVK`haU!FauQwSD!R-#H5*Q*PPSMP%=}=9C9%w>JSqf9RM3wEeT=m=?fog=Q zKJ2dey(LYj1rxju(ldRNwp7mnk*^)U*Nm{*Ld=WkNHp8 zHu`cIB4cqqOSChC3Mf512DZq;r4!0jJK-$Hg(ZJi+&$1pAeX+TlB6)8wMrF-=WsM4 z5XVDC@MxyAPCI59O)nGWi;{ZgU@K=Ni%}rmz;t@f#u_Hr1>3-ikREkvc|oF|b`8(? E1xN0_;Q#;t literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/storage.k8s.io.v1.StorageClass.yaml b/testdata/v1.33.0/storage.k8s.io.v1.StorageClass.yaml new file mode 100644 index 0000000000..943b34f21d --- /dev/null +++ b/testdata/v1.33.0/storage.k8s.io.v1.StorageClass.yaml @@ -0,0 +1,47 @@ +allowVolumeExpansion: true +allowedTopologies: +- matchLabelExpressions: + - key: keyValue + values: + - valuesValue +apiVersion: storage.k8s.io/v1 +kind: StorageClass +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +mountOptions: +- mountOptionsValue +parameters: + parametersKey: parametersValue +provisioner: provisionerValue +reclaimPolicy: reclaimPolicyValue +volumeBindingMode: volumeBindingModeValue diff --git a/testdata/v1.33.0/storage.k8s.io.v1.VolumeAttachment.json b/testdata/v1.33.0/storage.k8s.io.v1.VolumeAttachment.json new file mode 100644 index 0000000000..2ae5ba4606 --- /dev/null +++ b/testdata/v1.33.0/storage.k8s.io.v1.VolumeAttachment.json @@ -0,0 +1,328 @@ +{ + "kind": "VolumeAttachment", + "apiVersion": "storage.k8s.io/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "attacher": "attacherValue", + "source": { + "persistentVolumeName": "persistentVolumeNameValue", + "inlineVolumeSpec": { + "capacity": { + "capacityKey": "0" + }, + "gcePersistentDisk": { + "pdName": "pdNameValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "awsElasticBlockStore": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "hostPath": { + "path": "pathValue", + "type": "typeValue" + }, + "glusterfs": { + "endpoints": "endpointsValue", + "path": "pathValue", + "readOnly": true, + "endpointsNamespace": "endpointsNamespaceValue" + }, + "nfs": { + "server": "serverValue", + "path": "pathValue", + "readOnly": true + }, + "rbd": { + "monitors": [ + "monitorsValue" + ], + "image": "imageValue", + "fsType": "fsTypeValue", + "pool": "poolValue", + "user": "userValue", + "keyring": "keyringValue", + "secretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + }, + "readOnly": true + }, + "iscsi": { + "targetPortal": "targetPortalValue", + "iqn": "iqnValue", + "lun": 3, + "iscsiInterface": "iscsiInterfaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "portals": [ + "portalsValue" + ], + "chapAuthDiscovery": true, + "chapAuthSession": true, + "secretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + }, + "initiatorName": "initiatorNameValue" + }, + "cinder": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + } + }, + "cephfs": { + "monitors": [ + "monitorsValue" + ], + "path": "pathValue", + "user": "userValue", + "secretFile": "secretFileValue", + "secretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + }, + "readOnly": true + }, + "fc": { + "targetWWNs": [ + "targetWWNsValue" + ], + "lun": 2, + "fsType": "fsTypeValue", + "readOnly": true, + "wwids": [ + "wwidsValue" + ] + }, + "flocker": { + "datasetName": "datasetNameValue", + "datasetUUID": "datasetUUIDValue" + }, + "flexVolume": { + "driver": "driverValue", + "fsType": "fsTypeValue", + "secretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + }, + "readOnly": true, + "options": { + "optionsKey": "optionsValue" + } + }, + "azureFile": { + "secretName": "secretNameValue", + "shareName": "shareNameValue", + "readOnly": true, + "secretNamespace": "secretNamespaceValue" + }, + "vsphereVolume": { + "volumePath": "volumePathValue", + "fsType": "fsTypeValue", + "storagePolicyName": "storagePolicyNameValue", + "storagePolicyID": "storagePolicyIDValue" + }, + "quobyte": { + "registry": "registryValue", + "volume": "volumeValue", + "readOnly": true, + "user": "userValue", + "group": "groupValue", + "tenant": "tenantValue" + }, + "azureDisk": { + "diskName": "diskNameValue", + "diskURI": "diskURIValue", + "cachingMode": "cachingModeValue", + "fsType": "fsTypeValue", + "readOnly": true, + "kind": "kindValue" + }, + "photonPersistentDisk": { + "pdID": "pdIDValue", + "fsType": "fsTypeValue" + }, + "portworxVolume": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "scaleIO": { + "gateway": "gatewayValue", + "system": "systemValue", + "secretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + }, + "sslEnabled": true, + "protectionDomain": "protectionDomainValue", + "storagePool": "storagePoolValue", + "storageMode": "storageModeValue", + "volumeName": "volumeNameValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "local": { + "path": "pathValue", + "fsType": "fsTypeValue" + }, + "storageos": { + "volumeName": "volumeNameValue", + "volumeNamespace": "volumeNamespaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "kind": "kindValue", + "namespace": "namespaceValue", + "name": "nameValue", + "uid": "uidValue", + "apiVersion": "apiVersionValue", + "resourceVersion": "resourceVersionValue", + "fieldPath": "fieldPathValue" + } + }, + "csi": { + "driver": "driverValue", + "volumeHandle": "volumeHandleValue", + "readOnly": true, + "fsType": "fsTypeValue", + "volumeAttributes": { + "volumeAttributesKey": "volumeAttributesValue" + }, + "controllerPublishSecretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + }, + "nodeStageSecretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + }, + "nodePublishSecretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + }, + "controllerExpandSecretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + }, + "nodeExpandSecretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + } + }, + "accessModes": [ + "accessModesValue" + ], + "claimRef": { + "kind": "kindValue", + "namespace": "namespaceValue", + "name": "nameValue", + "uid": "uidValue", + "apiVersion": "apiVersionValue", + "resourceVersion": "resourceVersionValue", + "fieldPath": "fieldPathValue" + }, + "persistentVolumeReclaimPolicy": "persistentVolumeReclaimPolicyValue", + "storageClassName": "storageClassNameValue", + "mountOptions": [ + "mountOptionsValue" + ], + "volumeMode": "volumeModeValue", + "nodeAffinity": { + "required": { + "nodeSelectorTerms": [ + { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + ] + } + }, + "volumeAttributesClassName": "volumeAttributesClassNameValue" + } + }, + "nodeName": "nodeNameValue" + }, + "status": { + "attached": true, + "attachmentMetadata": { + "attachmentMetadataKey": "attachmentMetadataValue" + }, + "attachError": { + "time": "2001-01-01T01:01:01Z", + "message": "messageValue", + "errorCode": 3 + }, + "detachError": { + "time": "2001-01-01T01:01:01Z", + "message": "messageValue", + "errorCode": 3 + } + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/storage.k8s.io.v1.VolumeAttachment.pb b/testdata/v1.33.0/storage.k8s.io.v1.VolumeAttachment.pb new file mode 100644 index 0000000000000000000000000000000000000000..3bd058574449f714f45a81b2c7c63324bd5df95b GIT binary patch literal 2607 zcmcgu&2Jk;6!#>Ru%Ev+lcWuc6h$kjkX40X2^7qwm;!M5XU1r9K zT*L(=gnC5c!Ue$%5Erf-xFhw#Uw}Ap;DGoC5X{c(S4_0@)Z5IPH*eniz2AFpW{08z zFTjS7AtzJ1KRXorEPUzoWo+FI{l%QVAtiB7<}{G_?@jo14Qc_I)4Rl9P`ojv0p&!} z+o{NI#it@7u2FHCg8IidSuoQ#I@Ja9^s2kXsR$Qb=}|6N7-;F?GyQ7y@mIh9c*&{^ z)atvxepag?+~0wkPbSnC@6aW#o29-naiB$lAe2NZBl_4X?6uB=SD-dyfqB@@{dY2N zI&BiMq9X_B5b^dg3y9AiDhIWlM`!|#ISCX_Tnlh3jNI zeNWt3Mh2PQC0P65!@eaJlMD$B>NgfNi3UA=luRqqHUq)LNHONKc9qYW79E>V~> zxs35y2XufxZo)3qBQIC1ALp;{tnVSb2hCHRPt0jeroKC`LW>4o z6tX}XXmGB#gPbebVf=c|hK>z&LHTJKSn*PK2F-aGFvY{fB(S+cTEA@7;2;r}q>_&KjG zCrxn}`pjKs_LVi$ER8&g?_nRBoK97Z@}>3+*Nt(#Q9k4e>A;kSi%1`I>#C-Ss_MA* zKSD>)^q81sZ{bF~9gmLmxox?s7b}k63caMi79D;Ob@M*=2&tYKc^8%TXK1&abzh** z5j3W%v7eDN7_n5{XKvj1pLA_UJe1Up6Luq<6J~0vYh|z{)!R!YSvdV9AzA!`VthmN zwGQgSY<-KqL}@;=>v+rLAQt3pXqC&;!g#7(B+AS(c+>7IHz?J`s gwWGET>Ra;tPrs;d32vyu5b2mzW3S}Qt~ix{0e4@Bvj6}9 literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/storage.k8s.io.v1.VolumeAttachment.yaml b/testdata/v1.33.0/storage.k8s.io.v1.VolumeAttachment.yaml new file mode 100644 index 0000000000..8e6f6f227a --- /dev/null +++ b/testdata/v1.33.0/storage.k8s.io.v1.VolumeAttachment.yaml @@ -0,0 +1,251 @@ +apiVersion: storage.k8s.io/v1 +kind: VolumeAttachment +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + attacher: attacherValue + nodeName: nodeNameValue + source: + inlineVolumeSpec: + accessModes: + - accessModesValue + awsElasticBlockStore: + fsType: fsTypeValue + partition: 3 + readOnly: true + volumeID: volumeIDValue + azureDisk: + cachingMode: cachingModeValue + diskName: diskNameValue + diskURI: diskURIValue + fsType: fsTypeValue + kind: kindValue + readOnly: true + azureFile: + readOnly: true + secretName: secretNameValue + secretNamespace: secretNamespaceValue + shareName: shareNameValue + capacity: + capacityKey: "0" + cephfs: + monitors: + - monitorsValue + path: pathValue + readOnly: true + secretFile: secretFileValue + secretRef: + name: nameValue + namespace: namespaceValue + user: userValue + cinder: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + namespace: namespaceValue + volumeID: volumeIDValue + claimRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue + csi: + controllerExpandSecretRef: + name: nameValue + namespace: namespaceValue + controllerPublishSecretRef: + name: nameValue + namespace: namespaceValue + driver: driverValue + fsType: fsTypeValue + nodeExpandSecretRef: + name: nameValue + namespace: namespaceValue + nodePublishSecretRef: + name: nameValue + namespace: namespaceValue + nodeStageSecretRef: + name: nameValue + namespace: namespaceValue + readOnly: true + volumeAttributes: + volumeAttributesKey: volumeAttributesValue + volumeHandle: volumeHandleValue + fc: + fsType: fsTypeValue + lun: 2 + readOnly: true + targetWWNs: + - targetWWNsValue + wwids: + - wwidsValue + flexVolume: + driver: driverValue + fsType: fsTypeValue + options: + optionsKey: optionsValue + readOnly: true + secretRef: + name: nameValue + namespace: namespaceValue + flocker: + datasetName: datasetNameValue + datasetUUID: datasetUUIDValue + gcePersistentDisk: + fsType: fsTypeValue + partition: 3 + pdName: pdNameValue + readOnly: true + glusterfs: + endpoints: endpointsValue + endpointsNamespace: endpointsNamespaceValue + path: pathValue + readOnly: true + hostPath: + path: pathValue + type: typeValue + iscsi: + chapAuthDiscovery: true + chapAuthSession: true + fsType: fsTypeValue + initiatorName: initiatorNameValue + iqn: iqnValue + iscsiInterface: iscsiInterfaceValue + lun: 3 + portals: + - portalsValue + readOnly: true + secretRef: + name: nameValue + namespace: namespaceValue + targetPortal: targetPortalValue + local: + fsType: fsTypeValue + path: pathValue + mountOptions: + - mountOptionsValue + nfs: + path: pathValue + readOnly: true + server: serverValue + nodeAffinity: + required: + nodeSelectorTerms: + - matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + persistentVolumeReclaimPolicy: persistentVolumeReclaimPolicyValue + photonPersistentDisk: + fsType: fsTypeValue + pdID: pdIDValue + portworxVolume: + fsType: fsTypeValue + readOnly: true + volumeID: volumeIDValue + quobyte: + group: groupValue + readOnly: true + registry: registryValue + tenant: tenantValue + user: userValue + volume: volumeValue + rbd: + fsType: fsTypeValue + image: imageValue + keyring: keyringValue + monitors: + - monitorsValue + pool: poolValue + readOnly: true + secretRef: + name: nameValue + namespace: namespaceValue + user: userValue + scaleIO: + fsType: fsTypeValue + gateway: gatewayValue + protectionDomain: protectionDomainValue + readOnly: true + secretRef: + name: nameValue + namespace: namespaceValue + sslEnabled: true + storageMode: storageModeValue + storagePool: storagePoolValue + system: systemValue + volumeName: volumeNameValue + storageClassName: storageClassNameValue + storageos: + fsType: fsTypeValue + readOnly: true + secretRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue + volumeName: volumeNameValue + volumeNamespace: volumeNamespaceValue + volumeAttributesClassName: volumeAttributesClassNameValue + volumeMode: volumeModeValue + vsphereVolume: + fsType: fsTypeValue + storagePolicyID: storagePolicyIDValue + storagePolicyName: storagePolicyNameValue + volumePath: volumePathValue + persistentVolumeName: persistentVolumeNameValue +status: + attachError: + errorCode: 3 + message: messageValue + time: "2001-01-01T01:01:01Z" + attached: true + attachmentMetadata: + attachmentMetadataKey: attachmentMetadataValue + detachError: + errorCode: 3 + message: messageValue + time: "2001-01-01T01:01:01Z" diff --git a/testdata/v1.33.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.json b/testdata/v1.33.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.json new file mode 100644 index 0000000000..e6dd47126e --- /dev/null +++ b/testdata/v1.33.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.json @@ -0,0 +1,63 @@ +{ + "kind": "CSIStorageCapacity", + "apiVersion": "storage.k8s.io/v1alpha1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "nodeTopology": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "storageClassName": "storageClassNameValue", + "capacity": "0", + "maximumVolumeSize": "0" +} \ No newline at end of file diff --git a/testdata/v1.33.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.pb b/testdata/v1.33.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.pb new file mode 100644 index 0000000000000000000000000000000000000000..374561deb0727dc9f629205199fe3a1965f73caf GIT binary patch literal 524 zcmZ8eO-{l<6mEgUG6>X0qv^5>7bGH>m^3b7r4nO;apCS21{gccG@X{D8ZY22Tzdp> zV8X@|7#FU+flg&g4b m3UQ`!U8~?)lv`WmJX*55^LyYv1tE$vd1YjFTKVG|p78_y6ti*w literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.yaml b/testdata/v1.33.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.yaml new file mode 100644 index 0000000000..2ca4299b4b --- /dev/null +++ b/testdata/v1.33.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.yaml @@ -0,0 +1,45 @@ +apiVersion: storage.k8s.io/v1alpha1 +capacity: "0" +kind: CSIStorageCapacity +maximumVolumeSize: "0" +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +nodeTopology: + matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchLabels: + matchLabelsKey: matchLabelsValue +storageClassName: storageClassNameValue diff --git a/testdata/v1.33.0/storage.k8s.io.v1alpha1.VolumeAttachment.json b/testdata/v1.33.0/storage.k8s.io.v1alpha1.VolumeAttachment.json new file mode 100644 index 0000000000..473d4f31a3 --- /dev/null +++ b/testdata/v1.33.0/storage.k8s.io.v1alpha1.VolumeAttachment.json @@ -0,0 +1,328 @@ +{ + "kind": "VolumeAttachment", + "apiVersion": "storage.k8s.io/v1alpha1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "spec": { + "attacher": "attacherValue", + "source": { + "persistentVolumeName": "persistentVolumeNameValue", + "inlineVolumeSpec": { + "capacity": { + "capacityKey": "0" + }, + "gcePersistentDisk": { + "pdName": "pdNameValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "awsElasticBlockStore": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "partition": 3, + "readOnly": true + }, + "hostPath": { + "path": "pathValue", + "type": "typeValue" + }, + "glusterfs": { + "endpoints": "endpointsValue", + "path": "pathValue", + "readOnly": true, + "endpointsNamespace": "endpointsNamespaceValue" + }, + "nfs": { + "server": "serverValue", + "path": "pathValue", + "readOnly": true + }, + "rbd": { + "monitors": [ + "monitorsValue" + ], + "image": "imageValue", + "fsType": "fsTypeValue", + "pool": "poolValue", + "user": "userValue", + "keyring": "keyringValue", + "secretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + }, + "readOnly": true + }, + "iscsi": { + "targetPortal": "targetPortalValue", + "iqn": "iqnValue", + "lun": 3, + "iscsiInterface": "iscsiInterfaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "portals": [ + "portalsValue" + ], + "chapAuthDiscovery": true, + "chapAuthSession": true, + "secretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + }, + "initiatorName": "initiatorNameValue" + }, + "cinder": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + } + }, + "cephfs": { + "monitors": [ + "monitorsValue" + ], + "path": "pathValue", + "user": "userValue", + "secretFile": "secretFileValue", + "secretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + }, + "readOnly": true + }, + "fc": { + "targetWWNs": [ + "targetWWNsValue" + ], + "lun": 2, + "fsType": "fsTypeValue", + "readOnly": true, + "wwids": [ + "wwidsValue" + ] + }, + "flocker": { + "datasetName": "datasetNameValue", + "datasetUUID": "datasetUUIDValue" + }, + "flexVolume": { + "driver": "driverValue", + "fsType": "fsTypeValue", + "secretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + }, + "readOnly": true, + "options": { + "optionsKey": "optionsValue" + } + }, + "azureFile": { + "secretName": "secretNameValue", + "shareName": "shareNameValue", + "readOnly": true, + "secretNamespace": "secretNamespaceValue" + }, + "vsphereVolume": { + "volumePath": "volumePathValue", + "fsType": "fsTypeValue", + "storagePolicyName": "storagePolicyNameValue", + "storagePolicyID": "storagePolicyIDValue" + }, + "quobyte": { + "registry": "registryValue", + "volume": "volumeValue", + "readOnly": true, + "user": "userValue", + "group": "groupValue", + "tenant": "tenantValue" + }, + "azureDisk": { + "diskName": "diskNameValue", + "diskURI": "diskURIValue", + "cachingMode": "cachingModeValue", + "fsType": "fsTypeValue", + "readOnly": true, + "kind": "kindValue" + }, + "photonPersistentDisk": { + "pdID": "pdIDValue", + "fsType": "fsTypeValue" + }, + "portworxVolume": { + "volumeID": "volumeIDValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "scaleIO": { + "gateway": "gatewayValue", + "system": "systemValue", + "secretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + }, + "sslEnabled": true, + "protectionDomain": "protectionDomainValue", + "storagePool": "storagePoolValue", + "storageMode": "storageModeValue", + "volumeName": "volumeNameValue", + "fsType": "fsTypeValue", + "readOnly": true + }, + "local": { + "path": "pathValue", + "fsType": "fsTypeValue" + }, + "storageos": { + "volumeName": "volumeNameValue", + "volumeNamespace": "volumeNamespaceValue", + "fsType": "fsTypeValue", + "readOnly": true, + "secretRef": { + "kind": "kindValue", + "namespace": "namespaceValue", + "name": "nameValue", + "uid": "uidValue", + "apiVersion": "apiVersionValue", + "resourceVersion": "resourceVersionValue", + "fieldPath": "fieldPathValue" + } + }, + "csi": { + "driver": "driverValue", + "volumeHandle": "volumeHandleValue", + "readOnly": true, + "fsType": "fsTypeValue", + "volumeAttributes": { + "volumeAttributesKey": "volumeAttributesValue" + }, + "controllerPublishSecretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + }, + "nodeStageSecretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + }, + "nodePublishSecretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + }, + "controllerExpandSecretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + }, + "nodeExpandSecretRef": { + "name": "nameValue", + "namespace": "namespaceValue" + } + }, + "accessModes": [ + "accessModesValue" + ], + "claimRef": { + "kind": "kindValue", + "namespace": "namespaceValue", + "name": "nameValue", + "uid": "uidValue", + "apiVersion": "apiVersionValue", + "resourceVersion": "resourceVersionValue", + "fieldPath": "fieldPathValue" + }, + "persistentVolumeReclaimPolicy": "persistentVolumeReclaimPolicyValue", + "storageClassName": "storageClassNameValue", + "mountOptions": [ + "mountOptionsValue" + ], + "volumeMode": "volumeModeValue", + "nodeAffinity": { + "required": { + "nodeSelectorTerms": [ + { + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ], + "matchFields": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + } + ] + } + }, + "volumeAttributesClassName": "volumeAttributesClassNameValue" + } + }, + "nodeName": "nodeNameValue" + }, + "status": { + "attached": true, + "attachmentMetadata": { + "attachmentMetadataKey": "attachmentMetadataValue" + }, + "attachError": { + "time": "2001-01-01T01:01:01Z", + "message": "messageValue", + "errorCode": 3 + }, + "detachError": { + "time": "2001-01-01T01:01:01Z", + "message": "messageValue", + "errorCode": 3 + } + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/storage.k8s.io.v1alpha1.VolumeAttachment.pb b/testdata/v1.33.0/storage.k8s.io.v1alpha1.VolumeAttachment.pb new file mode 100644 index 0000000000000000000000000000000000000000..2dac24f38741433c1d30f1a214f73b4b02bced27 GIT binary patch literal 2613 zcmcgu&2Jk;6!#>Ru%Ev+lcWiY6h$k9kU=4}1PbO-OofPPi)Ga<>TSF`ai(7HE;Hjq zF5&_bLOmjJ;ey}>hznN^+>v_WFF+hPa6tS62xe#YD<)cc;x_Z<&71dr@AuxD*^#Kg z3$P<($jOu*%#OqX3tu|BM*QfMT*KDg&|l2y>rxW;bWQ__|JsCK)}R)UIlW8#1;rav z8c@QQ69-x(2trAuGNO;I!d~k`zBju3C3uz>jNp>j~$d4wj=n3F)E#kByp!YGbEb>Ch!RxG0Bk7pnh#ZlW5S>S3a@eY4wg^LaH>Fv}B0m-`jwp z?h=JLlgk*NbwG#sqbBS@J@RtJ`bqx!?)pB$`_MeoIX=E&!dca@uR<*%^31f;Gic7kfGIX6CV|Zr()w+?=$TWC z!qC_9PHmy=>1DSuqf5?$sowRTDe`oMl-E)3V+0$L@F|tUkV|5$;VOI2@NjqC*<`{M z>^P8=pQLQ=6x}#Py+))j8-K5(QQ4#Kq6uayJVsQ6SyKA1mF56BWhMvXRmgHc?Hn1W zEvU<>e3SVG%}$xoLo_;ow!!A!z1t=>Ywbb?_E87U&zWZq?>`HcM?Ra#o&uz<9y;yPlR_G=DwdnBksGIk>M@aR|$h)kxKSg`x ztos~&hM+N3js2XY!HA{mK6B&7f23UT`Pkvsoq{H$-?O;3CZFg z6yqDBuXIqCX6qaD1xoXoUB_D{2eBY;L#te#7RCc!=@m~lE-s&Dy_W9z8N0qmf1ry+ zuwmSLiv(U$n~EsKkUKBJrqNMzn6t@3Qa$6gSA~X5Wr- zf=#n<{x7gQ&g#efjEHUp*U#dTHc{gz)En)s=Jldyb~8{&W{%o^72!kJHs6K#k9Lbn68GZx k8?f_lv3At9L48ZU`|)S>Ex`>{7$P0BYV4Jq*%hbq4}Q0b_5c6? literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/storage.k8s.io.v1alpha1.VolumeAttachment.yaml b/testdata/v1.33.0/storage.k8s.io.v1alpha1.VolumeAttachment.yaml new file mode 100644 index 0000000000..22a9ab208d --- /dev/null +++ b/testdata/v1.33.0/storage.k8s.io.v1alpha1.VolumeAttachment.yaml @@ -0,0 +1,251 @@ +apiVersion: storage.k8s.io/v1alpha1 +kind: VolumeAttachment +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + attacher: attacherValue + nodeName: nodeNameValue + source: + inlineVolumeSpec: + accessModes: + - accessModesValue + awsElasticBlockStore: + fsType: fsTypeValue + partition: 3 + readOnly: true + volumeID: volumeIDValue + azureDisk: + cachingMode: cachingModeValue + diskName: diskNameValue + diskURI: diskURIValue + fsType: fsTypeValue + kind: kindValue + readOnly: true + azureFile: + readOnly: true + secretName: secretNameValue + secretNamespace: secretNamespaceValue + shareName: shareNameValue + capacity: + capacityKey: "0" + cephfs: + monitors: + - monitorsValue + path: pathValue + readOnly: true + secretFile: secretFileValue + secretRef: + name: nameValue + namespace: namespaceValue + user: userValue + cinder: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + namespace: namespaceValue + volumeID: volumeIDValue + claimRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue + csi: + controllerExpandSecretRef: + name: nameValue + namespace: namespaceValue + controllerPublishSecretRef: + name: nameValue + namespace: namespaceValue + driver: driverValue + fsType: fsTypeValue + nodeExpandSecretRef: + name: nameValue + namespace: namespaceValue + nodePublishSecretRef: + name: nameValue + namespace: namespaceValue + nodeStageSecretRef: + name: nameValue + namespace: namespaceValue + readOnly: true + volumeAttributes: + volumeAttributesKey: volumeAttributesValue + volumeHandle: volumeHandleValue + fc: + fsType: fsTypeValue + lun: 2 + readOnly: true + targetWWNs: + - targetWWNsValue + wwids: + - wwidsValue + flexVolume: + driver: driverValue + fsType: fsTypeValue + options: + optionsKey: optionsValue + readOnly: true + secretRef: + name: nameValue + namespace: namespaceValue + flocker: + datasetName: datasetNameValue + datasetUUID: datasetUUIDValue + gcePersistentDisk: + fsType: fsTypeValue + partition: 3 + pdName: pdNameValue + readOnly: true + glusterfs: + endpoints: endpointsValue + endpointsNamespace: endpointsNamespaceValue + path: pathValue + readOnly: true + hostPath: + path: pathValue + type: typeValue + iscsi: + chapAuthDiscovery: true + chapAuthSession: true + fsType: fsTypeValue + initiatorName: initiatorNameValue + iqn: iqnValue + iscsiInterface: iscsiInterfaceValue + lun: 3 + portals: + - portalsValue + readOnly: true + secretRef: + name: nameValue + namespace: namespaceValue + targetPortal: targetPortalValue + local: + fsType: fsTypeValue + path: pathValue + mountOptions: + - mountOptionsValue + nfs: + path: pathValue + readOnly: true + server: serverValue + nodeAffinity: + required: + nodeSelectorTerms: + - matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + persistentVolumeReclaimPolicy: persistentVolumeReclaimPolicyValue + photonPersistentDisk: + fsType: fsTypeValue + pdID: pdIDValue + portworxVolume: + fsType: fsTypeValue + readOnly: true + volumeID: volumeIDValue + quobyte: + group: groupValue + readOnly: true + registry: registryValue + tenant: tenantValue + user: userValue + volume: volumeValue + rbd: + fsType: fsTypeValue + image: imageValue + keyring: keyringValue + monitors: + - monitorsValue + pool: poolValue + readOnly: true + secretRef: + name: nameValue + namespace: namespaceValue + user: userValue + scaleIO: + fsType: fsTypeValue + gateway: gatewayValue + protectionDomain: protectionDomainValue + readOnly: true + secretRef: + name: nameValue + namespace: namespaceValue + sslEnabled: true + storageMode: storageModeValue + storagePool: storagePoolValue + system: systemValue + volumeName: volumeNameValue + storageClassName: storageClassNameValue + storageos: + fsType: fsTypeValue + readOnly: true + secretRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue + volumeName: volumeNameValue + volumeNamespace: volumeNamespaceValue + volumeAttributesClassName: volumeAttributesClassNameValue + volumeMode: volumeModeValue + vsphereVolume: + fsType: fsTypeValue + storagePolicyID: storagePolicyIDValue + storagePolicyName: storagePolicyNameValue + volumePath: volumePathValue + persistentVolumeName: persistentVolumeNameValue +status: + attachError: + errorCode: 3 + message: messageValue + time: "2001-01-01T01:01:01Z" + attached: true + attachmentMetadata: + attachmentMetadataKey: attachmentMetadataValue + detachError: + errorCode: 3 + message: messageValue + time: "2001-01-01T01:01:01Z" diff --git a/testdata/v1.33.0/storage.k8s.io.v1alpha1.VolumeAttributesClass.json b/testdata/v1.33.0/storage.k8s.io.v1alpha1.VolumeAttributesClass.json new file mode 100644 index 0000000000..bffbd2f81e --- /dev/null +++ b/testdata/v1.33.0/storage.k8s.io.v1alpha1.VolumeAttributesClass.json @@ -0,0 +1,50 @@ +{ + "kind": "VolumeAttributesClass", + "apiVersion": "storage.k8s.io/v1alpha1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "driverName": "driverNameValue", + "parameters": { + "parametersKey": "parametersValue" + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/storage.k8s.io.v1alpha1.VolumeAttributesClass.pb b/testdata/v1.33.0/storage.k8s.io.v1alpha1.VolumeAttributesClass.pb new file mode 100644 index 0000000000000000000000000000000000000000..dc8e82be1fd2d4adc85fba017a28e203808a3def GIT binary patch literal 467 zcmZ9IyH3L}6o%7_L}O?ZA`mDO%GjZ_m5?Gf$_5BApbl&&^t70`c4Rx13gQKL0Cr{` zfj25U7ytgwpT^1|ZL+7dkTAkl8mkr+hm#Jl><&7?ZeOr`j3-)4 zn&cYQDFdZ~mkRkT6PLpn`@nJxwnxZOg2u~5D{RcCDudf%C8{fA!wbq&`=VLP>A&8@*a>_WJ!^^_?@L-hMuex*|9G#AT2mQ|CAhHVbKABoS!<=R$)v zCU)$v)pqCph`1@`#mC`_KU&f>J;>-fNV^o5q&K7-7=18+*5|pDkgYLr6PdJ)pdqsP z{R{l?zfELr_?rDze5Y&7kPX!JG%J!hu9EWOQ_ojJ22Fpj<_IKS6or$vU^Ch_4I-MA#9bFv3qo)uRq(Htg5tv6B)KVLrZZtCDMaxFd<)ku zUHS$>-$7is_6;kAXbY{$gbO@`cI3)7;oIX~4-&j<8HbmrM}mw& zSTAMtUP1=LBe=#i1*mjf!FN8Lj!Bh2!Ygeq8d9#8L|;oJXh zocxB5$#>b*I=LCpKwf2Wk<5MtmF^$9rcAwg5-QYwRX25eW6Wtff*uLM&wL6OJb;2? lQ*T+JJQh5S2b>Z=Qz)G#s^K&szUaC?A#e=tvnT9pn-LRV!qWA(nfOpS6 zf^Q)79mIoY-$1t;T7$QLXJ-HT=Su=Uk)Eo#& zIMdajIkv3j%hy}OF;10w{eD;K0^RH(o8l0tJcGh*l~Vr*ebmN`@eF6mM7N#FThH7b zB0C|hTdKDMmsU+%`{F_pjr7|80DA z!{_p+?ieFw1~igaMOuxWyFu$%)?Qbu*rF%Hu*|C^Pvr J%k&K2_yvARno9rx literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/storage.k8s.io.v1beta1.CSINode.yaml b/testdata/v1.33.0/storage.k8s.io.v1beta1.CSINode.yaml new file mode 100644 index 0000000000..f6b1789d1c --- /dev/null +++ b/testdata/v1.33.0/storage.k8s.io.v1beta1.CSINode.yaml @@ -0,0 +1,42 @@ +apiVersion: storage.k8s.io/v1beta1 +kind: CSINode +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + drivers: + - allocatable: + count: 1 + name: nameValue + nodeID: nodeIDValue + topologyKeys: + - topologyKeysValue diff --git a/testdata/v1.33.0/storage.k8s.io.v1beta1.CSIStorageCapacity.json b/testdata/v1.33.0/storage.k8s.io.v1beta1.CSIStorageCapacity.json new file mode 100644 index 0000000000..059bd01659 --- /dev/null +++ b/testdata/v1.33.0/storage.k8s.io.v1beta1.CSIStorageCapacity.json @@ -0,0 +1,63 @@ +{ + "kind": "CSIStorageCapacity", + "apiVersion": "storage.k8s.io/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "nodeTopology": { + "matchLabels": { + "matchLabelsKey": "matchLabelsValue" + }, + "matchExpressions": [ + { + "key": "keyValue", + "operator": "operatorValue", + "values": [ + "valuesValue" + ] + } + ] + }, + "storageClassName": "storageClassNameValue", + "capacity": "0", + "maximumVolumeSize": "0" +} \ No newline at end of file diff --git a/testdata/v1.33.0/storage.k8s.io.v1beta1.CSIStorageCapacity.pb b/testdata/v1.33.0/storage.k8s.io.v1beta1.CSIStorageCapacity.pb new file mode 100644 index 0000000000000000000000000000000000000000..a61d0d13094ff823b28d2452c665e63749a51912 GIT binary patch literal 523 zcmZ8eO-{l<6mEgUG6>X0jp?!r7sMctm^3b7r4nO;apCS21{_;vnwgfQ8ZY22Tzdp> zV8X@|7#FU+flg z?X|zExjjPFkWf9?{nPIiYFbT*$-0n^>6^ScB@`lZCj}~=M>9a1bD+{Lt^!Vj#rgg# z`R;!jPww!s{4U!@Pm5a-}&W8C=x3|G9nV4?SUk1JD);<8X$$p(nbS9cKLiC9rSTuC#tkpb++V z5xf^bg~ABkK$0T6HA56}n4pWLX!mwku} z%&1bmEx%k|Jb%8HEaOB*FJEsm8iCtgP$4itM4Y0zUDctQ2wc#Bl(GaSa)~Ni8@cMa zI|7vuQ+?Q3^SdjWP7}s>6QpN)CT~tLg#_PAK(*(|3_vY{R2s#VU^iHt|G&g{{;zT6 z4W|%waoYB#n?S-N1Bq&L$eh-vc|K93nkxSF@Z% JKkXQ<@e457z_Ru%Ev+lcWuc6h$k9sufC8OQ2vb#Z-uxwpdo(qTa^46KCr6?lLn@ ztia(b!^>>g87WTAtmunW;B%e?@jo14Qe5o(R(DAQ@k;u zA>~BUJE_QSC8r`Lo>6g{f(FO8SUA-;-0Gb9dezzDR77*G^e7iB3bpj`xn8yULK3h?%0X@CF&aZ-MnVM^*8<#%;w1jmeS6i6qhk2&$v^8> zrK60|z!!HHu|cML3D!RNuxE++I732%`i%umqCrnz`P72v)jNU-snTH5k|B=&Xak12 zM-=8vE)sm!0Uh9vo3IP@*v}Q~$NB3!>w5_ALGx7S_~@nyXH~<#47HfZ6LVUVsqfCK z(4wIqM=X>E8l3CxAm>VUn7p2|!L^|-C_haDD_-hMp*f2}rpUN732dg2)^FQI&zxEu zMS+&PwYjpVmz~CxE;tJ(de?oS$kP>4-ay??5Nt@oCsYn1E{U;*tL%Nl!<}_!lL=3- zqfki=CO!h~skmZ2dIWkUL zP>)mj77GlTZkf>oG~9=_!RG$`J0>=3?OX=-kPByL%r}P*UIfc0k_alZxNs^Njh5sZ zkD%^zmgT+(rCsKbddvoh;;g|e0{2yc- zKj&5283$3oyhUbTSu-8e$d~aw>Oqs!iKY1^BQE7jMcFS4! z1^OI8W1<@S8A*c?3)OvQ#*P0;*LKV!NxdXtH=`M0rlvYp2HUcFyQw4#r?*T<7Jt7O z-vE8BgSs$V-=Z&3n$PSy-ZD8z1bG`;P0kvXJZK-kPwt-))1Ny#?@B1FcT?#3*dhw@$1a zcC-p^n$JLF=8;`LO-kBCjh|9)xVxIy^PbtwP$8K)Y6n$>4`ADT7m`2PZS{3adU5g% jxbk1IcGR{(eM`Ro=@<1a!3|XyA|118?3J9^6{qqqGXaW< literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/storage.k8s.io.v1beta1.VolumeAttachment.yaml b/testdata/v1.33.0/storage.k8s.io.v1beta1.VolumeAttachment.yaml new file mode 100644 index 0000000000..f4cf507f6e --- /dev/null +++ b/testdata/v1.33.0/storage.k8s.io.v1beta1.VolumeAttachment.yaml @@ -0,0 +1,251 @@ +apiVersion: storage.k8s.io/v1beta1 +kind: VolumeAttachment +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + attacher: attacherValue + nodeName: nodeNameValue + source: + inlineVolumeSpec: + accessModes: + - accessModesValue + awsElasticBlockStore: + fsType: fsTypeValue + partition: 3 + readOnly: true + volumeID: volumeIDValue + azureDisk: + cachingMode: cachingModeValue + diskName: diskNameValue + diskURI: diskURIValue + fsType: fsTypeValue + kind: kindValue + readOnly: true + azureFile: + readOnly: true + secretName: secretNameValue + secretNamespace: secretNamespaceValue + shareName: shareNameValue + capacity: + capacityKey: "0" + cephfs: + monitors: + - monitorsValue + path: pathValue + readOnly: true + secretFile: secretFileValue + secretRef: + name: nameValue + namespace: namespaceValue + user: userValue + cinder: + fsType: fsTypeValue + readOnly: true + secretRef: + name: nameValue + namespace: namespaceValue + volumeID: volumeIDValue + claimRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue + csi: + controllerExpandSecretRef: + name: nameValue + namespace: namespaceValue + controllerPublishSecretRef: + name: nameValue + namespace: namespaceValue + driver: driverValue + fsType: fsTypeValue + nodeExpandSecretRef: + name: nameValue + namespace: namespaceValue + nodePublishSecretRef: + name: nameValue + namespace: namespaceValue + nodeStageSecretRef: + name: nameValue + namespace: namespaceValue + readOnly: true + volumeAttributes: + volumeAttributesKey: volumeAttributesValue + volumeHandle: volumeHandleValue + fc: + fsType: fsTypeValue + lun: 2 + readOnly: true + targetWWNs: + - targetWWNsValue + wwids: + - wwidsValue + flexVolume: + driver: driverValue + fsType: fsTypeValue + options: + optionsKey: optionsValue + readOnly: true + secretRef: + name: nameValue + namespace: namespaceValue + flocker: + datasetName: datasetNameValue + datasetUUID: datasetUUIDValue + gcePersistentDisk: + fsType: fsTypeValue + partition: 3 + pdName: pdNameValue + readOnly: true + glusterfs: + endpoints: endpointsValue + endpointsNamespace: endpointsNamespaceValue + path: pathValue + readOnly: true + hostPath: + path: pathValue + type: typeValue + iscsi: + chapAuthDiscovery: true + chapAuthSession: true + fsType: fsTypeValue + initiatorName: initiatorNameValue + iqn: iqnValue + iscsiInterface: iscsiInterfaceValue + lun: 3 + portals: + - portalsValue + readOnly: true + secretRef: + name: nameValue + namespace: namespaceValue + targetPortal: targetPortalValue + local: + fsType: fsTypeValue + path: pathValue + mountOptions: + - mountOptionsValue + nfs: + path: pathValue + readOnly: true + server: serverValue + nodeAffinity: + required: + nodeSelectorTerms: + - matchExpressions: + - key: keyValue + operator: operatorValue + values: + - valuesValue + matchFields: + - key: keyValue + operator: operatorValue + values: + - valuesValue + persistentVolumeReclaimPolicy: persistentVolumeReclaimPolicyValue + photonPersistentDisk: + fsType: fsTypeValue + pdID: pdIDValue + portworxVolume: + fsType: fsTypeValue + readOnly: true + volumeID: volumeIDValue + quobyte: + group: groupValue + readOnly: true + registry: registryValue + tenant: tenantValue + user: userValue + volume: volumeValue + rbd: + fsType: fsTypeValue + image: imageValue + keyring: keyringValue + monitors: + - monitorsValue + pool: poolValue + readOnly: true + secretRef: + name: nameValue + namespace: namespaceValue + user: userValue + scaleIO: + fsType: fsTypeValue + gateway: gatewayValue + protectionDomain: protectionDomainValue + readOnly: true + secretRef: + name: nameValue + namespace: namespaceValue + sslEnabled: true + storageMode: storageModeValue + storagePool: storagePoolValue + system: systemValue + volumeName: volumeNameValue + storageClassName: storageClassNameValue + storageos: + fsType: fsTypeValue + readOnly: true + secretRef: + apiVersion: apiVersionValue + fieldPath: fieldPathValue + kind: kindValue + name: nameValue + namespace: namespaceValue + resourceVersion: resourceVersionValue + uid: uidValue + volumeName: volumeNameValue + volumeNamespace: volumeNamespaceValue + volumeAttributesClassName: volumeAttributesClassNameValue + volumeMode: volumeModeValue + vsphereVolume: + fsType: fsTypeValue + storagePolicyID: storagePolicyIDValue + storagePolicyName: storagePolicyNameValue + volumePath: volumePathValue + persistentVolumeName: persistentVolumeNameValue +status: + attachError: + errorCode: 3 + message: messageValue + time: "2001-01-01T01:01:01Z" + attached: true + attachmentMetadata: + attachmentMetadataKey: attachmentMetadataValue + detachError: + errorCode: 3 + message: messageValue + time: "2001-01-01T01:01:01Z" diff --git a/testdata/v1.33.0/storage.k8s.io.v1beta1.VolumeAttributesClass.json b/testdata/v1.33.0/storage.k8s.io.v1beta1.VolumeAttributesClass.json new file mode 100644 index 0000000000..f5c0d3435f --- /dev/null +++ b/testdata/v1.33.0/storage.k8s.io.v1beta1.VolumeAttributesClass.json @@ -0,0 +1,50 @@ +{ + "kind": "VolumeAttributesClass", + "apiVersion": "storage.k8s.io/v1beta1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "driverName": "driverNameValue", + "parameters": { + "parametersKey": "parametersValue" + } +} \ No newline at end of file diff --git a/testdata/v1.33.0/storage.k8s.io.v1beta1.VolumeAttributesClass.pb b/testdata/v1.33.0/storage.k8s.io.v1beta1.VolumeAttributesClass.pb new file mode 100644 index 0000000000000000000000000000000000000000..f2990f48e21e7ac5bbcfe4f8effffa8dd9a9d3dc GIT binary patch literal 466 zcmZ9IyH3L}6o%7_L~CdhB0wk;%GjZ$m5?Gf$_5BApbl&&^t3W@?Z|d2wTKts0oa*& z1l|Ct?|>MXc>{19^&+Sexe-bH&bjX3yLc$o^Nu=6Tbf(=HHFW*`fneDL&$N~_ z&NQlX21@xa74lgobq*680L#$d9V15x8n2hFpqWoq3iriI*igtuSCl9AMXQ$4p;f&- ziArSB?4eXtaNCWx`nB5P_4~c*ITuE~{d^d8L+%bqok5IDUE<8&E~I@CholLd3k}+s z*s-@!+nt9KQcox^J`UFW;fki^LP|G5j!RKVx+BVg(YXP%KF_6?>`Z{0#H4NbO_ApJ zFY$x_HlexUYw=t0oSrd5HdME>v`FT(O3IH>{(yhs+E4HY zMCd<=3)kIuq0^bRR&jS9XYP4S=m`T3U{fTFqX73wz)?aNt%shd6Sh5QpeVjU4SW4k zBifh?xj&l&?MV*avtUxx$88j)*j^1V#qtV1pO2i%bSq-i(Ga&RaMU{`G*mBYg_Lwv zwY$c#U@4b4O{1pXO0!THJ$=69E#p{L&*L{)UBLAQm=W@EBu?*!j`#F4WYjC??B7b~0XuS9^q_h}=nm>ds@vhf*I=nI2aIyTanB zf0>f%oxf*X>EUDam9vapc??Hg(Hh1&nf*Lu?;o0$Nc}|;D%2y`0th%uW6e<-ECuA0 ze}nA~qY0rYZm|&0L|nlkn8}>SE()1VsvS5|&*XJ1^|(cjk(lYOmE@lZX-hNy`!$Z? F8sAtO%wzxn literal 0 HcmV?d00001 diff --git a/testdata/v1.33.0/storagemigration.k8s.io.v1alpha1.StorageVersionMigration.yaml b/testdata/v1.33.0/storagemigration.k8s.io.v1alpha1.StorageVersionMigration.yaml new file mode 100644 index 0000000000..577d619c12 --- /dev/null +++ b/testdata/v1.33.0/storagemigration.k8s.io.v1alpha1.StorageVersionMigration.yaml @@ -0,0 +1,48 @@ +apiVersion: storagemigration.k8s.io/v1alpha1 +kind: StorageVersionMigration +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +spec: + continueToken: continueTokenValue + resource: + group: groupValue + resource: resourceValue + version: versionValue +status: + conditions: + - lastUpdateTime: "2003-01-01T01:01:01Z" + message: messageValue + reason: reasonValue + status: statusValue + type: typeValue + resourceVersion: resourceVersionValue From 065d353daf6dede119c1a5368a4c7f94d1e9cc69 Mon Sep 17 00:00:00 2001 From: Paco Xu Date: Fri, 25 Apr 2025 15:49:41 +0800 Subject: [PATCH 016/100] remove v1.31.0 api testdata Kubernetes-commit: addaf680aedfdb9b857712c4c80c7b5cb21b3091 --- .../admission.k8s.io.v1.AdmissionReview.json | 113 - .../admission.k8s.io.v1.AdmissionReview.pb | Bin 973 -> 0 bytes .../admission.k8s.io.v1.AdmissionReview.yaml | 84 - ...ission.k8s.io.v1beta1.AdmissionReview.json | 113 - ...dmission.k8s.io.v1beta1.AdmissionReview.pb | Bin 978 -> 0 bytes ...ission.k8s.io.v1beta1.AdmissionReview.yaml | 84 - ...8s.io.v1.MutatingWebhookConfiguration.json | 120 - ....k8s.io.v1.MutatingWebhookConfiguration.pb | Bin 884 -> 0 bytes ...8s.io.v1.MutatingWebhookConfiguration.yaml | 80 - ...n.k8s.io.v1.ValidatingAdmissionPolicy.json | 171 -- ...ion.k8s.io.v1.ValidatingAdmissionPolicy.pb | Bin 1134 -> 0 bytes ...n.k8s.io.v1.ValidatingAdmissionPolicy.yaml | 108 - ...o.v1.ValidatingAdmissionPolicyBinding.json | 142 -- ....io.v1.ValidatingAdmissionPolicyBinding.pb | Bin 1004 -> 0 bytes ...o.v1.ValidatingAdmissionPolicyBinding.yaml | 92 - ....io.v1.ValidatingWebhookConfiguration.json | 119 - ...8s.io.v1.ValidatingWebhookConfiguration.pb | Bin 861 -> 0 bytes ....io.v1.ValidatingWebhookConfiguration.yaml | 79 - ...io.v1alpha1.ValidatingAdmissionPolicy.json | 171 -- ...s.io.v1alpha1.ValidatingAdmissionPolicy.pb | Bin 1140 -> 0 bytes ...io.v1alpha1.ValidatingAdmissionPolicy.yaml | 108 - ...pha1.ValidatingAdmissionPolicyBinding.json | 142 -- ...alpha1.ValidatingAdmissionPolicyBinding.pb | Bin 1010 -> 0 bytes ...pha1.ValidatingAdmissionPolicyBinding.yaml | 92 - ....v1beta1.MutatingWebhookConfiguration.json | 120 - ...io.v1beta1.MutatingWebhookConfiguration.pb | Bin 889 -> 0 bytes ....v1beta1.MutatingWebhookConfiguration.yaml | 80 - ....io.v1beta1.ValidatingAdmissionPolicy.json | 171 -- ...8s.io.v1beta1.ValidatingAdmissionPolicy.pb | Bin 1139 -> 0 bytes ....io.v1beta1.ValidatingAdmissionPolicy.yaml | 108 - ...eta1.ValidatingAdmissionPolicyBinding.json | 142 -- ...1beta1.ValidatingAdmissionPolicyBinding.pb | Bin 1009 -> 0 bytes ...eta1.ValidatingAdmissionPolicyBinding.yaml | 92 - ...1beta1.ValidatingWebhookConfiguration.json | 119 - ....v1beta1.ValidatingWebhookConfiguration.pb | Bin 866 -> 0 bytes ...1beta1.ValidatingWebhookConfiguration.yaml | 79 - ...discovery.k8s.io.v2.APIGroupDiscovery.json | 93 - ...pidiscovery.k8s.io.v2.APIGroupDiscovery.pb | Bin 692 -> 0 bytes ...discovery.k8s.io.v2.APIGroupDiscovery.yaml | 63 - ...very.k8s.io.v2beta1.APIGroupDiscovery.json | 93 - ...covery.k8s.io.v2beta1.APIGroupDiscovery.pb | Bin 697 -> 0 bytes ...very.k8s.io.v2beta1.APIGroupDiscovery.yaml | 63 - .../v1.31.0/apps.v1.ControllerRevision.json | 57 - .../v1.31.0/apps.v1.ControllerRevision.pb | Bin 501 -> 0 bytes .../v1.31.0/apps.v1.ControllerRevision.yaml | 42 - testdata/v1.31.0/apps.v1.DaemonSet.json | 1801 --------------- testdata/v1.31.0/apps.v1.DaemonSet.pb | Bin 10912 -> 0 bytes testdata/v1.31.0/apps.v1.DaemonSet.yaml | 1237 ---------- testdata/v1.31.0/apps.v1.Deployment.json | 1803 --------------- testdata/v1.31.0/apps.v1.Deployment.pb | Bin 10925 -> 0 bytes testdata/v1.31.0/apps.v1.Deployment.yaml | 1239 ---------- testdata/v1.31.0/apps.v1.ReplicaSet.json | 1790 --------------- testdata/v1.31.0/apps.v1.ReplicaSet.pb | Bin 10842 -> 0 bytes testdata/v1.31.0/apps.v1.ReplicaSet.yaml | 1228 ---------- testdata/v1.31.0/apps.v1.StatefulSet.json | 1929 ---------------- testdata/v1.31.0/apps.v1.StatefulSet.pb | Bin 12013 -> 0 bytes testdata/v1.31.0/apps.v1.StatefulSet.yaml | 1328 ----------- .../apps.v1beta1.ControllerRevision.json | 57 - .../apps.v1beta1.ControllerRevision.pb | Bin 506 -> 0 bytes .../apps.v1beta1.ControllerRevision.yaml | 42 - testdata/v1.31.0/apps.v1beta1.Deployment.json | 1806 --------------- testdata/v1.31.0/apps.v1beta1.Deployment.pb | Bin 10934 -> 0 bytes testdata/v1.31.0/apps.v1beta1.Deployment.yaml | 1241 ---------- .../apps.v1beta1.DeploymentRollback.json | 11 - .../apps.v1beta1.DeploymentRollback.pb | Bin 111 -> 0 bytes .../apps.v1beta1.DeploymentRollback.yaml | 7 - testdata/v1.31.0/apps.v1beta1.Scale.json | 56 - testdata/v1.31.0/apps.v1beta1.Scale.pb | Bin 448 -> 0 bytes testdata/v1.31.0/apps.v1beta1.Scale.yaml | 41 - .../v1.31.0/apps.v1beta1.StatefulSet.json | 1929 ---------------- testdata/v1.31.0/apps.v1beta1.StatefulSet.pb | Bin 12018 -> 0 bytes .../v1.31.0/apps.v1beta1.StatefulSet.yaml | 1328 ----------- .../apps.v1beta2.ControllerRevision.json | 57 - .../apps.v1beta2.ControllerRevision.pb | Bin 506 -> 0 bytes .../apps.v1beta2.ControllerRevision.yaml | 42 - testdata/v1.31.0/apps.v1beta2.DaemonSet.json | 1801 --------------- testdata/v1.31.0/apps.v1beta2.DaemonSet.pb | Bin 10917 -> 0 bytes testdata/v1.31.0/apps.v1beta2.DaemonSet.yaml | 1237 ---------- testdata/v1.31.0/apps.v1beta2.Deployment.json | 1803 --------------- testdata/v1.31.0/apps.v1beta2.Deployment.pb | Bin 10930 -> 0 bytes testdata/v1.31.0/apps.v1beta2.Deployment.yaml | 1239 ---------- testdata/v1.31.0/apps.v1beta2.ReplicaSet.json | 1790 --------------- testdata/v1.31.0/apps.v1beta2.ReplicaSet.pb | Bin 10847 -> 0 bytes testdata/v1.31.0/apps.v1beta2.ReplicaSet.yaml | 1228 ---------- testdata/v1.31.0/apps.v1beta2.Scale.json | 56 - testdata/v1.31.0/apps.v1beta2.Scale.pb | Bin 448 -> 0 bytes testdata/v1.31.0/apps.v1beta2.Scale.yaml | 41 - .../v1.31.0/apps.v1beta2.StatefulSet.json | 1929 ---------------- testdata/v1.31.0/apps.v1beta2.StatefulSet.pb | Bin 12018 -> 0 bytes .../v1.31.0/apps.v1beta2.StatefulSet.yaml | 1328 ----------- ...ntication.k8s.io.v1.SelfSubjectReview.json | 60 - ...hentication.k8s.io.v1.SelfSubjectReview.pb | Bin 481 -> 0 bytes ...ntication.k8s.io.v1.SelfSubjectReview.yaml | 43 - ...authentication.k8s.io.v1.TokenRequest.json | 62 - .../authentication.k8s.io.v1.TokenRequest.pb | Bin 503 -> 0 bytes ...authentication.k8s.io.v1.TokenRequest.yaml | 46 - .../authentication.k8s.io.v1.TokenReview.json | 71 - .../authentication.k8s.io.v1.TokenReview.pb | Bin 535 -> 0 bytes .../authentication.k8s.io.v1.TokenReview.yaml | 51 - ...tion.k8s.io.v1beta1.SelfSubjectReview.json | 60 - ...cation.k8s.io.v1beta1.SelfSubjectReview.pb | Bin 486 -> 0 bytes ...tion.k8s.io.v1beta1.SelfSubjectReview.yaml | 43 - ...entication.k8s.io.v1beta1.TokenReview.json | 71 - ...thentication.k8s.io.v1beta1.TokenReview.pb | Bin 540 -> 0 bytes ...entication.k8s.io.v1beta1.TokenReview.yaml | 51 - ...on.k8s.io.v1.LocalSubjectAccessReview.json | 101 - ...tion.k8s.io.v1.LocalSubjectAccessReview.pb | Bin 767 -> 0 bytes ...on.k8s.io.v1.LocalSubjectAccessReview.yaml | 72 - ...ion.k8s.io.v1.SelfSubjectAccessReview.json | 91 - ...ation.k8s.io.v1.SelfSubjectAccessReview.pb | Bin 706 -> 0 bytes ...ion.k8s.io.v1.SelfSubjectAccessReview.yaml | 65 - ...tion.k8s.io.v1.SelfSubjectRulesReview.json | 79 - ...zation.k8s.io.v1.SelfSubjectRulesReview.pb | Bin 563 -> 0 bytes ...tion.k8s.io.v1.SelfSubjectRulesReview.yaml | 53 - ...ization.k8s.io.v1.SubjectAccessReview.json | 101 - ...orization.k8s.io.v1.SubjectAccessReview.pb | Bin 762 -> 0 bytes ...ization.k8s.io.v1.SubjectAccessReview.yaml | 72 - ...s.io.v1beta1.LocalSubjectAccessReview.json | 101 - ...k8s.io.v1beta1.LocalSubjectAccessReview.pb | Bin 771 -> 0 bytes ...s.io.v1beta1.LocalSubjectAccessReview.yaml | 72 - ...8s.io.v1beta1.SelfSubjectAccessReview.json | 91 - ....k8s.io.v1beta1.SelfSubjectAccessReview.pb | Bin 711 -> 0 bytes ...8s.io.v1beta1.SelfSubjectAccessReview.yaml | 65 - ...k8s.io.v1beta1.SelfSubjectRulesReview.json | 79 - ...n.k8s.io.v1beta1.SelfSubjectRulesReview.pb | Bin 568 -> 0 bytes ...k8s.io.v1beta1.SelfSubjectRulesReview.yaml | 53 - ...on.k8s.io.v1beta1.SubjectAccessReview.json | 101 - ...tion.k8s.io.v1beta1.SubjectAccessReview.pb | Bin 766 -> 0 bytes ...on.k8s.io.v1beta1.SubjectAccessReview.yaml | 72 - ...utoscaling.v1.HorizontalPodAutoscaler.json | 63 - .../autoscaling.v1.HorizontalPodAutoscaler.pb | Bin 478 -> 0 bytes ...utoscaling.v1.HorizontalPodAutoscaler.yaml | 48 - testdata/v1.31.0/autoscaling.v1.Scale.json | 53 - testdata/v1.31.0/autoscaling.v1.Scale.pb | Bin 414 -> 0 bytes testdata/v1.31.0/autoscaling.v1.Scale.yaml | 39 - ...utoscaling.v2.HorizontalPodAutoscaler.json | 297 --- .../autoscaling.v2.HorizontalPodAutoscaler.pb | Bin 1570 -> 0 bytes ...utoscaling.v2.HorizontalPodAutoscaler.yaml | 200 -- ...aling.v2beta1.HorizontalPodAutoscaler.json | 224 -- ...scaling.v2beta1.HorizontalPodAutoscaler.pb | Bin 1400 -> 0 bytes ...aling.v2beta1.HorizontalPodAutoscaler.yaml | 152 -- ...aling.v2beta2.HorizontalPodAutoscaler.json | 297 --- ...scaling.v2beta2.HorizontalPodAutoscaler.pb | Bin 1575 -> 0 bytes ...aling.v2beta2.HorizontalPodAutoscaler.yaml | 200 -- testdata/v1.31.0/batch.v1.CronJob.json | 1880 --------------- testdata/v1.31.0/batch.v1.CronJob.pb | Bin 11505 -> 0 bytes testdata/v1.31.0/batch.v1.CronJob.yaml | 1293 ----------- testdata/v1.31.0/batch.v1.Job.json | 1841 --------------- testdata/v1.31.0/batch.v1.Job.pb | Bin 11131 -> 0 bytes testdata/v1.31.0/batch.v1.Job.yaml | 1263 ---------- testdata/v1.31.0/batch.v1beta1.CronJob.json | 1880 --------------- testdata/v1.31.0/batch.v1beta1.CronJob.pb | Bin 11510 -> 0 bytes testdata/v1.31.0/batch.v1beta1.CronJob.yaml | 1293 ----------- ...s.k8s.io.v1.CertificateSigningRequest.json | 77 - ...tes.k8s.io.v1.CertificateSigningRequest.pb | Bin 598 -> 0 bytes ...s.k8s.io.v1.CertificateSigningRequest.yaml | 56 - ...es.k8s.io.v1alpha1.ClusterTrustBundle.json | 50 - ...ates.k8s.io.v1alpha1.ClusterTrustBundle.pb | Bin 455 -> 0 bytes ...es.k8s.io.v1alpha1.ClusterTrustBundle.yaml | 37 - ....io.v1beta1.CertificateSigningRequest.json | 77 - ...8s.io.v1beta1.CertificateSigningRequest.pb | Bin 603 -> 0 bytes ....io.v1beta1.CertificateSigningRequest.yaml | 56 - .../v1.31.0/coordination.k8s.io.v1.Lease.json | 55 - .../v1.31.0/coordination.k8s.io.v1.Lease.pb | Bin 485 -> 0 bytes .../v1.31.0/coordination.k8s.io.v1.Lease.yaml | 42 - .../coordination.k8s.io.v1beta1.Lease.json | 55 - .../coordination.k8s.io.v1beta1.Lease.pb | Bin 490 -> 0 bytes .../coordination.k8s.io.v1beta1.Lease.yaml | 42 - testdata/v1.31.0/core.v1.APIGroup.json | 21 - testdata/v1.31.0/core.v1.APIGroup.pb | Bin 146 -> 0 bytes testdata/v1.31.0/core.v1.APIGroup.yaml | 12 - testdata/v1.31.0/core.v1.APIVersions.json | 13 - testdata/v1.31.0/core.v1.APIVersions.pb | Bin 83 -> 0 bytes testdata/v1.31.0/core.v1.APIVersions.yaml | 7 - testdata/v1.31.0/core.v1.Binding.json | 55 - testdata/v1.31.0/core.v1.Binding.pb | Bin 486 -> 0 bytes testdata/v1.31.0/core.v1.Binding.yaml | 42 - testdata/v1.31.0/core.v1.ComponentStatus.json | 54 - testdata/v1.31.0/core.v1.ComponentStatus.pb | Bin 441 -> 0 bytes testdata/v1.31.0/core.v1.ComponentStatus.yaml | 39 - testdata/v1.31.0/core.v1.ConfigMap.json | 53 - testdata/v1.31.0/core.v1.ConfigMap.pb | Bin 427 -> 0 bytes testdata/v1.31.0/core.v1.ConfigMap.yaml | 39 - testdata/v1.31.0/core.v1.CreateOptions.json | 9 - testdata/v1.31.0/core.v1.CreateOptions.pb | Bin 85 -> 0 bytes testdata/v1.31.0/core.v1.CreateOptions.yaml | 6 - testdata/v1.31.0/core.v1.DeleteOptions.json | 14 - testdata/v1.31.0/core.v1.DeleteOptions.pb | Bin 106 -> 0 bytes testdata/v1.31.0/core.v1.DeleteOptions.yaml | 10 - testdata/v1.31.0/core.v1.Endpoints.json | 90 - testdata/v1.31.0/core.v1.Endpoints.pb | Bin 728 -> 0 bytes testdata/v1.31.0/core.v1.Endpoints.yaml | 64 - testdata/v1.31.0/core.v1.Event.json | 82 - testdata/v1.31.0/core.v1.Event.pb | Bin 766 -> 0 bytes testdata/v1.31.0/core.v1.Event.yaml | 66 - testdata/v1.31.0/core.v1.GetOptions.json | 5 - testdata/v1.31.0/core.v1.GetOptions.pb | Bin 50 -> 0 bytes testdata/v1.31.0/core.v1.GetOptions.yaml | 3 - testdata/v1.31.0/core.v1.LimitRange.json | 68 - testdata/v1.31.0/core.v1.LimitRange.pb | Bin 506 -> 0 bytes testdata/v1.31.0/core.v1.LimitRange.yaml | 47 - testdata/v1.31.0/core.v1.ListOptions.json | 14 - testdata/v1.31.0/core.v1.ListOptions.pb | Bin 143 -> 0 bytes testdata/v1.31.0/core.v1.ListOptions.yaml | 12 - testdata/v1.31.0/core.v1.Namespace.json | 63 - testdata/v1.31.0/core.v1.Namespace.pb | Bin 479 -> 0 bytes testdata/v1.31.0/core.v1.Namespace.yaml | 45 - testdata/v1.31.0/core.v1.Node.json | 173 -- testdata/v1.31.0/core.v1.Node.pb | Bin 1302 -> 0 bytes testdata/v1.31.0/core.v1.Node.yaml | 122 - .../v1.31.0/core.v1.NodeProxyOptions.json | 5 - testdata/v1.31.0/core.v1.NodeProxyOptions.pb | Bin 45 -> 0 bytes .../v1.31.0/core.v1.NodeProxyOptions.yaml | 3 - testdata/v1.31.0/core.v1.PatchOptions.json | 10 - testdata/v1.31.0/core.v1.PatchOptions.pb | Bin 86 -> 0 bytes testdata/v1.31.0/core.v1.PatchOptions.yaml | 7 - .../v1.31.0/core.v1.PersistentVolume.json | 311 --- testdata/v1.31.0/core.v1.PersistentVolume.pb | Bin 2470 -> 0 bytes .../v1.31.0/core.v1.PersistentVolume.yaml | 239 -- .../core.v1.PersistentVolumeClaim.json | 118 - .../v1.31.0/core.v1.PersistentVolumeClaim.pb | Bin 1029 -> 0 bytes .../core.v1.PersistentVolumeClaim.yaml | 84 - .../v1.31.0/core.v1.Pod.after_roundtrip.pb | Bin 12076 -> 0 bytes testdata/v1.31.0/core.v1.Pod.json | 2025 ----------------- testdata/v1.31.0/core.v1.Pod.pb | Bin 12071 -> 0 bytes testdata/v1.31.0/core.v1.Pod.yaml | 1382 ----------- .../v1.31.0/core.v1.PodAttachOptions.json | 9 - testdata/v1.31.0/core.v1.PodAttachOptions.pb | Bin 58 -> 0 bytes .../v1.31.0/core.v1.PodAttachOptions.yaml | 7 - testdata/v1.31.0/core.v1.PodExecOptions.json | 12 - testdata/v1.31.0/core.v1.PodExecOptions.pb | Bin 70 -> 0 bytes testdata/v1.31.0/core.v1.PodExecOptions.yaml | 9 - testdata/v1.31.0/core.v1.PodLogOptions.json | 13 - testdata/v1.31.0/core.v1.PodLogOptions.pb | Bin 71 -> 0 bytes testdata/v1.31.0/core.v1.PodLogOptions.yaml | 11 - .../core.v1.PodPortForwardOptions.json | 7 - .../v1.31.0/core.v1.PodPortForwardOptions.pb | Bin 41 -> 0 bytes .../core.v1.PodPortForwardOptions.yaml | 4 - testdata/v1.31.0/core.v1.PodProxyOptions.json | 5 - testdata/v1.31.0/core.v1.PodProxyOptions.pb | Bin 44 -> 0 bytes testdata/v1.31.0/core.v1.PodProxyOptions.yaml | 3 - ...core.v1.PodStatusResult.after_roundtrip.pb | Bin 2153 -> 0 bytes testdata/v1.31.0/core.v1.PodStatusResult.json | 359 --- testdata/v1.31.0/core.v1.PodStatusResult.pb | Bin 2148 -> 0 bytes testdata/v1.31.0/core.v1.PodStatusResult.yaml | 244 -- testdata/v1.31.0/core.v1.PodTemplate.json | 1756 -------------- testdata/v1.31.0/core.v1.PodTemplate.pb | Bin 10678 -> 0 bytes testdata/v1.31.0/core.v1.PodTemplate.yaml | 1205 ---------- testdata/v1.31.0/core.v1.RangeAllocation.json | 48 - testdata/v1.31.0/core.v1.RangeAllocation.pb | Bin 404 -> 0 bytes testdata/v1.31.0/core.v1.RangeAllocation.yaml | 36 - .../core.v1.ReplicationController.json | 1779 --------------- .../v1.31.0/core.v1.ReplicationController.pb | Bin 10800 -> 0 bytes .../core.v1.ReplicationController.yaml | 1222 ---------- testdata/v1.31.0/core.v1.ResourceQuota.json | 73 - testdata/v1.31.0/core.v1.ResourceQuota.pb | Bin 500 -> 0 bytes testdata/v1.31.0/core.v1.ResourceQuota.yaml | 50 - testdata/v1.31.0/core.v1.Secret.json | 54 - testdata/v1.31.0/core.v1.Secret.pb | Bin 441 -> 0 bytes testdata/v1.31.0/core.v1.Secret.yaml | 40 - .../v1.31.0/core.v1.SerializedReference.json | 13 - .../v1.31.0/core.v1.SerializedReference.pb | Bin 142 -> 0 bytes .../v1.31.0/core.v1.SerializedReference.yaml | 10 - testdata/v1.31.0/core.v1.Service.json | 119 - testdata/v1.31.0/core.v1.Service.pb | Bin 945 -> 0 bytes testdata/v1.31.0/core.v1.Service.yaml | 85 - testdata/v1.31.0/core.v1.ServiceAccount.json | 63 - testdata/v1.31.0/core.v1.ServiceAccount.pb | Bin 508 -> 0 bytes testdata/v1.31.0/core.v1.ServiceAccount.yaml | 45 - .../v1.31.0/core.v1.ServiceProxyOptions.json | 5 - .../v1.31.0/core.v1.ServiceProxyOptions.pb | Bin 48 -> 0 bytes .../v1.31.0/core.v1.ServiceProxyOptions.yaml | 3 - testdata/v1.31.0/core.v1.Status.json | 28 - testdata/v1.31.0/core.v1.Status.pb | Bin 212 -> 0 bytes testdata/v1.31.0/core.v1.Status.yaml | 21 - testdata/v1.31.0/core.v1.UpdateOptions.json | 9 - testdata/v1.31.0/core.v1.UpdateOptions.pb | Bin 85 -> 0 bytes testdata/v1.31.0/core.v1.UpdateOptions.yaml | 6 - testdata/v1.31.0/core.v1.WatchEvent.json | 13 - testdata/v1.31.0/core.v1.WatchEvent.pb | Bin 129 -> 0 bytes testdata/v1.31.0/core.v1.WatchEvent.yaml | 8 - .../discovery.k8s.io.v1.EndpointSlice.json | 89 - .../discovery.k8s.io.v1.EndpointSlice.pb | Bin 708 -> 0 bytes .../discovery.k8s.io.v1.EndpointSlice.yaml | 63 - ...iscovery.k8s.io.v1beta1.EndpointSlice.json | 88 - .../discovery.k8s.io.v1beta1.EndpointSlice.pb | Bin 682 -> 0 bytes ...iscovery.k8s.io.v1beta1.EndpointSlice.yaml | 62 - testdata/v1.31.0/events.k8s.io.v1.Event.json | 82 - testdata/v1.31.0/events.k8s.io.v1.Event.pb | Bin 778 -> 0 bytes testdata/v1.31.0/events.k8s.io.v1.Event.yaml | 66 - .../v1.31.0/events.k8s.io.v1beta1.Event.json | 82 - .../v1.31.0/events.k8s.io.v1beta1.Event.pb | Bin 783 -> 0 bytes .../v1.31.0/events.k8s.io.v1beta1.Event.yaml | 66 - .../v1.31.0/extensions.v1beta1.DaemonSet.json | 1802 --------------- .../v1.31.0/extensions.v1beta1.DaemonSet.pb | Bin 10925 -> 0 bytes .../v1.31.0/extensions.v1beta1.DaemonSet.yaml | 1238 ---------- .../extensions.v1beta1.Deployment.json | 1806 --------------- .../v1.31.0/extensions.v1beta1.Deployment.pb | Bin 10940 -> 0 bytes .../extensions.v1beta1.Deployment.yaml | 1241 ---------- ...extensions.v1beta1.DeploymentRollback.json | 11 - .../extensions.v1beta1.DeploymentRollback.pb | Bin 117 -> 0 bytes ...extensions.v1beta1.DeploymentRollback.yaml | 7 - .../v1.31.0/extensions.v1beta1.Ingress.json | 105 - .../v1.31.0/extensions.v1beta1.Ingress.pb | Bin 726 -> 0 bytes .../v1.31.0/extensions.v1beta1.Ingress.yaml | 69 - .../extensions.v1beta1.NetworkPolicy.json | 163 -- .../extensions.v1beta1.NetworkPolicy.pb | Bin 950 -> 0 bytes .../extensions.v1beta1.NetworkPolicy.yaml | 97 - .../extensions.v1beta1.ReplicaSet.json | 1790 --------------- .../v1.31.0/extensions.v1beta1.ReplicaSet.pb | Bin 10853 -> 0 bytes .../extensions.v1beta1.ReplicaSet.yaml | 1228 ---------- .../v1.31.0/extensions.v1beta1.Scale.json | 56 - testdata/v1.31.0/extensions.v1beta1.Scale.pb | Bin 454 -> 0 bytes .../v1.31.0/extensions.v1beta1.Scale.yaml | 41 - ...ontrol.apiserver.k8s.io.v1.FlowSchema.json | 112 - ...wcontrol.apiserver.k8s.io.v1.FlowSchema.pb | Bin 681 -> 0 bytes ...ontrol.apiserver.k8s.io.v1.FlowSchema.yaml | 72 - ....k8s.io.v1.PriorityLevelConfiguration.json | 77 - ...er.k8s.io.v1.PriorityLevelConfiguration.pb | Bin 542 -> 0 bytes ....k8s.io.v1.PriorityLevelConfiguration.yaml | 56 - ...l.apiserver.k8s.io.v1beta1.FlowSchema.json | 112 - ...rol.apiserver.k8s.io.v1beta1.FlowSchema.pb | Bin 686 -> 0 bytes ...l.apiserver.k8s.io.v1beta1.FlowSchema.yaml | 72 - ...io.v1beta1.PriorityLevelConfiguration.json | 77 - ...s.io.v1beta1.PriorityLevelConfiguration.pb | Bin 547 -> 0 bytes ...io.v1beta1.PriorityLevelConfiguration.yaml | 56 - ...l.apiserver.k8s.io.v1beta2.FlowSchema.json | 112 - ...rol.apiserver.k8s.io.v1beta2.FlowSchema.pb | Bin 686 -> 0 bytes ...l.apiserver.k8s.io.v1beta2.FlowSchema.yaml | 72 - ...io.v1beta2.PriorityLevelConfiguration.json | 77 - ...s.io.v1beta2.PriorityLevelConfiguration.pb | Bin 547 -> 0 bytes ...io.v1beta2.PriorityLevelConfiguration.yaml | 56 - ...l.apiserver.k8s.io.v1beta3.FlowSchema.json | 112 - ...rol.apiserver.k8s.io.v1beta3.FlowSchema.pb | Bin 686 -> 0 bytes ...l.apiserver.k8s.io.v1beta3.FlowSchema.yaml | 72 - ...io.v1beta3.PriorityLevelConfiguration.json | 77 - ...s.io.v1beta3.PriorityLevelConfiguration.pb | Bin 547 -> 0 bytes ...io.v1beta3.PriorityLevelConfiguration.yaml | 56 - ...agepolicy.k8s.io.v1alpha1.ImageReview.json | 64 - ...imagepolicy.k8s.io.v1alpha1.ImageReview.pb | Bin 541 -> 0 bytes ...agepolicy.k8s.io.v1alpha1.ImageReview.yaml | 45 - ...server.k8s.io.v1alpha1.StorageVersion.json | 72 - ...piserver.k8s.io.v1alpha1.StorageVersion.pb | Bin 605 -> 0 bytes ...server.k8s.io.v1alpha1.StorageVersion.yaml | 51 - .../v1.31.0/networking.k8s.io.v1.Ingress.json | 115 - .../v1.31.0/networking.k8s.io.v1.Ingress.pb | Bin 700 -> 0 bytes .../v1.31.0/networking.k8s.io.v1.Ingress.yaml | 75 - .../networking.k8s.io.v1.IngressClass.json | 56 - .../networking.k8s.io.v1.IngressClass.pb | Bin 490 -> 0 bytes .../networking.k8s.io.v1.IngressClass.yaml | 42 - .../networking.k8s.io.v1.NetworkPolicy.json | 163 -- .../networking.k8s.io.v1.NetworkPolicy.pb | Bin 952 -> 0 bytes .../networking.k8s.io.v1.NetworkPolicy.yaml | 97 - .../networking.k8s.io.v1alpha1.IPAddress.json | 54 - .../networking.k8s.io.v1alpha1.IPAddress.pb | Bin 465 -> 0 bytes .../networking.k8s.io.v1alpha1.IPAddress.yaml | 40 - ...etworking.k8s.io.v1alpha1.ServiceCIDR.json | 63 - .../networking.k8s.io.v1alpha1.ServiceCIDR.pb | Bin 490 -> 0 bytes ...etworking.k8s.io.v1alpha1.ServiceCIDR.yaml | 45 - .../networking.k8s.io.v1beta1.IPAddress.json | 54 - .../networking.k8s.io.v1beta1.IPAddress.pb | Bin 464 -> 0 bytes .../networking.k8s.io.v1beta1.IPAddress.yaml | 40 - .../networking.k8s.io.v1beta1.Ingress.json | 105 - .../networking.k8s.io.v1beta1.Ingress.pb | Bin 733 -> 0 bytes .../networking.k8s.io.v1beta1.Ingress.yaml | 69 - ...etworking.k8s.io.v1beta1.IngressClass.json | 56 - .../networking.k8s.io.v1beta1.IngressClass.pb | Bin 495 -> 0 bytes ...etworking.k8s.io.v1beta1.IngressClass.yaml | 42 - ...networking.k8s.io.v1beta1.ServiceCIDR.json | 63 - .../networking.k8s.io.v1beta1.ServiceCIDR.pb | Bin 489 -> 0 bytes ...networking.k8s.io.v1beta1.ServiceCIDR.yaml | 45 - .../v1.31.0/node.k8s.io.v1.RuntimeClass.json | 66 - .../v1.31.0/node.k8s.io.v1.RuntimeClass.pb | Bin 528 -> 0 bytes .../v1.31.0/node.k8s.io.v1.RuntimeClass.yaml | 47 - .../node.k8s.io.v1alpha1.RuntimeClass.json | 68 - .../node.k8s.io.v1alpha1.RuntimeClass.pb | Bin 544 -> 0 bytes .../node.k8s.io.v1alpha1.RuntimeClass.yaml | 48 - .../node.k8s.io.v1beta1.RuntimeClass.json | 66 - .../node.k8s.io.v1beta1.RuntimeClass.pb | Bin 533 -> 0 bytes .../node.k8s.io.v1beta1.RuntimeClass.yaml | 47 - testdata/v1.31.0/policy.v1.Eviction.json | 58 - testdata/v1.31.0/policy.v1.Eviction.pb | Bin 466 -> 0 bytes testdata/v1.31.0/policy.v1.Eviction.yaml | 43 - .../policy.v1.PodDisruptionBudget.json | 85 - .../v1.31.0/policy.v1.PodDisruptionBudget.pb | Bin 665 -> 0 bytes .../policy.v1.PodDisruptionBudget.yaml | 61 - testdata/v1.31.0/policy.v1beta1.Eviction.json | 58 - testdata/v1.31.0/policy.v1beta1.Eviction.pb | Bin 471 -> 0 bytes testdata/v1.31.0/policy.v1beta1.Eviction.yaml | 43 - .../policy.v1beta1.PodDisruptionBudget.json | 85 - .../policy.v1beta1.PodDisruptionBudget.pb | Bin 670 -> 0 bytes .../policy.v1beta1.PodDisruptionBudget.yaml | 61 - ...c.authorization.k8s.io.v1.ClusterRole.json | 83 - ...bac.authorization.k8s.io.v1.ClusterRole.pb | Bin 579 -> 0 bytes ...c.authorization.k8s.io.v1.ClusterRole.yaml | 54 - ...rization.k8s.io.v1.ClusterRoleBinding.json | 59 - ...horization.k8s.io.v1.ClusterRoleBinding.pb | Bin 512 -> 0 bytes ...rization.k8s.io.v1.ClusterRoleBinding.yaml | 43 - .../rbac.authorization.k8s.io.v1.Role.json | 65 - .../rbac.authorization.k8s.io.v1.Role.pb | Bin 492 -> 0 bytes .../rbac.authorization.k8s.io.v1.Role.yaml | 45 - ...c.authorization.k8s.io.v1.RoleBinding.json | 59 - ...bac.authorization.k8s.io.v1.RoleBinding.pb | Bin 505 -> 0 bytes ...c.authorization.k8s.io.v1.RoleBinding.yaml | 43 - ...orization.k8s.io.v1alpha1.ClusterRole.json | 83 - ...thorization.k8s.io.v1alpha1.ClusterRole.pb | Bin 585 -> 0 bytes ...orization.k8s.io.v1alpha1.ClusterRole.yaml | 54 - ...on.k8s.io.v1alpha1.ClusterRoleBinding.json | 59 - ...tion.k8s.io.v1alpha1.ClusterRoleBinding.pb | Bin 520 -> 0 bytes ...on.k8s.io.v1alpha1.ClusterRoleBinding.yaml | 43 - ...ac.authorization.k8s.io.v1alpha1.Role.json | 65 - ...rbac.authorization.k8s.io.v1alpha1.Role.pb | Bin 498 -> 0 bytes ...ac.authorization.k8s.io.v1alpha1.Role.yaml | 45 - ...orization.k8s.io.v1alpha1.RoleBinding.json | 59 - ...thorization.k8s.io.v1alpha1.RoleBinding.pb | Bin 513 -> 0 bytes ...orization.k8s.io.v1alpha1.RoleBinding.yaml | 43 - ...horization.k8s.io.v1beta1.ClusterRole.json | 83 - ...uthorization.k8s.io.v1beta1.ClusterRole.pb | Bin 584 -> 0 bytes ...horization.k8s.io.v1beta1.ClusterRole.yaml | 54 - ...ion.k8s.io.v1beta1.ClusterRoleBinding.json | 59 - ...ation.k8s.io.v1beta1.ClusterRoleBinding.pb | Bin 517 -> 0 bytes ...ion.k8s.io.v1beta1.ClusterRoleBinding.yaml | 43 - ...bac.authorization.k8s.io.v1beta1.Role.json | 65 - .../rbac.authorization.k8s.io.v1beta1.Role.pb | Bin 497 -> 0 bytes ...bac.authorization.k8s.io.v1beta1.Role.yaml | 45 - ...horization.k8s.io.v1beta1.RoleBinding.json | 59 - ...uthorization.k8s.io.v1beta1.RoleBinding.pb | Bin 510 -> 0 bytes ...horization.k8s.io.v1beta1.RoleBinding.yaml | 43 - ....v1alpha3.DeviceClass.after_roundtrip.json | 72 - ...io.v1alpha3.DeviceClass.after_roundtrip.pb | Bin 552 -> 0 bytes ....v1alpha3.DeviceClass.after_roundtrip.yaml | 48 - .../resource.k8s.io.v1alpha3.DeviceClass.json | 96 - .../resource.k8s.io.v1alpha3.DeviceClass.pb | Bin 636 -> 0 bytes .../resource.k8s.io.v1alpha3.DeviceClass.yaml | 60 - ....k8s.io.v1alpha3.PodSchedulingContext.json | 62 - ...ce.k8s.io.v1alpha3.PodSchedulingContext.pb | Bin 495 -> 0 bytes ....k8s.io.v1alpha3.PodSchedulingContext.yaml | 43 - ...1alpha3.ResourceClaim.after_roundtrip.json | 162 -- ....v1alpha3.ResourceClaim.after_roundtrip.pb | Bin 1020 -> 0 bytes ...1alpha3.ResourceClaim.after_roundtrip.yaml | 100 - ...esource.k8s.io.v1alpha3.ResourceClaim.json | 164 -- .../resource.k8s.io.v1alpha3.ResourceClaim.pb | Bin 1056 -> 0 bytes ...esource.k8s.io.v1alpha3.ResourceClaim.yaml | 102 - ...ResourceClaimTemplate.after_roundtrip.json | 138 -- ...3.ResourceClaimTemplate.after_roundtrip.pb | Bin 1037 -> 0 bytes ...ResourceClaimTemplate.after_roundtrip.yaml | 94 - ...k8s.io.v1alpha3.ResourceClaimTemplate.json | 139 -- ...e.k8s.io.v1alpha3.ResourceClaimTemplate.pb | Bin 1054 -> 0 bytes ...k8s.io.v1alpha3.ResourceClaimTemplate.yaml | 95 - ...esource.k8s.io.v1alpha3.ResourceSlice.json | 98 - .../resource.k8s.io.v1alpha3.ResourceSlice.pb | Bin 628 -> 0 bytes ...esource.k8s.io.v1alpha3.ResourceSlice.yaml | 65 - .../scheduling.k8s.io.v1.PriorityClass.json | 50 - .../scheduling.k8s.io.v1.PriorityClass.pb | Bin 450 -> 0 bytes .../scheduling.k8s.io.v1.PriorityClass.yaml | 38 - ...eduling.k8s.io.v1alpha1.PriorityClass.json | 50 - ...cheduling.k8s.io.v1alpha1.PriorityClass.pb | Bin 456 -> 0 bytes ...eduling.k8s.io.v1alpha1.PriorityClass.yaml | 38 - ...heduling.k8s.io.v1beta1.PriorityClass.json | 50 - ...scheduling.k8s.io.v1beta1.PriorityClass.pb | Bin 455 -> 0 bytes ...heduling.k8s.io.v1beta1.PriorityClass.yaml | 38 - .../v1.31.0/storage.k8s.io.v1.CSIDriver.json | 63 - .../v1.31.0/storage.k8s.io.v1.CSIDriver.pb | Bin 476 -> 0 bytes .../v1.31.0/storage.k8s.io.v1.CSIDriver.yaml | 46 - .../v1.31.0/storage.k8s.io.v1.CSINode.json | 60 - testdata/v1.31.0/storage.k8s.io.v1.CSINode.pb | Bin 447 -> 0 bytes .../v1.31.0/storage.k8s.io.v1.CSINode.yaml | 42 - .../storage.k8s.io.v1.CSIStorageCapacity.json | 63 - .../storage.k8s.io.v1.CSIStorageCapacity.pb | Bin 518 -> 0 bytes .../storage.k8s.io.v1.CSIStorageCapacity.yaml | 45 - .../storage.k8s.io.v1.StorageClass.json | 68 - .../v1.31.0/storage.k8s.io.v1.StorageClass.pb | Bin 545 -> 0 bytes .../storage.k8s.io.v1.StorageClass.yaml | 47 - .../storage.k8s.io.v1.VolumeAttachment.json | 326 --- .../storage.k8s.io.v1.VolumeAttachment.pb | Bin 2603 -> 0 bytes .../storage.k8s.io.v1.VolumeAttachment.yaml | 249 -- ...ge.k8s.io.v1alpha1.CSIStorageCapacity.json | 63 - ...rage.k8s.io.v1alpha1.CSIStorageCapacity.pb | Bin 524 -> 0 bytes ...ge.k8s.io.v1alpha1.CSIStorageCapacity.yaml | 45 - ...rage.k8s.io.v1alpha1.VolumeAttachment.json | 326 --- ...torage.k8s.io.v1alpha1.VolumeAttachment.pb | Bin 2609 -> 0 bytes ...rage.k8s.io.v1alpha1.VolumeAttachment.yaml | 249 -- ...k8s.io.v1alpha1.VolumeAttributesClass.json | 50 - ...e.k8s.io.v1alpha1.VolumeAttributesClass.pb | Bin 467 -> 0 bytes ...k8s.io.v1alpha1.VolumeAttributesClass.yaml | 37 - .../storage.k8s.io.v1beta1.CSIDriver.json | 63 - .../storage.k8s.io.v1beta1.CSIDriver.pb | Bin 481 -> 0 bytes .../storage.k8s.io.v1beta1.CSIDriver.yaml | 46 - .../storage.k8s.io.v1beta1.CSINode.json | 60 - .../v1.31.0/storage.k8s.io.v1beta1.CSINode.pb | Bin 452 -> 0 bytes .../storage.k8s.io.v1beta1.CSINode.yaml | 42 - ...age.k8s.io.v1beta1.CSIStorageCapacity.json | 63 - ...orage.k8s.io.v1beta1.CSIStorageCapacity.pb | Bin 523 -> 0 bytes ...age.k8s.io.v1beta1.CSIStorageCapacity.yaml | 45 - .../storage.k8s.io.v1beta1.StorageClass.json | 68 - .../storage.k8s.io.v1beta1.StorageClass.pb | Bin 550 -> 0 bytes .../storage.k8s.io.v1beta1.StorageClass.yaml | 47 - ...orage.k8s.io.v1beta1.VolumeAttachment.json | 326 --- ...storage.k8s.io.v1beta1.VolumeAttachment.pb | Bin 2608 -> 0 bytes ...orage.k8s.io.v1beta1.VolumeAttachment.yaml | 249 -- ....k8s.io.v1beta1.VolumeAttributesClass.json | 50 - ...ge.k8s.io.v1beta1.VolumeAttributesClass.pb | Bin 466 -> 0 bytes ....k8s.io.v1beta1.VolumeAttributesClass.yaml | 37 - ...s.io.v1alpha1.StorageVersionMigration.json | 66 - ...k8s.io.v1alpha1.StorageVersionMigration.pb | Bin 579 -> 0 bytes ...s.io.v1alpha1.StorageVersionMigration.yaml | 48 - 506 files changed, 80702 deletions(-) delete mode 100644 testdata/v1.31.0/admission.k8s.io.v1.AdmissionReview.json delete mode 100644 testdata/v1.31.0/admission.k8s.io.v1.AdmissionReview.pb delete mode 100644 testdata/v1.31.0/admission.k8s.io.v1.AdmissionReview.yaml delete mode 100644 testdata/v1.31.0/admission.k8s.io.v1beta1.AdmissionReview.json delete mode 100644 testdata/v1.31.0/admission.k8s.io.v1beta1.AdmissionReview.pb delete mode 100644 testdata/v1.31.0/admission.k8s.io.v1beta1.AdmissionReview.yaml delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.json delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.pb delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.yaml delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.json delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.pb delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.yaml delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.json delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.pb delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.yaml delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.json delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.pb delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.yaml delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.json delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.pb delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.yaml delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicyBinding.json delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicyBinding.pb delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicyBinding.yaml delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.json delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.pb delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.yaml delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.json delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.pb delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.yaml delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicyBinding.json delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicyBinding.pb delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicyBinding.yaml delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.json delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.pb delete mode 100644 testdata/v1.31.0/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.yaml delete mode 100644 testdata/v1.31.0/apidiscovery.k8s.io.v2.APIGroupDiscovery.json delete mode 100644 testdata/v1.31.0/apidiscovery.k8s.io.v2.APIGroupDiscovery.pb delete mode 100644 testdata/v1.31.0/apidiscovery.k8s.io.v2.APIGroupDiscovery.yaml delete mode 100644 testdata/v1.31.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.json delete mode 100644 testdata/v1.31.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.pb delete mode 100644 testdata/v1.31.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.yaml delete mode 100644 testdata/v1.31.0/apps.v1.ControllerRevision.json delete mode 100644 testdata/v1.31.0/apps.v1.ControllerRevision.pb delete mode 100644 testdata/v1.31.0/apps.v1.ControllerRevision.yaml delete mode 100644 testdata/v1.31.0/apps.v1.DaemonSet.json delete mode 100644 testdata/v1.31.0/apps.v1.DaemonSet.pb delete mode 100644 testdata/v1.31.0/apps.v1.DaemonSet.yaml delete mode 100644 testdata/v1.31.0/apps.v1.Deployment.json delete mode 100644 testdata/v1.31.0/apps.v1.Deployment.pb delete mode 100644 testdata/v1.31.0/apps.v1.Deployment.yaml delete mode 100644 testdata/v1.31.0/apps.v1.ReplicaSet.json delete mode 100644 testdata/v1.31.0/apps.v1.ReplicaSet.pb delete mode 100644 testdata/v1.31.0/apps.v1.ReplicaSet.yaml delete mode 100644 testdata/v1.31.0/apps.v1.StatefulSet.json delete mode 100644 testdata/v1.31.0/apps.v1.StatefulSet.pb delete mode 100644 testdata/v1.31.0/apps.v1.StatefulSet.yaml delete mode 100644 testdata/v1.31.0/apps.v1beta1.ControllerRevision.json delete mode 100644 testdata/v1.31.0/apps.v1beta1.ControllerRevision.pb delete mode 100644 testdata/v1.31.0/apps.v1beta1.ControllerRevision.yaml delete mode 100644 testdata/v1.31.0/apps.v1beta1.Deployment.json delete mode 100644 testdata/v1.31.0/apps.v1beta1.Deployment.pb delete mode 100644 testdata/v1.31.0/apps.v1beta1.Deployment.yaml delete mode 100644 testdata/v1.31.0/apps.v1beta1.DeploymentRollback.json delete mode 100644 testdata/v1.31.0/apps.v1beta1.DeploymentRollback.pb delete mode 100644 testdata/v1.31.0/apps.v1beta1.DeploymentRollback.yaml delete mode 100644 testdata/v1.31.0/apps.v1beta1.Scale.json delete mode 100644 testdata/v1.31.0/apps.v1beta1.Scale.pb delete mode 100644 testdata/v1.31.0/apps.v1beta1.Scale.yaml delete mode 100644 testdata/v1.31.0/apps.v1beta1.StatefulSet.json delete mode 100644 testdata/v1.31.0/apps.v1beta1.StatefulSet.pb delete mode 100644 testdata/v1.31.0/apps.v1beta1.StatefulSet.yaml delete mode 100644 testdata/v1.31.0/apps.v1beta2.ControllerRevision.json delete mode 100644 testdata/v1.31.0/apps.v1beta2.ControllerRevision.pb delete mode 100644 testdata/v1.31.0/apps.v1beta2.ControllerRevision.yaml delete mode 100644 testdata/v1.31.0/apps.v1beta2.DaemonSet.json delete mode 100644 testdata/v1.31.0/apps.v1beta2.DaemonSet.pb delete mode 100644 testdata/v1.31.0/apps.v1beta2.DaemonSet.yaml delete mode 100644 testdata/v1.31.0/apps.v1beta2.Deployment.json delete mode 100644 testdata/v1.31.0/apps.v1beta2.Deployment.pb delete mode 100644 testdata/v1.31.0/apps.v1beta2.Deployment.yaml delete mode 100644 testdata/v1.31.0/apps.v1beta2.ReplicaSet.json delete mode 100644 testdata/v1.31.0/apps.v1beta2.ReplicaSet.pb delete mode 100644 testdata/v1.31.0/apps.v1beta2.ReplicaSet.yaml delete mode 100644 testdata/v1.31.0/apps.v1beta2.Scale.json delete mode 100644 testdata/v1.31.0/apps.v1beta2.Scale.pb delete mode 100644 testdata/v1.31.0/apps.v1beta2.Scale.yaml delete mode 100644 testdata/v1.31.0/apps.v1beta2.StatefulSet.json delete mode 100644 testdata/v1.31.0/apps.v1beta2.StatefulSet.pb delete mode 100644 testdata/v1.31.0/apps.v1beta2.StatefulSet.yaml delete mode 100644 testdata/v1.31.0/authentication.k8s.io.v1.SelfSubjectReview.json delete mode 100644 testdata/v1.31.0/authentication.k8s.io.v1.SelfSubjectReview.pb delete mode 100644 testdata/v1.31.0/authentication.k8s.io.v1.SelfSubjectReview.yaml delete mode 100644 testdata/v1.31.0/authentication.k8s.io.v1.TokenRequest.json delete mode 100644 testdata/v1.31.0/authentication.k8s.io.v1.TokenRequest.pb delete mode 100644 testdata/v1.31.0/authentication.k8s.io.v1.TokenRequest.yaml delete mode 100644 testdata/v1.31.0/authentication.k8s.io.v1.TokenReview.json delete mode 100644 testdata/v1.31.0/authentication.k8s.io.v1.TokenReview.pb delete mode 100644 testdata/v1.31.0/authentication.k8s.io.v1.TokenReview.yaml delete mode 100644 testdata/v1.31.0/authentication.k8s.io.v1beta1.SelfSubjectReview.json delete mode 100644 testdata/v1.31.0/authentication.k8s.io.v1beta1.SelfSubjectReview.pb delete mode 100644 testdata/v1.31.0/authentication.k8s.io.v1beta1.SelfSubjectReview.yaml delete mode 100644 testdata/v1.31.0/authentication.k8s.io.v1beta1.TokenReview.json delete mode 100644 testdata/v1.31.0/authentication.k8s.io.v1beta1.TokenReview.pb delete mode 100644 testdata/v1.31.0/authentication.k8s.io.v1beta1.TokenReview.yaml delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1.LocalSubjectAccessReview.json delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1.LocalSubjectAccessReview.pb delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1.LocalSubjectAccessReview.yaml delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1.SelfSubjectAccessReview.json delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1.SelfSubjectAccessReview.pb delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1.SelfSubjectAccessReview.yaml delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1.SelfSubjectRulesReview.json delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1.SelfSubjectRulesReview.pb delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1.SelfSubjectRulesReview.yaml delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1.SubjectAccessReview.json delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1.SubjectAccessReview.pb delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1.SubjectAccessReview.yaml delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1beta1.LocalSubjectAccessReview.json delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1beta1.LocalSubjectAccessReview.pb delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1beta1.LocalSubjectAccessReview.yaml delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1beta1.SelfSubjectAccessReview.json delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1beta1.SelfSubjectAccessReview.pb delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1beta1.SelfSubjectAccessReview.yaml delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.json delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.pb delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.yaml delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1beta1.SubjectAccessReview.json delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1beta1.SubjectAccessReview.pb delete mode 100644 testdata/v1.31.0/authorization.k8s.io.v1beta1.SubjectAccessReview.yaml delete mode 100644 testdata/v1.31.0/autoscaling.v1.HorizontalPodAutoscaler.json delete mode 100644 testdata/v1.31.0/autoscaling.v1.HorizontalPodAutoscaler.pb delete mode 100644 testdata/v1.31.0/autoscaling.v1.HorizontalPodAutoscaler.yaml delete mode 100644 testdata/v1.31.0/autoscaling.v1.Scale.json delete mode 100644 testdata/v1.31.0/autoscaling.v1.Scale.pb delete mode 100644 testdata/v1.31.0/autoscaling.v1.Scale.yaml delete mode 100644 testdata/v1.31.0/autoscaling.v2.HorizontalPodAutoscaler.json delete mode 100644 testdata/v1.31.0/autoscaling.v2.HorizontalPodAutoscaler.pb delete mode 100644 testdata/v1.31.0/autoscaling.v2.HorizontalPodAutoscaler.yaml delete mode 100644 testdata/v1.31.0/autoscaling.v2beta1.HorizontalPodAutoscaler.json delete mode 100644 testdata/v1.31.0/autoscaling.v2beta1.HorizontalPodAutoscaler.pb delete mode 100644 testdata/v1.31.0/autoscaling.v2beta1.HorizontalPodAutoscaler.yaml delete mode 100644 testdata/v1.31.0/autoscaling.v2beta2.HorizontalPodAutoscaler.json delete mode 100644 testdata/v1.31.0/autoscaling.v2beta2.HorizontalPodAutoscaler.pb delete mode 100644 testdata/v1.31.0/autoscaling.v2beta2.HorizontalPodAutoscaler.yaml delete mode 100644 testdata/v1.31.0/batch.v1.CronJob.json delete mode 100644 testdata/v1.31.0/batch.v1.CronJob.pb delete mode 100644 testdata/v1.31.0/batch.v1.CronJob.yaml delete mode 100644 testdata/v1.31.0/batch.v1.Job.json delete mode 100644 testdata/v1.31.0/batch.v1.Job.pb delete mode 100644 testdata/v1.31.0/batch.v1.Job.yaml delete mode 100644 testdata/v1.31.0/batch.v1beta1.CronJob.json delete mode 100644 testdata/v1.31.0/batch.v1beta1.CronJob.pb delete mode 100644 testdata/v1.31.0/batch.v1beta1.CronJob.yaml delete mode 100644 testdata/v1.31.0/certificates.k8s.io.v1.CertificateSigningRequest.json delete mode 100644 testdata/v1.31.0/certificates.k8s.io.v1.CertificateSigningRequest.pb delete mode 100644 testdata/v1.31.0/certificates.k8s.io.v1.CertificateSigningRequest.yaml delete mode 100644 testdata/v1.31.0/certificates.k8s.io.v1alpha1.ClusterTrustBundle.json delete mode 100644 testdata/v1.31.0/certificates.k8s.io.v1alpha1.ClusterTrustBundle.pb delete mode 100644 testdata/v1.31.0/certificates.k8s.io.v1alpha1.ClusterTrustBundle.yaml delete mode 100644 testdata/v1.31.0/certificates.k8s.io.v1beta1.CertificateSigningRequest.json delete mode 100644 testdata/v1.31.0/certificates.k8s.io.v1beta1.CertificateSigningRequest.pb delete mode 100644 testdata/v1.31.0/certificates.k8s.io.v1beta1.CertificateSigningRequest.yaml delete mode 100644 testdata/v1.31.0/coordination.k8s.io.v1.Lease.json delete mode 100644 testdata/v1.31.0/coordination.k8s.io.v1.Lease.pb delete mode 100644 testdata/v1.31.0/coordination.k8s.io.v1.Lease.yaml delete mode 100644 testdata/v1.31.0/coordination.k8s.io.v1beta1.Lease.json delete mode 100644 testdata/v1.31.0/coordination.k8s.io.v1beta1.Lease.pb delete mode 100644 testdata/v1.31.0/coordination.k8s.io.v1beta1.Lease.yaml delete mode 100644 testdata/v1.31.0/core.v1.APIGroup.json delete mode 100644 testdata/v1.31.0/core.v1.APIGroup.pb delete mode 100644 testdata/v1.31.0/core.v1.APIGroup.yaml delete mode 100644 testdata/v1.31.0/core.v1.APIVersions.json delete mode 100644 testdata/v1.31.0/core.v1.APIVersions.pb delete mode 100644 testdata/v1.31.0/core.v1.APIVersions.yaml delete mode 100644 testdata/v1.31.0/core.v1.Binding.json delete mode 100644 testdata/v1.31.0/core.v1.Binding.pb delete mode 100644 testdata/v1.31.0/core.v1.Binding.yaml delete mode 100644 testdata/v1.31.0/core.v1.ComponentStatus.json delete mode 100644 testdata/v1.31.0/core.v1.ComponentStatus.pb delete mode 100644 testdata/v1.31.0/core.v1.ComponentStatus.yaml delete mode 100644 testdata/v1.31.0/core.v1.ConfigMap.json delete mode 100644 testdata/v1.31.0/core.v1.ConfigMap.pb delete mode 100644 testdata/v1.31.0/core.v1.ConfigMap.yaml delete mode 100644 testdata/v1.31.0/core.v1.CreateOptions.json delete mode 100644 testdata/v1.31.0/core.v1.CreateOptions.pb delete mode 100644 testdata/v1.31.0/core.v1.CreateOptions.yaml delete mode 100644 testdata/v1.31.0/core.v1.DeleteOptions.json delete mode 100644 testdata/v1.31.0/core.v1.DeleteOptions.pb delete mode 100644 testdata/v1.31.0/core.v1.DeleteOptions.yaml delete mode 100644 testdata/v1.31.0/core.v1.Endpoints.json delete mode 100644 testdata/v1.31.0/core.v1.Endpoints.pb delete mode 100644 testdata/v1.31.0/core.v1.Endpoints.yaml delete mode 100644 testdata/v1.31.0/core.v1.Event.json delete mode 100644 testdata/v1.31.0/core.v1.Event.pb delete mode 100644 testdata/v1.31.0/core.v1.Event.yaml delete mode 100644 testdata/v1.31.0/core.v1.GetOptions.json delete mode 100644 testdata/v1.31.0/core.v1.GetOptions.pb delete mode 100644 testdata/v1.31.0/core.v1.GetOptions.yaml delete mode 100644 testdata/v1.31.0/core.v1.LimitRange.json delete mode 100644 testdata/v1.31.0/core.v1.LimitRange.pb delete mode 100644 testdata/v1.31.0/core.v1.LimitRange.yaml delete mode 100644 testdata/v1.31.0/core.v1.ListOptions.json delete mode 100644 testdata/v1.31.0/core.v1.ListOptions.pb delete mode 100644 testdata/v1.31.0/core.v1.ListOptions.yaml delete mode 100644 testdata/v1.31.0/core.v1.Namespace.json delete mode 100644 testdata/v1.31.0/core.v1.Namespace.pb delete mode 100644 testdata/v1.31.0/core.v1.Namespace.yaml delete mode 100644 testdata/v1.31.0/core.v1.Node.json delete mode 100644 testdata/v1.31.0/core.v1.Node.pb delete mode 100644 testdata/v1.31.0/core.v1.Node.yaml delete mode 100644 testdata/v1.31.0/core.v1.NodeProxyOptions.json delete mode 100644 testdata/v1.31.0/core.v1.NodeProxyOptions.pb delete mode 100644 testdata/v1.31.0/core.v1.NodeProxyOptions.yaml delete mode 100644 testdata/v1.31.0/core.v1.PatchOptions.json delete mode 100644 testdata/v1.31.0/core.v1.PatchOptions.pb delete mode 100644 testdata/v1.31.0/core.v1.PatchOptions.yaml delete mode 100644 testdata/v1.31.0/core.v1.PersistentVolume.json delete mode 100644 testdata/v1.31.0/core.v1.PersistentVolume.pb delete mode 100644 testdata/v1.31.0/core.v1.PersistentVolume.yaml delete mode 100644 testdata/v1.31.0/core.v1.PersistentVolumeClaim.json delete mode 100644 testdata/v1.31.0/core.v1.PersistentVolumeClaim.pb delete mode 100644 testdata/v1.31.0/core.v1.PersistentVolumeClaim.yaml delete mode 100644 testdata/v1.31.0/core.v1.Pod.after_roundtrip.pb delete mode 100644 testdata/v1.31.0/core.v1.Pod.json delete mode 100644 testdata/v1.31.0/core.v1.Pod.pb delete mode 100644 testdata/v1.31.0/core.v1.Pod.yaml delete mode 100644 testdata/v1.31.0/core.v1.PodAttachOptions.json delete mode 100644 testdata/v1.31.0/core.v1.PodAttachOptions.pb delete mode 100644 testdata/v1.31.0/core.v1.PodAttachOptions.yaml delete mode 100644 testdata/v1.31.0/core.v1.PodExecOptions.json delete mode 100644 testdata/v1.31.0/core.v1.PodExecOptions.pb delete mode 100644 testdata/v1.31.0/core.v1.PodExecOptions.yaml delete mode 100644 testdata/v1.31.0/core.v1.PodLogOptions.json delete mode 100644 testdata/v1.31.0/core.v1.PodLogOptions.pb delete mode 100644 testdata/v1.31.0/core.v1.PodLogOptions.yaml delete mode 100644 testdata/v1.31.0/core.v1.PodPortForwardOptions.json delete mode 100644 testdata/v1.31.0/core.v1.PodPortForwardOptions.pb delete mode 100644 testdata/v1.31.0/core.v1.PodPortForwardOptions.yaml delete mode 100644 testdata/v1.31.0/core.v1.PodProxyOptions.json delete mode 100644 testdata/v1.31.0/core.v1.PodProxyOptions.pb delete mode 100644 testdata/v1.31.0/core.v1.PodProxyOptions.yaml delete mode 100644 testdata/v1.31.0/core.v1.PodStatusResult.after_roundtrip.pb delete mode 100644 testdata/v1.31.0/core.v1.PodStatusResult.json delete mode 100644 testdata/v1.31.0/core.v1.PodStatusResult.pb delete mode 100644 testdata/v1.31.0/core.v1.PodStatusResult.yaml delete mode 100644 testdata/v1.31.0/core.v1.PodTemplate.json delete mode 100644 testdata/v1.31.0/core.v1.PodTemplate.pb delete mode 100644 testdata/v1.31.0/core.v1.PodTemplate.yaml delete mode 100644 testdata/v1.31.0/core.v1.RangeAllocation.json delete mode 100644 testdata/v1.31.0/core.v1.RangeAllocation.pb delete mode 100644 testdata/v1.31.0/core.v1.RangeAllocation.yaml delete mode 100644 testdata/v1.31.0/core.v1.ReplicationController.json delete mode 100644 testdata/v1.31.0/core.v1.ReplicationController.pb delete mode 100644 testdata/v1.31.0/core.v1.ReplicationController.yaml delete mode 100644 testdata/v1.31.0/core.v1.ResourceQuota.json delete mode 100644 testdata/v1.31.0/core.v1.ResourceQuota.pb delete mode 100644 testdata/v1.31.0/core.v1.ResourceQuota.yaml delete mode 100644 testdata/v1.31.0/core.v1.Secret.json delete mode 100644 testdata/v1.31.0/core.v1.Secret.pb delete mode 100644 testdata/v1.31.0/core.v1.Secret.yaml delete mode 100644 testdata/v1.31.0/core.v1.SerializedReference.json delete mode 100644 testdata/v1.31.0/core.v1.SerializedReference.pb delete mode 100644 testdata/v1.31.0/core.v1.SerializedReference.yaml delete mode 100644 testdata/v1.31.0/core.v1.Service.json delete mode 100644 testdata/v1.31.0/core.v1.Service.pb delete mode 100644 testdata/v1.31.0/core.v1.Service.yaml delete mode 100644 testdata/v1.31.0/core.v1.ServiceAccount.json delete mode 100644 testdata/v1.31.0/core.v1.ServiceAccount.pb delete mode 100644 testdata/v1.31.0/core.v1.ServiceAccount.yaml delete mode 100644 testdata/v1.31.0/core.v1.ServiceProxyOptions.json delete mode 100644 testdata/v1.31.0/core.v1.ServiceProxyOptions.pb delete mode 100644 testdata/v1.31.0/core.v1.ServiceProxyOptions.yaml delete mode 100644 testdata/v1.31.0/core.v1.Status.json delete mode 100644 testdata/v1.31.0/core.v1.Status.pb delete mode 100644 testdata/v1.31.0/core.v1.Status.yaml delete mode 100644 testdata/v1.31.0/core.v1.UpdateOptions.json delete mode 100644 testdata/v1.31.0/core.v1.UpdateOptions.pb delete mode 100644 testdata/v1.31.0/core.v1.UpdateOptions.yaml delete mode 100644 testdata/v1.31.0/core.v1.WatchEvent.json delete mode 100644 testdata/v1.31.0/core.v1.WatchEvent.pb delete mode 100644 testdata/v1.31.0/core.v1.WatchEvent.yaml delete mode 100644 testdata/v1.31.0/discovery.k8s.io.v1.EndpointSlice.json delete mode 100644 testdata/v1.31.0/discovery.k8s.io.v1.EndpointSlice.pb delete mode 100644 testdata/v1.31.0/discovery.k8s.io.v1.EndpointSlice.yaml delete mode 100644 testdata/v1.31.0/discovery.k8s.io.v1beta1.EndpointSlice.json delete mode 100644 testdata/v1.31.0/discovery.k8s.io.v1beta1.EndpointSlice.pb delete mode 100644 testdata/v1.31.0/discovery.k8s.io.v1beta1.EndpointSlice.yaml delete mode 100644 testdata/v1.31.0/events.k8s.io.v1.Event.json delete mode 100644 testdata/v1.31.0/events.k8s.io.v1.Event.pb delete mode 100644 testdata/v1.31.0/events.k8s.io.v1.Event.yaml delete mode 100644 testdata/v1.31.0/events.k8s.io.v1beta1.Event.json delete mode 100644 testdata/v1.31.0/events.k8s.io.v1beta1.Event.pb delete mode 100644 testdata/v1.31.0/events.k8s.io.v1beta1.Event.yaml delete mode 100644 testdata/v1.31.0/extensions.v1beta1.DaemonSet.json delete mode 100644 testdata/v1.31.0/extensions.v1beta1.DaemonSet.pb delete mode 100644 testdata/v1.31.0/extensions.v1beta1.DaemonSet.yaml delete mode 100644 testdata/v1.31.0/extensions.v1beta1.Deployment.json delete mode 100644 testdata/v1.31.0/extensions.v1beta1.Deployment.pb delete mode 100644 testdata/v1.31.0/extensions.v1beta1.Deployment.yaml delete mode 100644 testdata/v1.31.0/extensions.v1beta1.DeploymentRollback.json delete mode 100644 testdata/v1.31.0/extensions.v1beta1.DeploymentRollback.pb delete mode 100644 testdata/v1.31.0/extensions.v1beta1.DeploymentRollback.yaml delete mode 100644 testdata/v1.31.0/extensions.v1beta1.Ingress.json delete mode 100644 testdata/v1.31.0/extensions.v1beta1.Ingress.pb delete mode 100644 testdata/v1.31.0/extensions.v1beta1.Ingress.yaml delete mode 100644 testdata/v1.31.0/extensions.v1beta1.NetworkPolicy.json delete mode 100644 testdata/v1.31.0/extensions.v1beta1.NetworkPolicy.pb delete mode 100644 testdata/v1.31.0/extensions.v1beta1.NetworkPolicy.yaml delete mode 100644 testdata/v1.31.0/extensions.v1beta1.ReplicaSet.json delete mode 100644 testdata/v1.31.0/extensions.v1beta1.ReplicaSet.pb delete mode 100644 testdata/v1.31.0/extensions.v1beta1.ReplicaSet.yaml delete mode 100644 testdata/v1.31.0/extensions.v1beta1.Scale.json delete mode 100644 testdata/v1.31.0/extensions.v1beta1.Scale.pb delete mode 100644 testdata/v1.31.0/extensions.v1beta1.Scale.yaml delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1.FlowSchema.json delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1.FlowSchema.pb delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1.FlowSchema.yaml delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1.PriorityLevelConfiguration.json delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1.PriorityLevelConfiguration.pb delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1.PriorityLevelConfiguration.yaml delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta1.FlowSchema.json delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta1.FlowSchema.pb delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta1.FlowSchema.yaml delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta1.PriorityLevelConfiguration.json delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta1.PriorityLevelConfiguration.pb delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta1.PriorityLevelConfiguration.yaml delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta2.FlowSchema.json delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta2.FlowSchema.pb delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta2.FlowSchema.yaml delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta2.PriorityLevelConfiguration.json delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta2.PriorityLevelConfiguration.pb delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta2.PriorityLevelConfiguration.yaml delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta3.FlowSchema.json delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta3.FlowSchema.pb delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta3.FlowSchema.yaml delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.json delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.pb delete mode 100644 testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.yaml delete mode 100644 testdata/v1.31.0/imagepolicy.k8s.io.v1alpha1.ImageReview.json delete mode 100644 testdata/v1.31.0/imagepolicy.k8s.io.v1alpha1.ImageReview.pb delete mode 100644 testdata/v1.31.0/imagepolicy.k8s.io.v1alpha1.ImageReview.yaml delete mode 100644 testdata/v1.31.0/internal.apiserver.k8s.io.v1alpha1.StorageVersion.json delete mode 100644 testdata/v1.31.0/internal.apiserver.k8s.io.v1alpha1.StorageVersion.pb delete mode 100644 testdata/v1.31.0/internal.apiserver.k8s.io.v1alpha1.StorageVersion.yaml delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1.Ingress.json delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1.Ingress.pb delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1.Ingress.yaml delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1.IngressClass.json delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1.IngressClass.pb delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1.IngressClass.yaml delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1.NetworkPolicy.json delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1.NetworkPolicy.pb delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1.NetworkPolicy.yaml delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1alpha1.IPAddress.json delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1alpha1.IPAddress.pb delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1alpha1.IPAddress.yaml delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1alpha1.ServiceCIDR.json delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1alpha1.ServiceCIDR.pb delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1alpha1.ServiceCIDR.yaml delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1beta1.IPAddress.json delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1beta1.IPAddress.pb delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1beta1.IPAddress.yaml delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1beta1.Ingress.json delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1beta1.Ingress.pb delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1beta1.Ingress.yaml delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1beta1.IngressClass.json delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1beta1.IngressClass.pb delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1beta1.IngressClass.yaml delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1beta1.ServiceCIDR.json delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1beta1.ServiceCIDR.pb delete mode 100644 testdata/v1.31.0/networking.k8s.io.v1beta1.ServiceCIDR.yaml delete mode 100644 testdata/v1.31.0/node.k8s.io.v1.RuntimeClass.json delete mode 100644 testdata/v1.31.0/node.k8s.io.v1.RuntimeClass.pb delete mode 100644 testdata/v1.31.0/node.k8s.io.v1.RuntimeClass.yaml delete mode 100644 testdata/v1.31.0/node.k8s.io.v1alpha1.RuntimeClass.json delete mode 100644 testdata/v1.31.0/node.k8s.io.v1alpha1.RuntimeClass.pb delete mode 100644 testdata/v1.31.0/node.k8s.io.v1alpha1.RuntimeClass.yaml delete mode 100644 testdata/v1.31.0/node.k8s.io.v1beta1.RuntimeClass.json delete mode 100644 testdata/v1.31.0/node.k8s.io.v1beta1.RuntimeClass.pb delete mode 100644 testdata/v1.31.0/node.k8s.io.v1beta1.RuntimeClass.yaml delete mode 100644 testdata/v1.31.0/policy.v1.Eviction.json delete mode 100644 testdata/v1.31.0/policy.v1.Eviction.pb delete mode 100644 testdata/v1.31.0/policy.v1.Eviction.yaml delete mode 100644 testdata/v1.31.0/policy.v1.PodDisruptionBudget.json delete mode 100644 testdata/v1.31.0/policy.v1.PodDisruptionBudget.pb delete mode 100644 testdata/v1.31.0/policy.v1.PodDisruptionBudget.yaml delete mode 100644 testdata/v1.31.0/policy.v1beta1.Eviction.json delete mode 100644 testdata/v1.31.0/policy.v1beta1.Eviction.pb delete mode 100644 testdata/v1.31.0/policy.v1beta1.Eviction.yaml delete mode 100644 testdata/v1.31.0/policy.v1beta1.PodDisruptionBudget.json delete mode 100644 testdata/v1.31.0/policy.v1beta1.PodDisruptionBudget.pb delete mode 100644 testdata/v1.31.0/policy.v1beta1.PodDisruptionBudget.yaml delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1.ClusterRole.json delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1.ClusterRole.pb delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1.ClusterRole.yaml delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.json delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.pb delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.yaml delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1.Role.json delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1.Role.pb delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1.Role.yaml delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1.RoleBinding.json delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1.RoleBinding.pb delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1.RoleBinding.yaml delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.ClusterRole.json delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.ClusterRole.pb delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.ClusterRole.yaml delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.json delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.pb delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.yaml delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.Role.json delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.Role.pb delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.Role.yaml delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.RoleBinding.json delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.RoleBinding.pb delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.RoleBinding.yaml delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.ClusterRole.json delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.ClusterRole.pb delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.ClusterRole.yaml delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.ClusterRoleBinding.json delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.ClusterRoleBinding.pb delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.ClusterRoleBinding.yaml delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.Role.json delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.Role.pb delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.Role.yaml delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.json delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.pb delete mode 100644 testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.yaml delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.after_roundtrip.json delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.after_roundtrip.pb delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.after_roundtrip.yaml delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.json delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.pb delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.yaml delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.PodSchedulingContext.json delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.PodSchedulingContext.pb delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.PodSchedulingContext.yaml delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaim.after_roundtrip.json delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaim.after_roundtrip.pb delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaim.after_roundtrip.yaml delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaim.json delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaim.pb delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaim.yaml delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.after_roundtrip.json delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.after_roundtrip.pb delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.after_roundtrip.yaml delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.json delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.pb delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.yaml delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceSlice.json delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceSlice.pb delete mode 100644 testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceSlice.yaml delete mode 100644 testdata/v1.31.0/scheduling.k8s.io.v1.PriorityClass.json delete mode 100644 testdata/v1.31.0/scheduling.k8s.io.v1.PriorityClass.pb delete mode 100644 testdata/v1.31.0/scheduling.k8s.io.v1.PriorityClass.yaml delete mode 100644 testdata/v1.31.0/scheduling.k8s.io.v1alpha1.PriorityClass.json delete mode 100644 testdata/v1.31.0/scheduling.k8s.io.v1alpha1.PriorityClass.pb delete mode 100644 testdata/v1.31.0/scheduling.k8s.io.v1alpha1.PriorityClass.yaml delete mode 100644 testdata/v1.31.0/scheduling.k8s.io.v1beta1.PriorityClass.json delete mode 100644 testdata/v1.31.0/scheduling.k8s.io.v1beta1.PriorityClass.pb delete mode 100644 testdata/v1.31.0/scheduling.k8s.io.v1beta1.PriorityClass.yaml delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1.CSIDriver.json delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1.CSIDriver.pb delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1.CSIDriver.yaml delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1.CSINode.json delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1.CSINode.pb delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1.CSINode.yaml delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1.CSIStorageCapacity.json delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1.CSIStorageCapacity.pb delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1.CSIStorageCapacity.yaml delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1.StorageClass.json delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1.StorageClass.pb delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1.StorageClass.yaml delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1.VolumeAttachment.json delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1.VolumeAttachment.pb delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1.VolumeAttachment.yaml delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.json delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.pb delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.yaml delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1alpha1.VolumeAttachment.json delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1alpha1.VolumeAttachment.pb delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1alpha1.VolumeAttachment.yaml delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1alpha1.VolumeAttributesClass.json delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1alpha1.VolumeAttributesClass.pb delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1alpha1.VolumeAttributesClass.yaml delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1beta1.CSIDriver.json delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1beta1.CSIDriver.pb delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1beta1.CSIDriver.yaml delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1beta1.CSINode.json delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1beta1.CSINode.pb delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1beta1.CSINode.yaml delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1beta1.CSIStorageCapacity.json delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1beta1.CSIStorageCapacity.pb delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1beta1.CSIStorageCapacity.yaml delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1beta1.StorageClass.json delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1beta1.StorageClass.pb delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1beta1.StorageClass.yaml delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1beta1.VolumeAttachment.json delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1beta1.VolumeAttachment.pb delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1beta1.VolumeAttachment.yaml delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1beta1.VolumeAttributesClass.json delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1beta1.VolumeAttributesClass.pb delete mode 100644 testdata/v1.31.0/storage.k8s.io.v1beta1.VolumeAttributesClass.yaml delete mode 100644 testdata/v1.31.0/storagemigration.k8s.io.v1alpha1.StorageVersionMigration.json delete mode 100644 testdata/v1.31.0/storagemigration.k8s.io.v1alpha1.StorageVersionMigration.pb delete mode 100644 testdata/v1.31.0/storagemigration.k8s.io.v1alpha1.StorageVersionMigration.yaml diff --git a/testdata/v1.31.0/admission.k8s.io.v1.AdmissionReview.json b/testdata/v1.31.0/admission.k8s.io.v1.AdmissionReview.json deleted file mode 100644 index c34bd5e439..0000000000 --- a/testdata/v1.31.0/admission.k8s.io.v1.AdmissionReview.json +++ /dev/null @@ -1,113 +0,0 @@ -{ - "kind": "AdmissionReview", - "apiVersion": "admission.k8s.io/v1", - "request": { - "uid": "uidValue", - "kind": { - "group": "groupValue", - "version": "versionValue", - "kind": "kindValue" - }, - "resource": { - "group": "groupValue", - "version": "versionValue", - "resource": "resourceValue" - }, - "subResource": "subResourceValue", - "requestKind": { - "group": "groupValue", - "version": "versionValue", - "kind": "kindValue" - }, - "requestResource": { - "group": "groupValue", - "version": "versionValue", - "resource": "resourceValue" - }, - "requestSubResource": "requestSubResourceValue", - "name": "nameValue", - "namespace": "namespaceValue", - "operation": "operationValue", - "userInfo": { - "username": "usernameValue", - "uid": "uidValue", - "groups": [ - "groupsValue" - ], - "extra": { - "extraKey": [ - "extraValue" - ] - } - }, - "object": { - "apiVersion": "example.com/v1", - "kind": "CustomType", - "spec": { - "replicas": 1 - }, - "status": { - "available": 1 - } - }, - "oldObject": { - "apiVersion": "example.com/v1", - "kind": "CustomType", - "spec": { - "replicas": 1 - }, - "status": { - "available": 1 - } - }, - "dryRun": true, - "options": { - "apiVersion": "example.com/v1", - "kind": "CustomType", - "spec": { - "replicas": 1 - }, - "status": { - "available": 1 - } - } - }, - "response": { - "uid": "uidValue", - "allowed": true, - "status": { - "metadata": { - "selfLink": "selfLinkValue", - "resourceVersion": "resourceVersionValue", - "continue": "continueValue", - "remainingItemCount": 4 - }, - "status": "statusValue", - "message": "messageValue", - "reason": "reasonValue", - "details": { - "name": "nameValue", - "group": "groupValue", - "kind": "kindValue", - "uid": "uidValue", - "causes": [ - { - "reason": "reasonValue", - "message": "messageValue", - "field": "fieldValue" - } - ], - "retryAfterSeconds": 5 - }, - "code": 6 - }, - "patch": "BA==", - "patchType": "patchTypeValue", - "auditAnnotations": { - "auditAnnotationsKey": "auditAnnotationsValue" - }, - "warnings": [ - "warningsValue" - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/admission.k8s.io.v1.AdmissionReview.pb b/testdata/v1.31.0/admission.k8s.io.v1.AdmissionReview.pb deleted file mode 100644 index 73532668dba3d212d13240cff17c6be6e9f3e483..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 973 zcmchW%T60H6o!*3wBTe?GwBYDHer9c!)_NUv}7wYS5lfK@$6^Aera6+$Mk?R&& zc4BB>~d7?yr{BrGw2%9$KO7F$I(8rGHGisWT<4!V_z zn$Lr?uF_z*y=}Ssog@yyEE4Eq(zG4s#MtCLS%y<<_zyUv9YTT~Jo{rZx?o(3!?+2{ z7@YD_7tqgD>92%suxc%@?>V%p{B@?mYp5Y-*#$G83z2hV+2*BJEw|3wzT%9Ff{zNQ z9GAmq>2lN@JxiazPlLcb9fI>U1OFVL{rP|ediCNCzSU;>ze%=8f>0bE2ssTeNZ&4a zs>7J%N?IXZ1nEPIw&UZ3oV4SqLOz)z*fzj%PI2!yx#N%4V6WlLK9PC~y;m(I#{!D@ z4?Zsq7C?S`$(pTRS96>HsUQl23^x2fbYo$6q*NXr4>neezI!N!=qx$mMhZEJRHqHr FxB*=FPSXGY diff --git a/testdata/v1.31.0/admission.k8s.io.v1.AdmissionReview.yaml b/testdata/v1.31.0/admission.k8s.io.v1.AdmissionReview.yaml deleted file mode 100644 index c278ba71e7..0000000000 --- a/testdata/v1.31.0/admission.k8s.io.v1.AdmissionReview.yaml +++ /dev/null @@ -1,84 +0,0 @@ -apiVersion: admission.k8s.io/v1 -kind: AdmissionReview -request: - dryRun: true - kind: - group: groupValue - kind: kindValue - version: versionValue - name: nameValue - namespace: namespaceValue - object: - apiVersion: example.com/v1 - kind: CustomType - spec: - replicas: 1 - status: - available: 1 - oldObject: - apiVersion: example.com/v1 - kind: CustomType - spec: - replicas: 1 - status: - available: 1 - operation: operationValue - options: - apiVersion: example.com/v1 - kind: CustomType - spec: - replicas: 1 - status: - available: 1 - requestKind: - group: groupValue - kind: kindValue - version: versionValue - requestResource: - group: groupValue - resource: resourceValue - version: versionValue - requestSubResource: requestSubResourceValue - resource: - group: groupValue - resource: resourceValue - version: versionValue - subResource: subResourceValue - uid: uidValue - userInfo: - extra: - extraKey: - - extraValue - groups: - - groupsValue - uid: uidValue - username: usernameValue -response: - allowed: true - auditAnnotations: - auditAnnotationsKey: auditAnnotationsValue - patch: BA== - patchType: patchTypeValue - status: - code: 6 - details: - causes: - - field: fieldValue - message: messageValue - reason: reasonValue - group: groupValue - kind: kindValue - name: nameValue - retryAfterSeconds: 5 - uid: uidValue - message: messageValue - metadata: - continue: continueValue - remainingItemCount: 4 - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - reason: reasonValue - status: statusValue - uid: uidValue - warnings: - - warningsValue diff --git a/testdata/v1.31.0/admission.k8s.io.v1beta1.AdmissionReview.json b/testdata/v1.31.0/admission.k8s.io.v1beta1.AdmissionReview.json deleted file mode 100644 index ee068e50c6..0000000000 --- a/testdata/v1.31.0/admission.k8s.io.v1beta1.AdmissionReview.json +++ /dev/null @@ -1,113 +0,0 @@ -{ - "kind": "AdmissionReview", - "apiVersion": "admission.k8s.io/v1beta1", - "request": { - "uid": "uidValue", - "kind": { - "group": "groupValue", - "version": "versionValue", - "kind": "kindValue" - }, - "resource": { - "group": "groupValue", - "version": "versionValue", - "resource": "resourceValue" - }, - "subResource": "subResourceValue", - "requestKind": { - "group": "groupValue", - "version": "versionValue", - "kind": "kindValue" - }, - "requestResource": { - "group": "groupValue", - "version": "versionValue", - "resource": "resourceValue" - }, - "requestSubResource": "requestSubResourceValue", - "name": "nameValue", - "namespace": "namespaceValue", - "operation": "operationValue", - "userInfo": { - "username": "usernameValue", - "uid": "uidValue", - "groups": [ - "groupsValue" - ], - "extra": { - "extraKey": [ - "extraValue" - ] - } - }, - "object": { - "apiVersion": "example.com/v1", - "kind": "CustomType", - "spec": { - "replicas": 1 - }, - "status": { - "available": 1 - } - }, - "oldObject": { - "apiVersion": "example.com/v1", - "kind": "CustomType", - "spec": { - "replicas": 1 - }, - "status": { - "available": 1 - } - }, - "dryRun": true, - "options": { - "apiVersion": "example.com/v1", - "kind": "CustomType", - "spec": { - "replicas": 1 - }, - "status": { - "available": 1 - } - } - }, - "response": { - "uid": "uidValue", - "allowed": true, - "status": { - "metadata": { - "selfLink": "selfLinkValue", - "resourceVersion": "resourceVersionValue", - "continue": "continueValue", - "remainingItemCount": 4 - }, - "status": "statusValue", - "message": "messageValue", - "reason": "reasonValue", - "details": { - "name": "nameValue", - "group": "groupValue", - "kind": "kindValue", - "uid": "uidValue", - "causes": [ - { - "reason": "reasonValue", - "message": "messageValue", - "field": "fieldValue" - } - ], - "retryAfterSeconds": 5 - }, - "code": 6 - }, - "patch": "BA==", - "patchType": "patchTypeValue", - "auditAnnotations": { - "auditAnnotationsKey": "auditAnnotationsValue" - }, - "warnings": [ - "warningsValue" - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/admission.k8s.io.v1beta1.AdmissionReview.pb b/testdata/v1.31.0/admission.k8s.io.v1beta1.AdmissionReview.pb deleted file mode 100644 index a5b36e718dd7cc14a4350cabe61aa15eebc66bf0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 978 zcmchW%We}f6owNNpmj2#GDTFgLY5E^s+44bs#&#V2dn}rY|l(igUO6-d`WNWi}Y3c zW~}P5({$(pb=BSRfA03@`L1b^_hbvE6*q=UF`Vz3A(uOgQH~Zy^x6K6XMzik$Mo_k z`P(6Dj!zGvbVy$lGSkwjc2!f1i)|Q}PnybLT|gC` z<9=-#1b1Q7$r&rF@23jAW)v1IJ7*eI$qO(n8(nzSf_2{Z6&Juu z$V;pp7n29+^0S>kNT1*LgFxROg0q(z|2Q=E+Z`6@<)d5pHrnY`n|vgR!Sd)U7xVCf zbaTa16UL;F!gApvNUu7y8y_d+q&-iSf!Pwlu0}9RiU&W)Eq}BDdjoIwhBQ;?Kh;ul z#IcP3;O*n_3dj#nSi3XmE3n0{8lo`Bc$+*2H|2I;2mVpYK-q&x4z&iPp$CPE2sKJAqR`vy=Iv(O$;>jd8;#-@ z@LPBj{0P1EDD*p&9z6REbatlMEIoUB^M7yN{NDdfHr5_`itf_soN3LZP>?cRC|a0! zI~(h5CLb;y;lZo2Fq%l;Lo|~zdnQG~($dx8AJ@=%8+8Sp!#m1Lz&BG6V3P29C6Qj0 z)j5q_Nw}qfCle+zdt>OAY-*#?Ed^SZ%G80Xh^#ukzVG{I-+!NU0`I^?KmYtP(IGm% zgSwnX!1YU5;!PLY8&QaQR0vsNOJUPN<7{g_JVxD&3HLBr^M^IfuupT=1lehgTdJQh zK{@+u0BxUdtq9$iQ$bTuR=_=(SM#s%$<;QYnc?E>??&K_Of%q9{dSobtSvfS(7R-5>x;`T`1pneVK@bMF4RnA^0S>~5Y zupZkfq_=``=Md@Gw6QHioKVI~1&5Necxkoa1epcQX%WvR^?riJ*;e8E$j`vtz*`PW zIt$6>qMF*hHVQPG!t*47xNwU35QF;D9>Ida$ICUj{DFI`L3DIm0TT-u+qEI S8Z@`mhfldNuKvfw3%!3N#WuD8 diff --git a/testdata/v1.31.0/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.yaml b/testdata/v1.31.0/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.yaml deleted file mode 100644 index 34b84f2179..0000000000 --- a/testdata/v1.31.0/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.yaml +++ /dev/null @@ -1,80 +0,0 @@ -apiVersion: admissionregistration.k8s.io/v1 -kind: MutatingWebhookConfiguration -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -webhooks: -- admissionReviewVersions: - - admissionReviewVersionsValue - clientConfig: - caBundle: Ag== - service: - name: nameValue - namespace: namespaceValue - path: pathValue - port: 4 - url: urlValue - failurePolicy: failurePolicyValue - matchConditions: - - expression: expressionValue - name: nameValue - matchPolicy: matchPolicyValue - name: nameValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - objectSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - reinvocationPolicy: reinvocationPolicyValue - rules: - - apiGroups: - - apiGroupsValue - apiVersions: - - apiVersionsValue - operations: - - operationsValue - resources: - - resourcesValue - scope: scopeValue - sideEffects: sideEffectsValue - timeoutSeconds: 7 diff --git a/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.json b/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.json deleted file mode 100644 index f5e514c906..0000000000 --- a/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.json +++ /dev/null @@ -1,171 +0,0 @@ -{ - "kind": "ValidatingAdmissionPolicy", - "apiVersion": "admissionregistration.k8s.io/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "paramKind": { - "apiVersion": "apiVersionValue", - "kind": "kindValue" - }, - "matchConstraints": { - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "objectSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "resourceRules": [ - { - "resourceNames": [ - "resourceNamesValue" - ], - "operations": [ - "operationsValue" - ], - "apiGroups": [ - "apiGroupsValue" - ], - "apiVersions": [ - "apiVersionsValue" - ], - "resources": [ - "resourcesValue" - ], - "scope": "scopeValue" - } - ], - "excludeResourceRules": [ - { - "resourceNames": [ - "resourceNamesValue" - ], - "operations": [ - "operationsValue" - ], - "apiGroups": [ - "apiGroupsValue" - ], - "apiVersions": [ - "apiVersionsValue" - ], - "resources": [ - "resourcesValue" - ], - "scope": "scopeValue" - } - ], - "matchPolicy": "matchPolicyValue" - }, - "validations": [ - { - "expression": "expressionValue", - "message": "messageValue", - "reason": "reasonValue", - "messageExpression": "messageExpressionValue" - } - ], - "failurePolicy": "failurePolicyValue", - "auditAnnotations": [ - { - "key": "keyValue", - "valueExpression": "valueExpressionValue" - } - ], - "matchConditions": [ - { - "name": "nameValue", - "expression": "expressionValue" - } - ], - "variables": [ - { - "name": "nameValue", - "expression": "expressionValue" - } - ] - }, - "status": { - "observedGeneration": 1, - "typeChecking": { - "expressionWarnings": [ - { - "fieldRef": "fieldRefValue", - "warning": "warningValue" - } - ] - }, - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "observedGeneration": 3, - "lastTransitionTime": "2004-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.pb b/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.pb deleted file mode 100644 index 0c5cc4d84d517415479b3370959d0c1d93a13440..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1134 zcmcgr&2G~`5O$hKIFmoKs;XiY75Ts+hXRq1q6igHfsi0V1tAXHHu1(RcGlLeT}Ue= z&b$Q&PCNo{fYb-zhB$EM4Pd-$J8lk~5VzU+`R4m(XTq_v;129lf60~Nv5+j_DwQ-v z`yd>v10LTvxkawLpb_`cD}sAv>Tw+L`HFn9;rkY}1zj>s${4vEFu@RkJtBmW~zohSO!g#3R$NBH3V~r4uMZS8zO3Y*?E!aAHcjTyS zR!u?=^;-+}U=xU}1(5emm;%aP(scf6T1~~Ny$!qTV25mF?4Ds78{%%~B=2Qpk$;Nj z20%(d`C1e`p2DD-RpC0spG){d8D~l1an`?JJZ`^)GH(ym9AUI1?|(I#n8}(W(5>D3 zFko*J7rDHn_&_3(K+wL1G1s=S4-Gz2qZYk*~ysXSjf48~b=V4vp=%RSbv;F|h CxQ%fD diff --git a/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.yaml b/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.yaml deleted file mode 100644 index a7fd3ece57..0000000000 --- a/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.yaml +++ /dev/null @@ -1,108 +0,0 @@ -apiVersion: admissionregistration.k8s.io/v1 -kind: ValidatingAdmissionPolicy -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - auditAnnotations: - - key: keyValue - valueExpression: valueExpressionValue - failurePolicy: failurePolicyValue - matchConditions: - - expression: expressionValue - name: nameValue - matchConstraints: - excludeResourceRules: - - apiGroups: - - apiGroupsValue - apiVersions: - - apiVersionsValue - operations: - - operationsValue - resourceNames: - - resourceNamesValue - resources: - - resourcesValue - scope: scopeValue - matchPolicy: matchPolicyValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - objectSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - resourceRules: - - apiGroups: - - apiGroupsValue - apiVersions: - - apiVersionsValue - operations: - - operationsValue - resourceNames: - - resourceNamesValue - resources: - - resourcesValue - scope: scopeValue - paramKind: - apiVersion: apiVersionValue - kind: kindValue - validations: - - expression: expressionValue - message: messageValue - messageExpression: messageExpressionValue - reason: reasonValue - variables: - - expression: expressionValue - name: nameValue -status: - conditions: - - lastTransitionTime: "2004-01-01T01:01:01Z" - message: messageValue - observedGeneration: 3 - reason: reasonValue - status: statusValue - type: typeValue - observedGeneration: 1 - typeChecking: - expressionWarnings: - - fieldRef: fieldRefValue - warning: warningValue diff --git a/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.json b/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.json deleted file mode 100644 index f49ef8a364..0000000000 --- a/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.json +++ /dev/null @@ -1,142 +0,0 @@ -{ - "kind": "ValidatingAdmissionPolicyBinding", - "apiVersion": "admissionregistration.k8s.io/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "policyName": "policyNameValue", - "paramRef": { - "name": "nameValue", - "namespace": "namespaceValue", - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "parameterNotFoundAction": "parameterNotFoundActionValue" - }, - "matchResources": { - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "objectSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "resourceRules": [ - { - "resourceNames": [ - "resourceNamesValue" - ], - "operations": [ - "operationsValue" - ], - "apiGroups": [ - "apiGroupsValue" - ], - "apiVersions": [ - "apiVersionsValue" - ], - "resources": [ - "resourcesValue" - ], - "scope": "scopeValue" - } - ], - "excludeResourceRules": [ - { - "resourceNames": [ - "resourceNamesValue" - ], - "operations": [ - "operationsValue" - ], - "apiGroups": [ - "apiGroupsValue" - ], - "apiVersions": [ - "apiVersionsValue" - ], - "resources": [ - "resourcesValue" - ], - "scope": "scopeValue" - } - ], - "matchPolicy": "matchPolicyValue" - }, - "validationActions": [ - "validationActionsValue" - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.pb b/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.pb deleted file mode 100644 index fde6678f201f8cad229abba8f02acb33af71eb3d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1004 zcmcgrO-md>5S`TpcgwgtHXPTBdj8L z6Z{QcJbTY2|3L6RgdB4AADEi%o!P~+8L?%2K^|%NTCHHgidj^_<4jIFl@w*OUP># zr#hv9E%6sLOV0XS#OB6YBj=%sI!lUanJcVgs$gZ%?p&|Ycz*c%tL{2S7(Ko`VRQoD zSD=~D0Za53HX`#jG&cr5w5Sj=GjhzaJC&Q7^KEFxsKF%Oguh?0S!>gjPZQa!b!)19 z#szwEi3H8nyV?Lg45^?IQwAU{nHKs>`rg|%K5F>${5tD89c;#uP=6bx)|s6;%v@df zT%8XpCyc2->(EY(@0F|Mwl;118;`v{pb0~o1wZ>kqC6TYtt`;?hcJbMy{7}g} t9V71K30TBym91>qe@{nGp6hK&Ocv*VPgOQ diff --git a/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.yaml b/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.yaml deleted file mode 100644 index 9cd5310554..0000000000 --- a/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicyBinding.yaml +++ /dev/null @@ -1,92 +0,0 @@ -apiVersion: admissionregistration.k8s.io/v1 -kind: ValidatingAdmissionPolicyBinding -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - matchResources: - excludeResourceRules: - - apiGroups: - - apiGroupsValue - apiVersions: - - apiVersionsValue - operations: - - operationsValue - resourceNames: - - resourceNamesValue - resources: - - resourcesValue - scope: scopeValue - matchPolicy: matchPolicyValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - objectSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - resourceRules: - - apiGroups: - - apiGroupsValue - apiVersions: - - apiVersionsValue - operations: - - operationsValue - resourceNames: - - resourceNamesValue - resources: - - resourcesValue - scope: scopeValue - paramRef: - name: nameValue - namespace: namespaceValue - parameterNotFoundAction: parameterNotFoundActionValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - policyName: policyNameValue - validationActions: - - validationActionsValue diff --git a/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.json b/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.json deleted file mode 100644 index a61187e449..0000000000 --- a/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.json +++ /dev/null @@ -1,119 +0,0 @@ -{ - "kind": "ValidatingWebhookConfiguration", - "apiVersion": "admissionregistration.k8s.io/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "webhooks": [ - { - "name": "nameValue", - "clientConfig": { - "url": "urlValue", - "service": { - "namespace": "namespaceValue", - "name": "nameValue", - "path": "pathValue", - "port": 4 - }, - "caBundle": "Ag==" - }, - "rules": [ - { - "operations": [ - "operationsValue" - ], - "apiGroups": [ - "apiGroupsValue" - ], - "apiVersions": [ - "apiVersionsValue" - ], - "resources": [ - "resourcesValue" - ], - "scope": "scopeValue" - } - ], - "failurePolicy": "failurePolicyValue", - "matchPolicy": "matchPolicyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "objectSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "sideEffects": "sideEffectsValue", - "timeoutSeconds": 7, - "admissionReviewVersions": [ - "admissionReviewVersionsValue" - ], - "matchConditions": [ - { - "name": "nameValue", - "expression": "expressionValue" - } - ] - } - ] -} \ No newline at end of file diff --git a/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.pb b/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.pb deleted file mode 100644 index 6ece9204a7d5a2145aa69ba081ccf17f5471ecac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 861 zcmb_a&1%~~5SAU2%A3YkmL9?q(xO8NKBS2u#N<$DN+~3!q@lEs+e#YA8_Bz3S90o> zzCbT|h8{~Fp>I&gJCq)B&Ko4_-B=bm_crs*-#6b(I#3RJg`U!A%#>n+OGub1BrUYP zoetDC6E7yac=IF8Sfo*&e1c#kMEY9rm?fpn#FxwHZxgjS9fQs+0k0*%K?mX893q`r zROK|ZDgLU0EFLnRnu?xVvdCEdClZt>rOpF6<7CjmqeIud`f>fc@DgqyMDCeRu%b2iN^G(kA9%`qI+rebP->=y8x-@5XB0G&iLv~}v zwIW|MLDT1ZBS4SGl+y&H0dPm;v;F7v$-_3j-r?WX?ULv8bu-8!^-$KBx{Yb+|^Gz0hj@%S%1zxqZ zgq4u2OlDi#X?;(z2;RgogoQ=)Lu^!UdkPZ<7x!nf@gqB{#_06FGCJF+AEOJObFEMH IuEg=3JDxW!O8@`> diff --git a/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.yaml b/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.yaml deleted file mode 100644 index 58da831917..0000000000 --- a/testdata/v1.31.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.yaml +++ /dev/null @@ -1,79 +0,0 @@ -apiVersion: admissionregistration.k8s.io/v1 -kind: ValidatingWebhookConfiguration -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -webhooks: -- admissionReviewVersions: - - admissionReviewVersionsValue - clientConfig: - caBundle: Ag== - service: - name: nameValue - namespace: namespaceValue - path: pathValue - port: 4 - url: urlValue - failurePolicy: failurePolicyValue - matchConditions: - - expression: expressionValue - name: nameValue - matchPolicy: matchPolicyValue - name: nameValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - objectSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - rules: - - apiGroups: - - apiGroupsValue - apiVersions: - - apiVersionsValue - operations: - - operationsValue - resources: - - resourcesValue - scope: scopeValue - sideEffects: sideEffectsValue - timeoutSeconds: 7 diff --git a/testdata/v1.31.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.json b/testdata/v1.31.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.json deleted file mode 100644 index d816089654..0000000000 --- a/testdata/v1.31.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.json +++ /dev/null @@ -1,171 +0,0 @@ -{ - "kind": "ValidatingAdmissionPolicy", - "apiVersion": "admissionregistration.k8s.io/v1alpha1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "paramKind": { - "apiVersion": "apiVersionValue", - "kind": "kindValue" - }, - "matchConstraints": { - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "objectSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "resourceRules": [ - { - "resourceNames": [ - "resourceNamesValue" - ], - "operations": [ - "operationsValue" - ], - "apiGroups": [ - "apiGroupsValue" - ], - "apiVersions": [ - "apiVersionsValue" - ], - "resources": [ - "resourcesValue" - ], - "scope": "scopeValue" - } - ], - "excludeResourceRules": [ - { - "resourceNames": [ - "resourceNamesValue" - ], - "operations": [ - "operationsValue" - ], - "apiGroups": [ - "apiGroupsValue" - ], - "apiVersions": [ - "apiVersionsValue" - ], - "resources": [ - "resourcesValue" - ], - "scope": "scopeValue" - } - ], - "matchPolicy": "matchPolicyValue" - }, - "validations": [ - { - "expression": "expressionValue", - "message": "messageValue", - "reason": "reasonValue", - "messageExpression": "messageExpressionValue" - } - ], - "failurePolicy": "failurePolicyValue", - "auditAnnotations": [ - { - "key": "keyValue", - "valueExpression": "valueExpressionValue" - } - ], - "matchConditions": [ - { - "name": "nameValue", - "expression": "expressionValue" - } - ], - "variables": [ - { - "name": "nameValue", - "expression": "expressionValue" - } - ] - }, - "status": { - "observedGeneration": 1, - "typeChecking": { - "expressionWarnings": [ - { - "fieldRef": "fieldRefValue", - "warning": "warningValue" - } - ] - }, - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "observedGeneration": 3, - "lastTransitionTime": "2004-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.pb b/testdata/v1.31.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.pb deleted file mode 100644 index cd92e73bd3900bfcce8f32afdadbf54646501873..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1140 zcmcgrPm9w)6i>GW)7O7-SY!<=N#C^<(;9l8q6i0lqCZBBhz5{JRR}70XMlJ?SFvMX`%8=X7 zvnrtrQ{wd$i*_w2WsXOK#^r;YWs@3SUQ}cDr$!%zdT$sV`hQC*_84hT|>qKrf#tk`G za)HZug9J6shsGSbD=KKfqz;gNoaFjT`tCN2hZ=sI{cbwe2*Ft7tLN*)Y-ZAeowx6% zj>_iMCiGIjwO}8%fyhPxdEbN?pzIY*7ss<|D^ATf>~4S^vbC{$hG}ewyPeZ~mXSsN zDViGqDFx+cQOtM>gKAer=nlSI!XL^wONxlIc?A=3`z4g|Jx~jT(UQFXHE3csYd(P< z?cRq0dz~P+>T*dJr7FA(Q_zu&s^X} zZ5ormW?kQIkgITo^z<=4V@t!f`-)0|AKrL(p`DgjN;(RER%W)p*WBFmu&!`)UcBX5 Fe*o4rkF)>) diff --git a/testdata/v1.31.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.yaml b/testdata/v1.31.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.yaml deleted file mode 100644 index 8ca6b38bc5..0000000000 --- a/testdata/v1.31.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.yaml +++ /dev/null @@ -1,108 +0,0 @@ -apiVersion: admissionregistration.k8s.io/v1alpha1 -kind: ValidatingAdmissionPolicy -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - auditAnnotations: - - key: keyValue - valueExpression: valueExpressionValue - failurePolicy: failurePolicyValue - matchConditions: - - expression: expressionValue - name: nameValue - matchConstraints: - excludeResourceRules: - - apiGroups: - - apiGroupsValue - apiVersions: - - apiVersionsValue - operations: - - operationsValue - resourceNames: - - resourceNamesValue - resources: - - resourcesValue - scope: scopeValue - matchPolicy: matchPolicyValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - objectSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - resourceRules: - - apiGroups: - - apiGroupsValue - apiVersions: - - apiVersionsValue - operations: - - operationsValue - resourceNames: - - resourceNamesValue - resources: - - resourcesValue - scope: scopeValue - paramKind: - apiVersion: apiVersionValue - kind: kindValue - validations: - - expression: expressionValue - message: messageValue - messageExpression: messageExpressionValue - reason: reasonValue - variables: - - expression: expressionValue - name: nameValue -status: - conditions: - - lastTransitionTime: "2004-01-01T01:01:01Z" - message: messageValue - observedGeneration: 3 - reason: reasonValue - status: statusValue - type: typeValue - observedGeneration: 1 - typeChecking: - expressionWarnings: - - fieldRef: fieldRefValue - warning: warningValue diff --git a/testdata/v1.31.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicyBinding.json b/testdata/v1.31.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicyBinding.json deleted file mode 100644 index 65c73c0394..0000000000 --- a/testdata/v1.31.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicyBinding.json +++ /dev/null @@ -1,142 +0,0 @@ -{ - "kind": "ValidatingAdmissionPolicyBinding", - "apiVersion": "admissionregistration.k8s.io/v1alpha1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "policyName": "policyNameValue", - "paramRef": { - "name": "nameValue", - "namespace": "namespaceValue", - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "parameterNotFoundAction": "parameterNotFoundActionValue" - }, - "matchResources": { - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "objectSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "resourceRules": [ - { - "resourceNames": [ - "resourceNamesValue" - ], - "operations": [ - "operationsValue" - ], - "apiGroups": [ - "apiGroupsValue" - ], - "apiVersions": [ - "apiVersionsValue" - ], - "resources": [ - "resourcesValue" - ], - "scope": "scopeValue" - } - ], - "excludeResourceRules": [ - { - "resourceNames": [ - "resourceNamesValue" - ], - "operations": [ - "operationsValue" - ], - "apiGroups": [ - "apiGroupsValue" - ], - "apiVersions": [ - "apiVersionsValue" - ], - "resources": [ - "resourcesValue" - ], - "scope": "scopeValue" - } - ], - "matchPolicy": "matchPolicyValue" - }, - "validationActions": [ - "validationActionsValue" - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicyBinding.pb b/testdata/v1.31.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicyBinding.pb deleted file mode 100644 index 222018318bd57156b631af07f48a533cbbbd373e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1010 zcmcgrKT8}z6yMVW@1AyNfNFsdKtT)=y~0W6X(UziK#?8IQ(&E@F(5Zwv5y4%&i_7}geytRze@9LEl- zP|zu}M$yQXgv*9yX9F%$+p*Cqcx3g5i`u_L} ztwT6{1?`LuS!TYlFmVpY4zh?y4%G&vp$89D5o(lLM4`9Y&D+hmlbK~^H<}jz z0sjkcf`5WHk3#>4(t~IJ1D%~|HcQXm-miJ@^S*DgvG&k2bdOHwOlu~Ef|Th((Zbl< z*;sEg`EaolK|y!$;8j_egh<~*G?OxWDn-K5(iP)x*U)(zbp@TnJIYJIH&YN`lJI&J zBE2fBa~ivna7zPECQM}Z#n3O=)LNrk3bZVhsRLDE+35KCzVDxX{r#g8cn8M%{^ysm z4$<)))a5h+u3y3uZ#vVyh(gq(LdXhR3Y!iZzODK27F51Gmr<>R74_#vQ{r9p0A0}(uQwpwoE9_7a<_w9ZQ_@TTbH~+{Tj~U<0nR{oV`%8 z%r7IsdTkdWy%mh}L!@KV#Ey{f~(kdj9}|$~cVx diff --git a/testdata/v1.31.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.yaml b/testdata/v1.31.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.yaml deleted file mode 100644 index 14fea5b332..0000000000 --- a/testdata/v1.31.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.yaml +++ /dev/null @@ -1,80 +0,0 @@ -apiVersion: admissionregistration.k8s.io/v1beta1 -kind: MutatingWebhookConfiguration -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -webhooks: -- admissionReviewVersions: - - admissionReviewVersionsValue - clientConfig: - caBundle: Ag== - service: - name: nameValue - namespace: namespaceValue - path: pathValue - port: 4 - url: urlValue - failurePolicy: failurePolicyValue - matchConditions: - - expression: expressionValue - name: nameValue - matchPolicy: matchPolicyValue - name: nameValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - objectSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - reinvocationPolicy: reinvocationPolicyValue - rules: - - apiGroups: - - apiGroupsValue - apiVersions: - - apiVersionsValue - operations: - - operationsValue - resources: - - resourcesValue - scope: scopeValue - sideEffects: sideEffectsValue - timeoutSeconds: 7 diff --git a/testdata/v1.31.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.json b/testdata/v1.31.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.json deleted file mode 100644 index 0106a1a27f..0000000000 --- a/testdata/v1.31.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.json +++ /dev/null @@ -1,171 +0,0 @@ -{ - "kind": "ValidatingAdmissionPolicy", - "apiVersion": "admissionregistration.k8s.io/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "paramKind": { - "apiVersion": "apiVersionValue", - "kind": "kindValue" - }, - "matchConstraints": { - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "objectSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "resourceRules": [ - { - "resourceNames": [ - "resourceNamesValue" - ], - "operations": [ - "operationsValue" - ], - "apiGroups": [ - "apiGroupsValue" - ], - "apiVersions": [ - "apiVersionsValue" - ], - "resources": [ - "resourcesValue" - ], - "scope": "scopeValue" - } - ], - "excludeResourceRules": [ - { - "resourceNames": [ - "resourceNamesValue" - ], - "operations": [ - "operationsValue" - ], - "apiGroups": [ - "apiGroupsValue" - ], - "apiVersions": [ - "apiVersionsValue" - ], - "resources": [ - "resourcesValue" - ], - "scope": "scopeValue" - } - ], - "matchPolicy": "matchPolicyValue" - }, - "validations": [ - { - "expression": "expressionValue", - "message": "messageValue", - "reason": "reasonValue", - "messageExpression": "messageExpressionValue" - } - ], - "failurePolicy": "failurePolicyValue", - "auditAnnotations": [ - { - "key": "keyValue", - "valueExpression": "valueExpressionValue" - } - ], - "matchConditions": [ - { - "name": "nameValue", - "expression": "expressionValue" - } - ], - "variables": [ - { - "name": "nameValue", - "expression": "expressionValue" - } - ] - }, - "status": { - "observedGeneration": 1, - "typeChecking": { - "expressionWarnings": [ - { - "fieldRef": "fieldRefValue", - "warning": "warningValue" - } - ] - }, - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "observedGeneration": 3, - "lastTransitionTime": "2004-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.pb b/testdata/v1.31.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.pb deleted file mode 100644 index 68fc6c6f9b7a70289ec2ab51fa3e02bc6979313e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1139 zcmcgr&2G~`5O$hKIFmoKs!*|tKo;VVL!pt7q8vc2Ku8dwf)EF8>v$5jcGlLe-8LX3 z&b$Q&PCNo{fYb-zhB$EM4Pd=%J8lk~5V!f;Z@zD4HXKU}4&WvYmP|?(bAbycQ$bT@ z?}cNz$Ku;3`#z?0pIm)OBNnI>UmTS6M{&evEAq*P?_1F3bcw1cLvne692E>cEkkZU z&&q_(Oo`W%7|o}Qhx*0P&RC$W(Y8PtXF}DX$T{ig_|lHkQ@`*%=u^()REyDRr{?RLARaSp3?B+{CCr_MhXn0K)zTdW-^l&Y`uMV z=*Y~kCZUJ=tp&TV2}ITc$onQtLCIdyboP2$O~tAChTSc&LtGiVXPCx@xZ63&dl^~e zpQ5=7Af=%EEQ%h_U{KAf2;EbgOV}e3XGsxp)>|+Uw_idT-vc>QFj|uLzZy-!DJFS98Cfa|ln3jdYI;Ki$2JNj4TCMAg+doa$`H0cw z-CvBx@Z}}6QyQ>TAF~-*x1qTa_|Tz3$lPc$$L>;YYQ7ynJ3$R5@fQ63n$1p^W_+2* z+eWXUx~E*AC*P5vx%#USz{Z3M8Z%`8(vexIzoPFwZsVhdo9p{k*V)HrERFQ1S!SK- zH(}++&w;CppmxHTdeww(W_+(*CFhN0+aG!C4FOG<&^-J)tUYp=@q3~=Ko^%{}(r#W1q;j)#&q^XE(5)9Whu-0{ y$@r0yMK(v=#S^fI*Qr|B+y@ zzCbT|h8#;Dp>I&gJCq)J?i)1g-B=bm_crs*-#6b(I#3RJjkahsW=b)^B_vE0k`~(D zP6uk6i5HXI01CQ`H$TvfMLNWja|lL4q^|^zSyI|`eEkUhYN9r$W6+r;;I#xe=pekC zL!>i{s+@*4#a~sB#Y4tZQ_*uv78$GmM1m5f)OjFh#0)xkeCWEjH-CP#Jm*+j-~ay9 z)(N^;N9~LTkg2yY#mm+-6@iaBlygy-jZE09`6lOb54BUq?O?Lt?^kSkU7E8xk)6h% zA-gf-T9Hqhpy~6q5ulYZH;=?xkE>2um$TVAUz_wY=rr^F?2+Ou*g0{j_O*<>564MT)NR1@a?o);vrxM`zM4B)sK21B0W_# zS2-3e;*y8CAdD*1S#B2!lgIbxd{sM=)zim|tU7SH0Yx9V*cZomY_24w`r+DOAWB(? zLODdWtC_drTQJ7i zYyx=kX%Z20Y%Ajw@`8C7x{>vrLo7$>L53{iMwV+3>XjNQzk&G(v_$67$;Mp b?Zbb$3u;-6W@q$RMqj!fP%IKTmS$@|c#reJ diff --git a/testdata/v1.31.0/apidiscovery.k8s.io.v2.APIGroupDiscovery.yaml b/testdata/v1.31.0/apidiscovery.k8s.io.v2.APIGroupDiscovery.yaml deleted file mode 100644 index d244a5af91..0000000000 --- a/testdata/v1.31.0/apidiscovery.k8s.io.v2.APIGroupDiscovery.yaml +++ /dev/null @@ -1,63 +0,0 @@ -apiVersion: apidiscovery.k8s.io/v2 -kind: APIGroupDiscovery -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -versions: -- freshness: freshnessValue - resources: - - categories: - - categoriesValue - resource: resourceValue - responseKind: - group: groupValue - kind: kindValue - version: versionValue - scope: scopeValue - shortNames: - - shortNamesValue - singularResource: singularResourceValue - subresources: - - acceptedTypes: - - group: groupValue - kind: kindValue - version: versionValue - responseKind: - group: groupValue - kind: kindValue - version: versionValue - subresource: subresourceValue - verbs: - - verbsValue - verbs: - - verbsValue - version: versionValue diff --git a/testdata/v1.31.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.json b/testdata/v1.31.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.json deleted file mode 100644 index 699ca16525..0000000000 --- a/testdata/v1.31.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "kind": "APIGroupDiscovery", - "apiVersion": "apidiscovery.k8s.io/v2beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "versions": [ - { - "version": "versionValue", - "resources": [ - { - "resource": "resourceValue", - "responseKind": { - "group": "groupValue", - "version": "versionValue", - "kind": "kindValue" - }, - "scope": "scopeValue", - "singularResource": "singularResourceValue", - "verbs": [ - "verbsValue" - ], - "shortNames": [ - "shortNamesValue" - ], - "categories": [ - "categoriesValue" - ], - "subresources": [ - { - "subresource": "subresourceValue", - "responseKind": { - "group": "groupValue", - "version": "versionValue", - "kind": "kindValue" - }, - "acceptedTypes": [ - { - "group": "groupValue", - "version": "versionValue", - "kind": "kindValue" - } - ], - "verbs": [ - "verbsValue" - ] - } - ] - } - ], - "freshness": "freshnessValue" - } - ] -} \ No newline at end of file diff --git a/testdata/v1.31.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.pb b/testdata/v1.31.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.pb deleted file mode 100644 index 83c2857fd8a87e2a818788f8b7243c45a8d676ad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 697 zcma)3%SyvQ6isWv_S!aWP>{F_xap$SfDpQ~2;u`NA}-ub+G#pAoe48Zp^87?2e^0b zC-?_K|3O^1cH>Ua$)u^RZo0d3?wNbfId|X)4H~e80@5X-!$z2o>jOvB3ELUjE)LPI zQQdDJ9dZ^02Pwn&%E4lgIbxTtz#U)zim|tlDt32?Zay*cT^wY^)`v`r%qo zMwGG;g>r~$SLWV|bG-+J0inra^H;w$Q&ZDr6!StF87IT_9-+u5H&URQbDwdcI7AeA zm@B|2vmo}L$~XUxv80E$$@fY{v*j@Ccg4jxNRnyhAbWe)s))#)C80un$U;#bWR{8X znSs(GWgEbYPm_pPV4HJJL7sNH&Ds!zdXbO#c^Z4XtOjzEo4B)e(Puo2PniHsy(3TS gF;1pH%ZLARm(;Qx&6?9=mV455pJI{7F*Qs30dd~-m;e9( diff --git a/testdata/v1.31.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.yaml b/testdata/v1.31.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.yaml deleted file mode 100644 index 41d1feb4ce..0000000000 --- a/testdata/v1.31.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.yaml +++ /dev/null @@ -1,63 +0,0 @@ -apiVersion: apidiscovery.k8s.io/v2beta1 -kind: APIGroupDiscovery -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -versions: -- freshness: freshnessValue - resources: - - categories: - - categoriesValue - resource: resourceValue - responseKind: - group: groupValue - kind: kindValue - version: versionValue - scope: scopeValue - shortNames: - - shortNamesValue - singularResource: singularResourceValue - subresources: - - acceptedTypes: - - group: groupValue - kind: kindValue - version: versionValue - responseKind: - group: groupValue - kind: kindValue - version: versionValue - subresource: subresourceValue - verbs: - - verbsValue - verbs: - - verbsValue - version: versionValue diff --git a/testdata/v1.31.0/apps.v1.ControllerRevision.json b/testdata/v1.31.0/apps.v1.ControllerRevision.json deleted file mode 100644 index 033ce01e80..0000000000 --- a/testdata/v1.31.0/apps.v1.ControllerRevision.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "kind": "ControllerRevision", - "apiVersion": "apps/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "data": { - "apiVersion": "example.com/v1", - "kind": "CustomType", - "spec": { - "replicas": 1 - }, - "status": { - "available": 1 - } - }, - "revision": 3 -} \ No newline at end of file diff --git a/testdata/v1.31.0/apps.v1.ControllerRevision.pb b/testdata/v1.31.0/apps.v1.ControllerRevision.pb deleted file mode 100644 index f1221277de4b8fca01bccf1f523137dbf2375383..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 501 zcmZ8e%Sr<=6rDbxov7_NxF`c|vMi#uAe33QI~5TT7w$6C+Y*~eLNZgVr9a?bxb_qL z1Ev2UE?oNun#s@y?oQ6V_uO+&COz$-LsTPD>XT{5_XmQfN-zfM2BuU~!Tpa4`Ya=t zlLYPv%fR0s0|!M?xLQ#`Bd=;n;-UrbX<(yE$|rWBUC-#yqV9nLEiz^LK;`O|?bZ7A z`ts%bt?D`F2EG2g8+48CTgYW30;Vru=I<2HPDB_r2<9m4u({!D`CIXv zt`P$^)VDKPBokIqdA{g-I*Zmx*ieTkn&XWf9AbDRiDYmbi^O~lKEnAih96`)6-lmW mI4vQ@;T$WFjK)Ocu(L3%$t5$`C{77AxiQEKi&iCYu=59y>8#=a diff --git a/testdata/v1.31.0/apps.v1.ControllerRevision.yaml b/testdata/v1.31.0/apps.v1.ControllerRevision.yaml deleted file mode 100644 index 052b19c634..0000000000 --- a/testdata/v1.31.0/apps.v1.ControllerRevision.yaml +++ /dev/null @@ -1,42 +0,0 @@ -apiVersion: apps/v1 -data: - apiVersion: example.com/v1 - kind: CustomType - spec: - replicas: 1 - status: - available: 1 -kind: ControllerRevision -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -revision: 3 diff --git a/testdata/v1.31.0/apps.v1.DaemonSet.json b/testdata/v1.31.0/apps.v1.DaemonSet.json deleted file mode 100644 index 9e6c849bc6..0000000000 --- a/testdata/v1.31.0/apps.v1.DaemonSet.json +++ /dev/null @@ -1,1801 +0,0 @@ -{ - "kind": "DaemonSet", - "apiVersion": "apps/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "template": { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "volumes": [ - { - "name": "nameValue", - "hostPath": { - "path": "pathValue", - "type": "typeValue" - }, - "emptyDir": { - "medium": "mediumValue", - "sizeLimit": "0" - }, - "gcePersistentDisk": { - "pdName": "pdNameValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "awsElasticBlockStore": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "gitRepo": { - "repository": "repositoryValue", - "revision": "revisionValue", - "directory": "directoryValue" - }, - "secret": { - "secretName": "secretNameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "defaultMode": 3, - "optional": true - }, - "nfs": { - "server": "serverValue", - "path": "pathValue", - "readOnly": true - }, - "iscsi": { - "targetPortal": "targetPortalValue", - "iqn": "iqnValue", - "lun": 3, - "iscsiInterface": "iscsiInterfaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "portals": [ - "portalsValue" - ], - "chapAuthDiscovery": true, - "chapAuthSession": true, - "secretRef": { - "name": "nameValue" - }, - "initiatorName": "initiatorNameValue" - }, - "glusterfs": { - "endpoints": "endpointsValue", - "path": "pathValue", - "readOnly": true - }, - "persistentVolumeClaim": { - "claimName": "claimNameValue", - "readOnly": true - }, - "rbd": { - "monitors": [ - "monitorsValue" - ], - "image": "imageValue", - "fsType": "fsTypeValue", - "pool": "poolValue", - "user": "userValue", - "keyring": "keyringValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true - }, - "flexVolume": { - "driver": "driverValue", - "fsType": "fsTypeValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true, - "options": { - "optionsKey": "optionsValue" - } - }, - "cinder": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "name": "nameValue" - } - }, - "cephfs": { - "monitors": [ - "monitorsValue" - ], - "path": "pathValue", - "user": "userValue", - "secretFile": "secretFileValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true - }, - "flocker": { - "datasetName": "datasetNameValue", - "datasetUUID": "datasetUUIDValue" - }, - "downwardAPI": { - "items": [ - { - "path": "pathValue", - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "mode": 4 - } - ], - "defaultMode": 2 - }, - "fc": { - "targetWWNs": [ - "targetWWNsValue" - ], - "lun": 2, - "fsType": "fsTypeValue", - "readOnly": true, - "wwids": [ - "wwidsValue" - ] - }, - "azureFile": { - "secretName": "secretNameValue", - "shareName": "shareNameValue", - "readOnly": true - }, - "configMap": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "defaultMode": 3, - "optional": true - }, - "vsphereVolume": { - "volumePath": "volumePathValue", - "fsType": "fsTypeValue", - "storagePolicyName": "storagePolicyNameValue", - "storagePolicyID": "storagePolicyIDValue" - }, - "quobyte": { - "registry": "registryValue", - "volume": "volumeValue", - "readOnly": true, - "user": "userValue", - "group": "groupValue", - "tenant": "tenantValue" - }, - "azureDisk": { - "diskName": "diskNameValue", - "diskURI": "diskURIValue", - "cachingMode": "cachingModeValue", - "fsType": "fsTypeValue", - "readOnly": true, - "kind": "kindValue" - }, - "photonPersistentDisk": { - "pdID": "pdIDValue", - "fsType": "fsTypeValue" - }, - "projected": { - "sources": [ - { - "secret": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "optional": true - }, - "downwardAPI": { - "items": [ - { - "path": "pathValue", - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "mode": 4 - } - ] - }, - "configMap": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "optional": true - }, - "serviceAccountToken": { - "audience": "audienceValue", - "expirationSeconds": 2, - "path": "pathValue" - }, - "clusterTrustBundle": { - "name": "nameValue", - "signerName": "signerNameValue", - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "optional": true, - "path": "pathValue" - } - } - ], - "defaultMode": 2 - }, - "portworxVolume": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "scaleIO": { - "gateway": "gatewayValue", - "system": "systemValue", - "secretRef": { - "name": "nameValue" - }, - "sslEnabled": true, - "protectionDomain": "protectionDomainValue", - "storagePool": "storagePoolValue", - "storageMode": "storageModeValue", - "volumeName": "volumeNameValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "storageos": { - "volumeName": "volumeNameValue", - "volumeNamespace": "volumeNamespaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "name": "nameValue" - } - }, - "csi": { - "driver": "driverValue", - "readOnly": true, - "fsType": "fsTypeValue", - "volumeAttributes": { - "volumeAttributesKey": "volumeAttributesValue" - }, - "nodePublishSecretRef": { - "name": "nameValue" - } - }, - "ephemeral": { - "volumeClaimTemplate": { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "accessModes": [ - "accessModesValue" - ], - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - } - }, - "volumeName": "volumeNameValue", - "storageClassName": "storageClassNameValue", - "volumeMode": "volumeModeValue", - "dataSource": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue" - }, - "dataSourceRef": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue", - "namespace": "namespaceValue" - }, - "volumeAttributesClassName": "volumeAttributesClassNameValue" - } - } - }, - "image": { - "reference": "referenceValue", - "pullPolicy": "pullPolicyValue" - } - } - ], - "initContainers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "ephemeralContainers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true, - "targetContainerName": "targetContainerNameValue" - } - ], - "restartPolicy": "restartPolicyValue", - "terminationGracePeriodSeconds": 4, - "activeDeadlineSeconds": 5, - "dnsPolicy": "dnsPolicyValue", - "nodeSelector": { - "nodeSelectorKey": "nodeSelectorValue" - }, - "serviceAccountName": "serviceAccountNameValue", - "serviceAccount": "serviceAccountValue", - "automountServiceAccountToken": true, - "nodeName": "nodeNameValue", - "hostNetwork": true, - "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": true, - "securityContext": { - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 2, - "runAsGroup": 6, - "runAsNonRoot": true, - "supplementalGroups": [ - 4 - ], - "supplementalGroupsPolicy": "supplementalGroupsPolicyValue", - "fsGroup": 5, - "sysctls": [ - { - "name": "nameValue", - "value": "valueValue" - } - ], - "fsGroupChangePolicy": "fsGroupChangePolicyValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "imagePullSecrets": [ - { - "name": "nameValue" - } - ], - "hostname": "hostnameValue", - "subdomain": "subdomainValue", - "affinity": { - "nodeAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": { - "nodeSelectorTerms": [ - { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - ] - }, - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "preference": { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - } - ] - }, - "podAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": [ - { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - ], - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "podAffinityTerm": { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - } - ] - }, - "podAntiAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": [ - { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - ], - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "podAffinityTerm": { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - } - ] - } - }, - "schedulerName": "schedulerNameValue", - "tolerations": [ - { - "key": "keyValue", - "operator": "operatorValue", - "value": "valueValue", - "effect": "effectValue", - "tolerationSeconds": 5 - } - ], - "hostAliases": [ - { - "ip": "ipValue", - "hostnames": [ - "hostnamesValue" - ] - } - ], - "priorityClassName": "priorityClassNameValue", - "priority": 25, - "dnsConfig": { - "nameservers": [ - "nameserversValue" - ], - "searches": [ - "searchesValue" - ], - "options": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "readinessGates": [ - { - "conditionType": "conditionTypeValue" - } - ], - "runtimeClassName": "runtimeClassNameValue", - "enableServiceLinks": true, - "preemptionPolicy": "preemptionPolicyValue", - "overhead": { - "overheadKey": "0" - }, - "topologySpreadConstraints": [ - { - "maxSkew": 1, - "topologyKey": "topologyKeyValue", - "whenUnsatisfiable": "whenUnsatisfiableValue", - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "minDomains": 5, - "nodeAffinityPolicy": "nodeAffinityPolicyValue", - "nodeTaintsPolicy": "nodeTaintsPolicyValue", - "matchLabelKeys": [ - "matchLabelKeysValue" - ] - } - ], - "setHostnameAsFQDN": true, - "os": { - "name": "nameValue" - }, - "hostUsers": true, - "schedulingGates": [ - { - "name": "nameValue" - } - ], - "resourceClaims": [ - { - "name": "nameValue", - "resourceClaimName": "resourceClaimNameValue", - "resourceClaimTemplateName": "resourceClaimTemplateNameValue" - } - ] - } - }, - "updateStrategy": { - "type": "typeValue", - "rollingUpdate": { - "maxUnavailable": "maxUnavailableValue", - "maxSurge": "maxSurgeValue" - } - }, - "minReadySeconds": 4, - "revisionHistoryLimit": 6 - }, - "status": { - "currentNumberScheduled": 1, - "numberMisscheduled": 2, - "desiredNumberScheduled": 3, - "numberReady": 4, - "observedGeneration": 5, - "updatedNumberScheduled": 6, - "numberAvailable": 7, - "numberUnavailable": 8, - "collisionCount": 9, - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "lastTransitionTime": "2003-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/apps.v1.DaemonSet.pb b/testdata/v1.31.0/apps.v1.DaemonSet.pb deleted file mode 100644 index f5b24b295388d18c6bde9c7f4a3107dbd7a4c302..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10912 zcmeHNO>7)V74{oD>zSJ0RQ%hUMBZjutXW`<#Y)jgNU@y&G0x(3Y_bXn(eADpSKQOx z+ubvcgODHyX_X5o5)xVoq(nlB!U4(0a6p^GYFV)y_Jla0AaPi62%PviEU&Bjr)J`0 zjn)y7c5dBO)z$A+eedUcRokb6Au>ir4bKZ+>VAP1&KRuiIu}?-KU^n&&XIy+wAnWd zyTjX?a%qYbY-5wz!PnR>Ey_pn#imXwhU2)Q5#l7GyQaL0 zF_&K^g>CN0A8VQXdMZu5YIs}~WDZV&Uu|;7u=!OKP|R~3Hc6>%I7W;4qJdUiFVa5| zU+bSnM;-3J_u+7DXdWkHwiT@JdU9nNBP93T?=9AX&Stt2Vo~3Im8=lds%?bk)=H{$ zO?j6;e}Uw;*{*ypOF>*ImsadXQ%R}m-s)i6p8U4`{yh2hm}(q1$H)XJct*G-x2O;% zTTdw|wwc8{ZP_zSU`{(pik_9)5iK?|s7wvdfIdUYUDxik*|{_FtNs!7Ia2kR=LS4< z{R9?1>+;mPw2H-jW~SZqpC{FTnLZ1%|4u5P%7mX9j$~+Pq!=*2o1kCmhs7>A8XA6! zg{!U~8n%=%&tI2@JvFQ!|suFY1D0$*z3Eb1LR#X=BHQ1!w;UPCr zfmGn-6Qsf%%X7IC#&}o7TBD?5+6Hf@AJpK|H%S>iTC_~@7lgObriI9wDv@6BTvw`6 zFLY3KF=W1kX6JLKCEgmUjHhAqEGb$(PuEDDPE&`@KwTrm^-{N0il4=-mtTDBc7v`? z<)7_WC|d$8lUt8B`^(&xy4KZ6=HTk{q-GhR5vX`bS~fOf++BljlS?YDpCkQVk5+`Q zTTP&^%@S(5PH1q97U@RNa*yBBA}g2~spYN%!cs!%;>B0w4%Ko!`+{pnc6PWWJ8!_J z9>#Gc*fRVqE=|Fk_>HPBeH_wn!3wELb4#`8F-dJAK=>eNR$ZH$yQxz8SWkPrW_Mtb zptda@go$Mq=n0tQsi+Rv5TgOiVk-n;N4Af*;Y{T(BAGsR#x2$}R|{U9Ir zd^bd=gE8`q+eQdT&1&g7#Rk?$T2k>B;~hx#T~_s3h4X@62NBJBrhz)quBDtI-ZMH$VrM80jq3a({xQ1or8o(=mzE zs3FVi`pr?*{61Xl@qsny8LfYo9FtQngrUzjJ0TNk+jxJY07{RK`T%YpA-_B_NN1jW zI`i8csTropf*`WTI8MGmYM6)fHV?&)MIJlKWqkHJCYxEC)^E7_p@OzP9{Y|Z+X#Xb zsPpk(Q~%NUG@6;mzmmFBnmIs)1uVXNpkaC+vspgbkJnyt{sGUCiqD$NPtBZGy^d|m zh#|mDe_B>;T}?wurrSoUAvud)z|2bSLA|=;`bcJ4XLy{Ayr@i3%VDBbjy$ewCW%XN z%MHSFtKx@^pMx@*l5Rv3M344EARisc>477;Hr?wDQ>uc&?$KR~3kO8lw5moa2B1)6 z*;cyH^;Ft!#|hIYu9uK-rEm3d+3UNWfe|g?aq|%?iw2#&;>lHROkm>NL897aYs|2| z?$|Q)t^ESXkAYN3&wkPKYJybFLv08hJf^mCsSDALh)2B`m|HBS)AdP3@}9jpPWtDd z${e*k&{C9_^E8}bwmvd@WbT<$qnDm`0XN^sksth@S1^Yw_!P)+`B~&fZLB#&Ks=AG zH_9)Q`0S4flCs+CL9YH2$T-OxmUI-fU?G$Rv=I8ABUxHW3%(nt{aVIEbz-wFlMDwD z15w%Ibbh&l9>hE!*^QWLZG}ABY6r%W&n)I30kbc7%uF3GoqV`c0-gFDXCc@?Y^H-} z;F3-<0qD5xnuZ-2#H#N$6J~-{osS&zeSkLregc@;zl7WwT`j*NeoL!8t_K&Qzu^{~ z*k`3hCNE~V1IJZUtXjyT&1@_7;AuCiyYLxuG@)1N+Ea>6$gGf}N2EoldJpz#)b?qM z9LjvfasuV!#`C1=V0v(Y*`llv73Yqs4dNGzld*GJFwF>4sXWWadOO7EwQ@8;I_5R_ z4s3ycGe`b6G-D(L=>r>&a;uAn3hU*mW*}0Hr7gorc%jtj0AN0lQJe@mo@ZmYKq_sE zf2o^sRn5V#K{>K1C#lO`hYE%?DHAxZ-_l!UJV8_EiGw4V!V3Ku*KJ~?1RSQHtsp_C$g z(%H~$fIax4axU6;*sfI3^df6EkqU{_arVevm?ooK@^M;85^|aK-Gd3w=dRDg-QL3C zJ23q|G)PUPrsA|!en9amh2dk^j8oM|(V9O3+=nr7;%4D#sq3Uy4nBZ!B;+A)v)(^G z0QfiHISpfNaU7{IylXkE@49%JxrJ4)h~7mt-|M-zqRjN6Tv?mg*<#Ly6JP-&XmVpS zE;t-+4vjQ)GNOnJO}w6gtEWiY7>_#E@sKH0nbG2YS@(_HUYQIsjzPvTsJ{;CuN|gi z)-$NT4(hMn>_qHioVt9>`YWB1_g|JCx-|2%9NfyOg}&Q4*z0Myn_E(9*BYK%$!nGv z@|9aq`pKU5b&ULW&ppmBsRj5sGA+)qFpgf?aEz|O@djob-03mVRmQFh9lZY~QlFWT zxo5Oju>;Q|Wfk_+=;{1d3u`^o7O@x|cH(pfZ%Y2>odqZPDnrqQ4sbqK8ShJ!}H;M5%EDI_;C1e`lP<-*H!(eX0pkx z+@1z*-ny%*tG}=6_x<^ORacgRF)~Gt7@ikA-~S{fXP9TZJ6-04^gEm6k2z9sj4u14 zVfPq4+GY;(jgY;RG-;KnH}DKo4$;d2vs-K2xgx%(=X=}|Pm7a23*4TMZ6~l4d&QcI%6RtA=t@j1}vNV)IYy)IihBflCRQC}ccpLuS; zL)TAW;j=zZ?Mtgz+-GLmz4!@I4VdY(F#GQ@1yq^vGvkpA4UH57=Jyl)EB(;ylcS;G zw^_LE`k`S<8T0%VY1%X6`UDTmfUh_q^IM67sH;jWK%?Y|k0o$V!A4P8(3fG0a)*c9 zKm}5PS5J@%b1cv0PAEU4s#qJ8R7~68-SmSRT>26zcU_#xjV+rJ-bJexB5SHddckvD zsY<=jL)FEQ#S)sG&z-h-Yp61wf~~WpX!$%{BXv4W9XbbfjS$yM9akxS7PDS{?y=hq zx;mAAc37co3A9XZJ>Klka9iqHS0`D3YtN9HWrRkc;vs3-+>CK|9lk;?sknZc4EsG= z5#DY+fxb3RsOdVP!7*N>8$rtho==OcVD3;YcLNZX5=s{@z9jdwmK)d?TsyM8%`Mq^ z6F&Sfjw?aO@UzG?1FzvXs=oAbNWTqhq$V=ZEo(QO6ijW?eUu3 zg(g95+dK#p%Ph*-#b(cdp6ybdw0*bdNu(7+<`_;WUUp%Hlr0`yNq?NjB!qWnvGr}m>CtMy+p5)Q2bvq8gG-Eb9%{MY!*T-qbkXUg zL~7KKWp=~nsA~QIE)Mv>8VroqKSn0xl&8bc=UcsyiNtMcxKRLQz(>6ecMg*u9Ui4K z?|(Y;^Bk!erpbaJvd1{GK1*ttiSsTG#g0WDJIZBz_6jDOS(`R&xcY&Dwmud6j%C{j zf)uEW@n2K_(fA0Ona5vD-6_o+puz*1FYIfWKE!QSPY&aCP@KQR)1>0F7V}dxr&X_K z+cIJZaMSOXRa;lnkdozYa8 zQtY@vxUw#O*mxb3(UkNfnjm_#ZvlDtNKW@1$+g)*ZjMsdA_lq-F!Psv{2^$d(?36oolcv&>)>{U;$a$_13=N?kkKHFf1 z^?ApZp>N}dK)ws4LI(DWo>LQ~Y94B1=-@H6l}lZSc0@et#lY;am{8Y`DUuKD&2ch3 z2UX^%A!95>c{xwR31;hu<_|A?Xz9qMCtbj;S99c>|K}CV;R-$hGF*NNxltFZ4iON~ zq3ezE%OpPglY*qI4|2-S)WOU zgNT8s@Np`?T0swDo{Q{8OtrB_o@#dkW7%gGR)V-;pZA!VI$nD0;Z6y3>i3+}!6sre z9Xtn@bdm``r)<|W?8qS2eYce`6RhjJ>zHo4POkCLMay-L@fQfxwIg%mv^Ekf1%ut%e| zM_c4j7Auw$C?7YTAyo&{gY(Q5Wre6bcT{Z}>tCmY$X0gdurt7j{j!EG3^Av{%6h|-7+CE;tthO$B(9p-|X!UYe4Pmb6S7DYyE zD5VG=bT)JcU>826oQn<}wkuUMy~tWEq(UNfoIiXIX2}sQ`8cg43AxPr?!&a_bJyqL z&S2s2moWPlG)PUPrsA|!en9auh2dk^j8oM|(VE`@Jb+1Y;%4D#sq3Vd4&H_-B;+CQ zvcW&T1Mn}va~j6F;y6-ac-M1S-*xdcvx8Nyh~7mt-y6AKM49PBxw1CB-C@qA6JP-& zXmMjJE;t-)4vjSQSVR#|xA1}nuAU-oV=C&nfQL+>%8Z(OW!*P(yJa%UI7S)AsQx;t zzxJ4pS#uZ1-hWws=+ev&a&SAR7W(ewV0WP5UT#^bU2Ax5 zB`;cH$X9Mb=_d!;FJR=i)tj99r_}=d0+|(OSQtmIZaPNa;CKf!4(@b9bd|B|d=Kw` z#ivWh=u5|CsP?6Pmqluz64q?VMQ)F`4AH=;uXr@{^51J W2HL=7)V74{oD#8dN|ivQA^MBZjutXW`<#Y)jgNbxuU+1QJ5Y_c*4(eAF9sko=R zx4Xw)2O&WaVwDRh5)xVoq(oXN3I`;gQ1-AQr)9-**c0M}g2Z9PA#md70I#e1r)J`0 zjn)y7c5dBO)m86ReedUc)!XNSAu>*m8=e=uxbt~R)|h8=)40S!`s;P_ryR*UMu&af zu)B<&XfcQRM#x@HnzVA%8+e8(hv=n%+0A9{Y>O{yqg`%^r@1ko1#Z{Jam)|6>xkBK z#~Y)g@7?^%TO-w>C4BnjgLm<1m26ItylreTJNOFQqXqdWzSz=9*>D^;G(wz2bXS#k zG3LrkB)`oaxv-YWucy+~Du%~ZL1y6`_?0Gi44Yp?0mVGmVT%+yhGVptFB)js^&duQc~zJi+4M+XPCgOc9s-8E43tAXl7uU8lDDynv`~2yW3%l7vxv{BWkmx;xo?; zcxOR6vypKQ$c5P}fKyVE#^mf2AK9JLE)Y z_$?N$x_)TbQpQpKsxCO5< zKJNK$h)xHirW+__Ez{pOQI zE~5NU_(ETPnv{&L#hDZ5NeJ)EVr#pK)1#Guw^Xaqjx;ww2bUP>3{-P}goOn5>88^$ ziPWee%k28iQPuoDT<-CKRp=S5e}&$qfE6N%e+f1?0OkB|BQZXY9W9vh@H zPd=S_J4dR9X|f=Q>@kk4&yy-<;=IE{abl6jj&d2Fy^6_Z)~59vu70GTt&PXNW5G6p zAO-4NylUz{>YqY0^Z1ujcSx0v;BDO73c5pEGhe}$^6vJX~pZ> zwu~48-1Mg<)z;NCq-eSwBpZ^o=y}Ynpur&G$lI`O%OfW4}g4lB&Uat);%lDV<@y9B&RwLcJ8X>^ z)>j={hQ7650QoVHGU+)lx}qjXl~Je;p@YZNR&I4ZIuY@x7Xq`*VnSV;R3z^?o71F! z4yw#iMaEc+@^YSr6U^2}W{%B%;@t7gr(M9U*K_3i|K}ad;SN3pGF*8ExlsqJ4iOMn z(Dg?7WfGtLF+oyRdp*e2e*o5NMh#0k3YxbN$^u#l{m+stt)zM1jnjTDW1>2-*$$Ho z2N45N;p6=1QW-snxf0opm}+gAJk#m~#)8i*<{$yHFL}&N9WR}HxKje1`dw!}*g$Ni zgQsCrCz$|r+;&aFjtpYecbf?_!Me_ej`<$I>i|Ci%Gu(mGswq}1WYK1J6#MYB8`WL-G&zybt90)v#U^A{NYNwGB2>Kx2Q+F2 zv_%eOu53Ah@^Sq+QgJXnxWsHxR*1@TC)5V9L}M~`PV=T2VJekp>11z*7`;}CCP>G; z0^f!<_&0Ope?v1yLXbYN{wTNFI8s)&{41 zBt`$H8`*CFjq+ZrYb%+-Ef}yNyj4?((tr&m;cLK#vO*p0=YpET1&@MH4%iSDMFwmr zr3fE)Hgp?cAHJa6i}qc%D^)bTz?w~@LLzmXId&ILk>gzQaav9ia+&qrg9*>)uFu20 z-ooKKaO!=ild4Ef#ciwnfa1>-hL2%0PE{X8YyJRmAI8Lun}xTfu9Nmn`b)>@ZuH~@4>*8%@8>?Osy^CtT*K@y#GSi20Wo=@&&72J+%unuXIZO|FZDVPcuKu!L6KH=)0YR{ho%qxdo+mt>L|u z{LvCazVa88ezvE59V5T3{>eE#qAlXJ6<#Nby6+d&a(n@6$YD3mLhu*If4}npe{t0D Y8rTTpKRIhfEUQJ=7a|eThV-HT0=!cBb^rhX diff --git a/testdata/v1.31.0/apps.v1.ReplicaSet.yaml b/testdata/v1.31.0/apps.v1.ReplicaSet.yaml deleted file mode 100644 index a852a56d1a..0000000000 --- a/testdata/v1.31.0/apps.v1.ReplicaSet.yaml +++ /dev/null @@ -1,1228 +0,0 @@ -apiVersion: apps/v1 -kind: ReplicaSet -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - minReadySeconds: 4 - replicas: 1 - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - template: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - activeDeadlineSeconds: 5 - affinity: - nodeAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - preference: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - nodeSelectorTerms: - - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - podAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - podAntiAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - automountServiceAccountToken: true - containers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - dnsConfig: - nameservers: - - nameserversValue - options: - - name: nameValue - value: valueValue - searches: - - searchesValue - dnsPolicy: dnsPolicyValue - enableServiceLinks: true - ephemeralContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - targetContainerName: targetContainerNameValue - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - hostAliases: - - hostnames: - - hostnamesValue - ip: ipValue - hostIPC: true - hostNetwork: true - hostPID: true - hostUsers: true - hostname: hostnameValue - imagePullSecrets: - - name: nameValue - initContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - nodeName: nodeNameValue - nodeSelector: - nodeSelectorKey: nodeSelectorValue - os: - name: nameValue - overhead: - overheadKey: "0" - preemptionPolicy: preemptionPolicyValue - priority: 25 - priorityClassName: priorityClassNameValue - readinessGates: - - conditionType: conditionTypeValue - resourceClaims: - - name: nameValue - resourceClaimName: resourceClaimNameValue - resourceClaimTemplateName: resourceClaimTemplateNameValue - restartPolicy: restartPolicyValue - runtimeClassName: runtimeClassNameValue - schedulerName: schedulerNameValue - schedulingGates: - - name: nameValue - securityContext: - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - fsGroup: 5 - fsGroupChangePolicy: fsGroupChangePolicyValue - runAsGroup: 6 - runAsNonRoot: true - runAsUser: 2 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - supplementalGroups: - - 4 - supplementalGroupsPolicy: supplementalGroupsPolicyValue - sysctls: - - name: nameValue - value: valueValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - serviceAccount: serviceAccountValue - serviceAccountName: serviceAccountNameValue - setHostnameAsFQDN: true - shareProcessNamespace: true - subdomain: subdomainValue - terminationGracePeriodSeconds: 4 - tolerations: - - effect: effectValue - key: keyValue - operator: operatorValue - tolerationSeconds: 5 - value: valueValue - topologySpreadConstraints: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - maxSkew: 1 - minDomains: 5 - nodeAffinityPolicy: nodeAffinityPolicyValue - nodeTaintsPolicy: nodeTaintsPolicyValue - topologyKey: topologyKeyValue - whenUnsatisfiable: whenUnsatisfiableValue - volumes: - - awsElasticBlockStore: - fsType: fsTypeValue - partition: 3 - readOnly: true - volumeID: volumeIDValue - azureDisk: - cachingMode: cachingModeValue - diskName: diskNameValue - diskURI: diskURIValue - fsType: fsTypeValue - kind: kindValue - readOnly: true - azureFile: - readOnly: true - secretName: secretNameValue - shareName: shareNameValue - cephfs: - monitors: - - monitorsValue - path: pathValue - readOnly: true - secretFile: secretFileValue - secretRef: - name: nameValue - user: userValue - cinder: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeID: volumeIDValue - configMap: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - csi: - driver: driverValue - fsType: fsTypeValue - nodePublishSecretRef: - name: nameValue - readOnly: true - volumeAttributes: - volumeAttributesKey: volumeAttributesValue - downwardAPI: - defaultMode: 2 - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - emptyDir: - medium: mediumValue - sizeLimit: "0" - ephemeral: - volumeClaimTemplate: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - accessModes: - - accessModesValue - dataSource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - dataSourceRef: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resources: - limits: - limitsKey: "0" - requests: - requestsKey: "0" - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - storageClassName: storageClassNameValue - volumeAttributesClassName: volumeAttributesClassNameValue - volumeMode: volumeModeValue - volumeName: volumeNameValue - fc: - fsType: fsTypeValue - lun: 2 - readOnly: true - targetWWNs: - - targetWWNsValue - wwids: - - wwidsValue - flexVolume: - driver: driverValue - fsType: fsTypeValue - options: - optionsKey: optionsValue - readOnly: true - secretRef: - name: nameValue - flocker: - datasetName: datasetNameValue - datasetUUID: datasetUUIDValue - gcePersistentDisk: - fsType: fsTypeValue - partition: 3 - pdName: pdNameValue - readOnly: true - gitRepo: - directory: directoryValue - repository: repositoryValue - revision: revisionValue - glusterfs: - endpoints: endpointsValue - path: pathValue - readOnly: true - hostPath: - path: pathValue - type: typeValue - image: - pullPolicy: pullPolicyValue - reference: referenceValue - iscsi: - chapAuthDiscovery: true - chapAuthSession: true - fsType: fsTypeValue - initiatorName: initiatorNameValue - iqn: iqnValue - iscsiInterface: iscsiInterfaceValue - lun: 3 - portals: - - portalsValue - readOnly: true - secretRef: - name: nameValue - targetPortal: targetPortalValue - name: nameValue - nfs: - path: pathValue - readOnly: true - server: serverValue - persistentVolumeClaim: - claimName: claimNameValue - readOnly: true - photonPersistentDisk: - fsType: fsTypeValue - pdID: pdIDValue - portworxVolume: - fsType: fsTypeValue - readOnly: true - volumeID: volumeIDValue - projected: - defaultMode: 2 - sources: - - clusterTrustBundle: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - name: nameValue - optional: true - path: pathValue - signerName: signerNameValue - configMap: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - downwardAPI: - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secret: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - serviceAccountToken: - audience: audienceValue - expirationSeconds: 2 - path: pathValue - quobyte: - group: groupValue - readOnly: true - registry: registryValue - tenant: tenantValue - user: userValue - volume: volumeValue - rbd: - fsType: fsTypeValue - image: imageValue - keyring: keyringValue - monitors: - - monitorsValue - pool: poolValue - readOnly: true - secretRef: - name: nameValue - user: userValue - scaleIO: - fsType: fsTypeValue - gateway: gatewayValue - protectionDomain: protectionDomainValue - readOnly: true - secretRef: - name: nameValue - sslEnabled: true - storageMode: storageModeValue - storagePool: storagePoolValue - system: systemValue - volumeName: volumeNameValue - secret: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - optional: true - secretName: secretNameValue - storageos: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeName: volumeNameValue - volumeNamespace: volumeNamespaceValue - vsphereVolume: - fsType: fsTypeValue - storagePolicyID: storagePolicyIDValue - storagePolicyName: storagePolicyNameValue - volumePath: volumePathValue -status: - availableReplicas: 5 - conditions: - - lastTransitionTime: "2003-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue - fullyLabeledReplicas: 2 - observedGeneration: 3 - readyReplicas: 4 - replicas: 1 diff --git a/testdata/v1.31.0/apps.v1.StatefulSet.json b/testdata/v1.31.0/apps.v1.StatefulSet.json deleted file mode 100644 index 6608d49548..0000000000 --- a/testdata/v1.31.0/apps.v1.StatefulSet.json +++ /dev/null @@ -1,1929 +0,0 @@ -{ - "kind": "StatefulSet", - "apiVersion": "apps/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "replicas": 1, - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "template": { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "volumes": [ - { - "name": "nameValue", - "hostPath": { - "path": "pathValue", - "type": "typeValue" - }, - "emptyDir": { - "medium": "mediumValue", - "sizeLimit": "0" - }, - "gcePersistentDisk": { - "pdName": "pdNameValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "awsElasticBlockStore": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "gitRepo": { - "repository": "repositoryValue", - "revision": "revisionValue", - "directory": "directoryValue" - }, - "secret": { - "secretName": "secretNameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "defaultMode": 3, - "optional": true - }, - "nfs": { - "server": "serverValue", - "path": "pathValue", - "readOnly": true - }, - "iscsi": { - "targetPortal": "targetPortalValue", - "iqn": "iqnValue", - "lun": 3, - "iscsiInterface": "iscsiInterfaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "portals": [ - "portalsValue" - ], - "chapAuthDiscovery": true, - "chapAuthSession": true, - "secretRef": { - "name": "nameValue" - }, - "initiatorName": "initiatorNameValue" - }, - "glusterfs": { - "endpoints": "endpointsValue", - "path": "pathValue", - "readOnly": true - }, - "persistentVolumeClaim": { - "claimName": "claimNameValue", - "readOnly": true - }, - "rbd": { - "monitors": [ - "monitorsValue" - ], - "image": "imageValue", - "fsType": "fsTypeValue", - "pool": "poolValue", - "user": "userValue", - "keyring": "keyringValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true - }, - "flexVolume": { - "driver": "driverValue", - "fsType": "fsTypeValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true, - "options": { - "optionsKey": "optionsValue" - } - }, - "cinder": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "name": "nameValue" - } - }, - "cephfs": { - "monitors": [ - "monitorsValue" - ], - "path": "pathValue", - "user": "userValue", - "secretFile": "secretFileValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true - }, - "flocker": { - "datasetName": "datasetNameValue", - "datasetUUID": "datasetUUIDValue" - }, - "downwardAPI": { - "items": [ - { - "path": "pathValue", - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "mode": 4 - } - ], - "defaultMode": 2 - }, - "fc": { - "targetWWNs": [ - "targetWWNsValue" - ], - "lun": 2, - "fsType": "fsTypeValue", - "readOnly": true, - "wwids": [ - "wwidsValue" - ] - }, - "azureFile": { - "secretName": "secretNameValue", - "shareName": "shareNameValue", - "readOnly": true - }, - "configMap": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "defaultMode": 3, - "optional": true - }, - "vsphereVolume": { - "volumePath": "volumePathValue", - "fsType": "fsTypeValue", - "storagePolicyName": "storagePolicyNameValue", - "storagePolicyID": "storagePolicyIDValue" - }, - "quobyte": { - "registry": "registryValue", - "volume": "volumeValue", - "readOnly": true, - "user": "userValue", - "group": "groupValue", - "tenant": "tenantValue" - }, - "azureDisk": { - "diskName": "diskNameValue", - "diskURI": "diskURIValue", - "cachingMode": "cachingModeValue", - "fsType": "fsTypeValue", - "readOnly": true, - "kind": "kindValue" - }, - "photonPersistentDisk": { - "pdID": "pdIDValue", - "fsType": "fsTypeValue" - }, - "projected": { - "sources": [ - { - "secret": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "optional": true - }, - "downwardAPI": { - "items": [ - { - "path": "pathValue", - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "mode": 4 - } - ] - }, - "configMap": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "optional": true - }, - "serviceAccountToken": { - "audience": "audienceValue", - "expirationSeconds": 2, - "path": "pathValue" - }, - "clusterTrustBundle": { - "name": "nameValue", - "signerName": "signerNameValue", - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "optional": true, - "path": "pathValue" - } - } - ], - "defaultMode": 2 - }, - "portworxVolume": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "scaleIO": { - "gateway": "gatewayValue", - "system": "systemValue", - "secretRef": { - "name": "nameValue" - }, - "sslEnabled": true, - "protectionDomain": "protectionDomainValue", - "storagePool": "storagePoolValue", - "storageMode": "storageModeValue", - "volumeName": "volumeNameValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "storageos": { - "volumeName": "volumeNameValue", - "volumeNamespace": "volumeNamespaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "name": "nameValue" - } - }, - "csi": { - "driver": "driverValue", - "readOnly": true, - "fsType": "fsTypeValue", - "volumeAttributes": { - "volumeAttributesKey": "volumeAttributesValue" - }, - "nodePublishSecretRef": { - "name": "nameValue" - } - }, - "ephemeral": { - "volumeClaimTemplate": { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "accessModes": [ - "accessModesValue" - ], - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - } - }, - "volumeName": "volumeNameValue", - "storageClassName": "storageClassNameValue", - "volumeMode": "volumeModeValue", - "dataSource": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue" - }, - "dataSourceRef": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue", - "namespace": "namespaceValue" - }, - "volumeAttributesClassName": "volumeAttributesClassNameValue" - } - } - }, - "image": { - "reference": "referenceValue", - "pullPolicy": "pullPolicyValue" - } - } - ], - "initContainers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "ephemeralContainers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true, - "targetContainerName": "targetContainerNameValue" - } - ], - "restartPolicy": "restartPolicyValue", - "terminationGracePeriodSeconds": 4, - "activeDeadlineSeconds": 5, - "dnsPolicy": "dnsPolicyValue", - "nodeSelector": { - "nodeSelectorKey": "nodeSelectorValue" - }, - "serviceAccountName": "serviceAccountNameValue", - "serviceAccount": "serviceAccountValue", - "automountServiceAccountToken": true, - "nodeName": "nodeNameValue", - "hostNetwork": true, - "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": true, - "securityContext": { - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 2, - "runAsGroup": 6, - "runAsNonRoot": true, - "supplementalGroups": [ - 4 - ], - "supplementalGroupsPolicy": "supplementalGroupsPolicyValue", - "fsGroup": 5, - "sysctls": [ - { - "name": "nameValue", - "value": "valueValue" - } - ], - "fsGroupChangePolicy": "fsGroupChangePolicyValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "imagePullSecrets": [ - { - "name": "nameValue" - } - ], - "hostname": "hostnameValue", - "subdomain": "subdomainValue", - "affinity": { - "nodeAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": { - "nodeSelectorTerms": [ - { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - ] - }, - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "preference": { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - } - ] - }, - "podAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": [ - { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - ], - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "podAffinityTerm": { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - } - ] - }, - "podAntiAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": [ - { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - ], - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "podAffinityTerm": { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - } - ] - } - }, - "schedulerName": "schedulerNameValue", - "tolerations": [ - { - "key": "keyValue", - "operator": "operatorValue", - "value": "valueValue", - "effect": "effectValue", - "tolerationSeconds": 5 - } - ], - "hostAliases": [ - { - "ip": "ipValue", - "hostnames": [ - "hostnamesValue" - ] - } - ], - "priorityClassName": "priorityClassNameValue", - "priority": 25, - "dnsConfig": { - "nameservers": [ - "nameserversValue" - ], - "searches": [ - "searchesValue" - ], - "options": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "readinessGates": [ - { - "conditionType": "conditionTypeValue" - } - ], - "runtimeClassName": "runtimeClassNameValue", - "enableServiceLinks": true, - "preemptionPolicy": "preemptionPolicyValue", - "overhead": { - "overheadKey": "0" - }, - "topologySpreadConstraints": [ - { - "maxSkew": 1, - "topologyKey": "topologyKeyValue", - "whenUnsatisfiable": "whenUnsatisfiableValue", - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "minDomains": 5, - "nodeAffinityPolicy": "nodeAffinityPolicyValue", - "nodeTaintsPolicy": "nodeTaintsPolicyValue", - "matchLabelKeys": [ - "matchLabelKeysValue" - ] - } - ], - "setHostnameAsFQDN": true, - "os": { - "name": "nameValue" - }, - "hostUsers": true, - "schedulingGates": [ - { - "name": "nameValue" - } - ], - "resourceClaims": [ - { - "name": "nameValue", - "resourceClaimName": "resourceClaimNameValue", - "resourceClaimTemplateName": "resourceClaimTemplateNameValue" - } - ] - } - }, - "volumeClaimTemplates": [ - { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "accessModes": [ - "accessModesValue" - ], - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - } - }, - "volumeName": "volumeNameValue", - "storageClassName": "storageClassNameValue", - "volumeMode": "volumeModeValue", - "dataSource": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue" - }, - "dataSourceRef": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue", - "namespace": "namespaceValue" - }, - "volumeAttributesClassName": "volumeAttributesClassNameValue" - }, - "status": { - "phase": "phaseValue", - "accessModes": [ - "accessModesValue" - ], - "capacity": { - "capacityKey": "0" - }, - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "lastProbeTime": "2003-01-01T01:01:01Z", - "lastTransitionTime": "2004-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ], - "allocatedResources": { - "allocatedResourcesKey": "0" - }, - "allocatedResourceStatuses": { - "allocatedResourceStatusesKey": "allocatedResourceStatusesValue" - }, - "currentVolumeAttributesClassName": "currentVolumeAttributesClassNameValue", - "modifyVolumeStatus": { - "targetVolumeAttributesClassName": "targetVolumeAttributesClassNameValue", - "status": "statusValue" - } - } - } - ], - "serviceName": "serviceNameValue", - "podManagementPolicy": "podManagementPolicyValue", - "updateStrategy": { - "type": "typeValue", - "rollingUpdate": { - "partition": 1, - "maxUnavailable": "maxUnavailableValue" - } - }, - "revisionHistoryLimit": 8, - "minReadySeconds": 9, - "persistentVolumeClaimRetentionPolicy": { - "whenDeleted": "whenDeletedValue", - "whenScaled": "whenScaledValue" - }, - "ordinals": { - "start": 1 - } - }, - "status": { - "observedGeneration": 1, - "replicas": 2, - "readyReplicas": 3, - "currentReplicas": 4, - "updatedReplicas": 5, - "currentRevision": "currentRevisionValue", - "updateRevision": "updateRevisionValue", - "collisionCount": 9, - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "lastTransitionTime": "2003-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ], - "availableReplicas": 11 - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/apps.v1.StatefulSet.pb b/testdata/v1.31.0/apps.v1.StatefulSet.pb deleted file mode 100644 index 6d47234a484a57332c2384ab17fe8e383e2d7ffc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12013 zcmeHNU5Fe>9p9Qw%uLN!r}iV8z9j7R<<4bJy>;{;3@FKL;+ZvjF0v4MF|LUa6$q?h!4VoFY!Ul(-}M;?nwkeBKQz|h(7u8p#QGwkLuY? zZsj%@xOtnYs;>I~>;F-||HtJM{urLd2Xxo-bMOT(I>X zeM7hUlpO3(n|iR|^>|3FgtNY@8)Au8_NmoA$L!1ei(0Uw*ky8C!&3KYMf^el6p*8ClzuItrdHKmCKED`P9U$^X0~pzt3V*%=Q>))rJio<9qRD`QgPgn z|CoGrcpD9Pc<|nT#+9);Y(_29KfmdUn`!LBxo>^Dsrdc%gj>e zJ(sYpNdLw0FX8-Ux+#8_1u2f8Of3$=%>>=**78VjPhW7qUBW+~l+EMjB$!gc)q}1O zQ6Y$hPY5pdsLA?0F*A!pSyWRocHG2qm7?E#*Gn%y zQQSzAxAM*mGn8I|n$oRB!u|rY1g|xDlX-OYI95zO(0y4S;*r(WNbjzpZ{Rgqub;=m zeveeRw_A=?U!B9maO^;5@LnW>AmxnbQ$s75-KXTPBT!4BN*6A?E@Z0YGID{t!y6mS z6q7g53)}U$;&*i~eVJy^+whIdFL{!t-$LhbRhV1CMaCr6X&=-FlxEqnn6a5KrA=nW zqdU8Uni#n4Fh7VbvnY1w!k$4|Dy16kcuwCHnpO;`t=j?rvxUy$vdR3*$zh}v{#|XI z<@2gy=tdXRa>+5H=T}y~IaE)d!Mg~aRM*_emE1$eo~(NJ(f1K9b>Q9K&?7ff^f� z3U4;7chg#2bCfrQ^hnV)6!KKfk_|0aj$b|=?a zM85VkH5aseSNa9M{0J`VeUni;!bzassm0bdB&SEJKI_OW1S%IMX@JA~f={w1tubpj8e% zu4BZ&rPy`+;OsI#u<;I(Rueo3!vsE~eh=Xfe#yzMUvl+u)*B|F3Osg?pK6}krG_1r z*(gN{$QfC*q$zMcm7deLgX9(0N)U1-|7ufW)^l7PUbHxptA}w}xaiCkSKM-A8h~>j zLe&9nQQiEqZHcF^^%I1DfN%w8+h%e*!*_-4+%5v6&T>S^aQ#h}i!cmZd398Ih3snD;IE9s@;5iZOSJOyT z!xkM-5#fNwpfK@qGQU^>4`M8ZcEh)7ox{&{dcMBkQIpybfLSXpH4?{54sD+licY+~ zeac@2-AoqGqBRYt1du7qF?1_5h-J@d$B_x-bv|&-cMy6Dp&ueZ_OC$f46c@4;m49{ z#`VBO3=iBwM|Zesj^z0cchC{p6ssmg(MBqYE%dA#)m`*)d@v5LlDj7ah9I(n5Iqc9 zIIH*24uk3rW1&N-S4`WNK5iVxRU6>J3blAzAxzI5ln3|`%|nrMI%OE4P9^j#PGl$e z>Q*`2AX#$}eG_$&cQc3oH*JQO5D6dHc$`~p?x|WY&a{0FH5R(M9mj=&qg^QTu8iWS z-*;ULo(l-2Eq<0PjH@yRzlO@8P1$i~_ByJ-lV+v?*bVg0Jidc)3oqkcCKAbR*PRD< zy7#;Oc^v;0;XOr?q#9ljk7@+EQkB4Q9n0x#f+}<2?J;znNVB+bf;hB3-DCa^?Hx6mjWf~uMnD2<|_`1u+|LusOp499}16btS} zJUNPnASp76hLRBBqaF?2MraFtR;r5*72BmOnpULkHiSYPI?nCCiw@%hOvK})5(9F9 z`tG4=*JF;yg3WB=@LhEHebm4Tho-#RDn204Ord-5Y(`M^abeBx5qf|odBx3yYN=x< zO$QIr6a?e}>(T6qj}ZD7f;tVQJzkEKBD`xk$nQE(&Fn(fD-7?#obUDAuR~t`imUKZWnsi zIOHbVdKOf`uZ9jC$$%7N{HnbsSC@)V5()YdsD_T+f4}<(I(F0E-5T^a=zi3qTrWYs zIIPR@<7!9nlx~F;tbm%W$k3A3h{osfk!`bKM>TX3@EvDGqSyI54mw6XsJMlX~E diff --git a/testdata/v1.31.0/apps.v1.StatefulSet.yaml b/testdata/v1.31.0/apps.v1.StatefulSet.yaml deleted file mode 100644 index 0fa09f8eed..0000000000 --- a/testdata/v1.31.0/apps.v1.StatefulSet.yaml +++ /dev/null @@ -1,1328 +0,0 @@ -apiVersion: apps/v1 -kind: StatefulSet -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - minReadySeconds: 9 - ordinals: - start: 1 - persistentVolumeClaimRetentionPolicy: - whenDeleted: whenDeletedValue - whenScaled: whenScaledValue - podManagementPolicy: podManagementPolicyValue - replicas: 1 - revisionHistoryLimit: 8 - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - serviceName: serviceNameValue - template: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - activeDeadlineSeconds: 5 - affinity: - nodeAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - preference: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - nodeSelectorTerms: - - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - podAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - podAntiAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - automountServiceAccountToken: true - containers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - dnsConfig: - nameservers: - - nameserversValue - options: - - name: nameValue - value: valueValue - searches: - - searchesValue - dnsPolicy: dnsPolicyValue - enableServiceLinks: true - ephemeralContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - targetContainerName: targetContainerNameValue - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - hostAliases: - - hostnames: - - hostnamesValue - ip: ipValue - hostIPC: true - hostNetwork: true - hostPID: true - hostUsers: true - hostname: hostnameValue - imagePullSecrets: - - name: nameValue - initContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - nodeName: nodeNameValue - nodeSelector: - nodeSelectorKey: nodeSelectorValue - os: - name: nameValue - overhead: - overheadKey: "0" - preemptionPolicy: preemptionPolicyValue - priority: 25 - priorityClassName: priorityClassNameValue - readinessGates: - - conditionType: conditionTypeValue - resourceClaims: - - name: nameValue - resourceClaimName: resourceClaimNameValue - resourceClaimTemplateName: resourceClaimTemplateNameValue - restartPolicy: restartPolicyValue - runtimeClassName: runtimeClassNameValue - schedulerName: schedulerNameValue - schedulingGates: - - name: nameValue - securityContext: - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - fsGroup: 5 - fsGroupChangePolicy: fsGroupChangePolicyValue - runAsGroup: 6 - runAsNonRoot: true - runAsUser: 2 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - supplementalGroups: - - 4 - supplementalGroupsPolicy: supplementalGroupsPolicyValue - sysctls: - - name: nameValue - value: valueValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - serviceAccount: serviceAccountValue - serviceAccountName: serviceAccountNameValue - setHostnameAsFQDN: true - shareProcessNamespace: true - subdomain: subdomainValue - terminationGracePeriodSeconds: 4 - tolerations: - - effect: effectValue - key: keyValue - operator: operatorValue - tolerationSeconds: 5 - value: valueValue - topologySpreadConstraints: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - maxSkew: 1 - minDomains: 5 - nodeAffinityPolicy: nodeAffinityPolicyValue - nodeTaintsPolicy: nodeTaintsPolicyValue - topologyKey: topologyKeyValue - whenUnsatisfiable: whenUnsatisfiableValue - volumes: - - awsElasticBlockStore: - fsType: fsTypeValue - partition: 3 - readOnly: true - volumeID: volumeIDValue - azureDisk: - cachingMode: cachingModeValue - diskName: diskNameValue - diskURI: diskURIValue - fsType: fsTypeValue - kind: kindValue - readOnly: true - azureFile: - readOnly: true - secretName: secretNameValue - shareName: shareNameValue - cephfs: - monitors: - - monitorsValue - path: pathValue - readOnly: true - secretFile: secretFileValue - secretRef: - name: nameValue - user: userValue - cinder: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeID: volumeIDValue - configMap: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - csi: - driver: driverValue - fsType: fsTypeValue - nodePublishSecretRef: - name: nameValue - readOnly: true - volumeAttributes: - volumeAttributesKey: volumeAttributesValue - downwardAPI: - defaultMode: 2 - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - emptyDir: - medium: mediumValue - sizeLimit: "0" - ephemeral: - volumeClaimTemplate: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - accessModes: - - accessModesValue - dataSource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - dataSourceRef: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resources: - limits: - limitsKey: "0" - requests: - requestsKey: "0" - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - storageClassName: storageClassNameValue - volumeAttributesClassName: volumeAttributesClassNameValue - volumeMode: volumeModeValue - volumeName: volumeNameValue - fc: - fsType: fsTypeValue - lun: 2 - readOnly: true - targetWWNs: - - targetWWNsValue - wwids: - - wwidsValue - flexVolume: - driver: driverValue - fsType: fsTypeValue - options: - optionsKey: optionsValue - readOnly: true - secretRef: - name: nameValue - flocker: - datasetName: datasetNameValue - datasetUUID: datasetUUIDValue - gcePersistentDisk: - fsType: fsTypeValue - partition: 3 - pdName: pdNameValue - readOnly: true - gitRepo: - directory: directoryValue - repository: repositoryValue - revision: revisionValue - glusterfs: - endpoints: endpointsValue - path: pathValue - readOnly: true - hostPath: - path: pathValue - type: typeValue - image: - pullPolicy: pullPolicyValue - reference: referenceValue - iscsi: - chapAuthDiscovery: true - chapAuthSession: true - fsType: fsTypeValue - initiatorName: initiatorNameValue - iqn: iqnValue - iscsiInterface: iscsiInterfaceValue - lun: 3 - portals: - - portalsValue - readOnly: true - secretRef: - name: nameValue - targetPortal: targetPortalValue - name: nameValue - nfs: - path: pathValue - readOnly: true - server: serverValue - persistentVolumeClaim: - claimName: claimNameValue - readOnly: true - photonPersistentDisk: - fsType: fsTypeValue - pdID: pdIDValue - portworxVolume: - fsType: fsTypeValue - readOnly: true - volumeID: volumeIDValue - projected: - defaultMode: 2 - sources: - - clusterTrustBundle: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - name: nameValue - optional: true - path: pathValue - signerName: signerNameValue - configMap: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - downwardAPI: - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secret: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - serviceAccountToken: - audience: audienceValue - expirationSeconds: 2 - path: pathValue - quobyte: - group: groupValue - readOnly: true - registry: registryValue - tenant: tenantValue - user: userValue - volume: volumeValue - rbd: - fsType: fsTypeValue - image: imageValue - keyring: keyringValue - monitors: - - monitorsValue - pool: poolValue - readOnly: true - secretRef: - name: nameValue - user: userValue - scaleIO: - fsType: fsTypeValue - gateway: gatewayValue - protectionDomain: protectionDomainValue - readOnly: true - secretRef: - name: nameValue - sslEnabled: true - storageMode: storageModeValue - storagePool: storagePoolValue - system: systemValue - volumeName: volumeNameValue - secret: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - optional: true - secretName: secretNameValue - storageos: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeName: volumeNameValue - volumeNamespace: volumeNamespaceValue - vsphereVolume: - fsType: fsTypeValue - storagePolicyID: storagePolicyIDValue - storagePolicyName: storagePolicyNameValue - volumePath: volumePathValue - updateStrategy: - rollingUpdate: - maxUnavailable: maxUnavailableValue - partition: 1 - type: typeValue - volumeClaimTemplates: - - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - accessModes: - - accessModesValue - dataSource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - dataSourceRef: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resources: - limits: - limitsKey: "0" - requests: - requestsKey: "0" - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - storageClassName: storageClassNameValue - volumeAttributesClassName: volumeAttributesClassNameValue - volumeMode: volumeModeValue - volumeName: volumeNameValue - status: - accessModes: - - accessModesValue - allocatedResourceStatuses: - allocatedResourceStatusesKey: allocatedResourceStatusesValue - allocatedResources: - allocatedResourcesKey: "0" - capacity: - capacityKey: "0" - conditions: - - lastProbeTime: "2003-01-01T01:01:01Z" - lastTransitionTime: "2004-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue - currentVolumeAttributesClassName: currentVolumeAttributesClassNameValue - modifyVolumeStatus: - status: statusValue - targetVolumeAttributesClassName: targetVolumeAttributesClassNameValue - phase: phaseValue -status: - availableReplicas: 11 - collisionCount: 9 - conditions: - - lastTransitionTime: "2003-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue - currentReplicas: 4 - currentRevision: currentRevisionValue - observedGeneration: 1 - readyReplicas: 3 - replicas: 2 - updateRevision: updateRevisionValue - updatedReplicas: 5 diff --git a/testdata/v1.31.0/apps.v1beta1.ControllerRevision.json b/testdata/v1.31.0/apps.v1beta1.ControllerRevision.json deleted file mode 100644 index 2b4ec8589e..0000000000 --- a/testdata/v1.31.0/apps.v1beta1.ControllerRevision.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "kind": "ControllerRevision", - "apiVersion": "apps/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "data": { - "apiVersion": "example.com/v1", - "kind": "CustomType", - "spec": { - "replicas": 1 - }, - "status": { - "available": 1 - } - }, - "revision": 3 -} \ No newline at end of file diff --git a/testdata/v1.31.0/apps.v1beta1.ControllerRevision.pb b/testdata/v1.31.0/apps.v1beta1.ControllerRevision.pb deleted file mode 100644 index 59c57ae9a561f78f1d0aec74249c1f84a55384d3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 506 zcmZ8e%}&BV5H3H7up-pP1L<*(#Hf&%kRIWt#u#Hfc$=1itZcWN-Ij=i7w|1S`v|^) zhIcR?Jo^T^-3B4vzWrwAn{U3I_O(MOX@Hdac-9Rug|6of6OpQfb5z$jW11zxd#{j> zGN}uQ@fLW7-u?syDoF8iP5I5dswG543*FPm#}`aY?L?=Rv5`f+1BE)tl<7m2t6R3e zGpN;8&tI=q*Euuj<@?Q`D{|K+bq*nNeU5W)w}5scq@)Q#Bq^ju#FpKyx9zzY&v_P_LBPXSPNwvmI0B4WJpw)RQg`^RKfC(x~c+EuS_pj~y|7EDT;dAv< zah;wKLq5_sb6F%4R7rWU9Jo3Q|B|qwj!3wm8#^?h_yDowcoZeE`5$^n^J5G@%ygQ> oxuW5;#E1q9s!(zkfu=!sX;_m>X0TD50W-OA%nQqQ#doOl3n=BTxc~qF diff --git a/testdata/v1.31.0/apps.v1beta1.ControllerRevision.yaml b/testdata/v1.31.0/apps.v1beta1.ControllerRevision.yaml deleted file mode 100644 index b592efec3c..0000000000 --- a/testdata/v1.31.0/apps.v1beta1.ControllerRevision.yaml +++ /dev/null @@ -1,42 +0,0 @@ -apiVersion: apps/v1beta1 -data: - apiVersion: example.com/v1 - kind: CustomType - spec: - replicas: 1 - status: - available: 1 -kind: ControllerRevision -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -revision: 3 diff --git a/testdata/v1.31.0/apps.v1beta1.Deployment.json b/testdata/v1.31.0/apps.v1beta1.Deployment.json deleted file mode 100644 index 2737e8a9f8..0000000000 --- a/testdata/v1.31.0/apps.v1beta1.Deployment.json +++ /dev/null @@ -1,1806 +0,0 @@ -{ - "kind": "Deployment", - "apiVersion": "apps/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "replicas": 1, - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "template": { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "volumes": [ - { - "name": "nameValue", - "hostPath": { - "path": "pathValue", - "type": "typeValue" - }, - "emptyDir": { - "medium": "mediumValue", - "sizeLimit": "0" - }, - "gcePersistentDisk": { - "pdName": "pdNameValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "awsElasticBlockStore": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "gitRepo": { - "repository": "repositoryValue", - "revision": "revisionValue", - "directory": "directoryValue" - }, - "secret": { - "secretName": "secretNameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "defaultMode": 3, - "optional": true - }, - "nfs": { - "server": "serverValue", - "path": "pathValue", - "readOnly": true - }, - "iscsi": { - "targetPortal": "targetPortalValue", - "iqn": "iqnValue", - "lun": 3, - "iscsiInterface": "iscsiInterfaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "portals": [ - "portalsValue" - ], - "chapAuthDiscovery": true, - "chapAuthSession": true, - "secretRef": { - "name": "nameValue" - }, - "initiatorName": "initiatorNameValue" - }, - "glusterfs": { - "endpoints": "endpointsValue", - "path": "pathValue", - "readOnly": true - }, - "persistentVolumeClaim": { - "claimName": "claimNameValue", - "readOnly": true - }, - "rbd": { - "monitors": [ - "monitorsValue" - ], - "image": "imageValue", - "fsType": "fsTypeValue", - "pool": "poolValue", - "user": "userValue", - "keyring": "keyringValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true - }, - "flexVolume": { - "driver": "driverValue", - "fsType": "fsTypeValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true, - "options": { - "optionsKey": "optionsValue" - } - }, - "cinder": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "name": "nameValue" - } - }, - "cephfs": { - "monitors": [ - "monitorsValue" - ], - "path": "pathValue", - "user": "userValue", - "secretFile": "secretFileValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true - }, - "flocker": { - "datasetName": "datasetNameValue", - "datasetUUID": "datasetUUIDValue" - }, - "downwardAPI": { - "items": [ - { - "path": "pathValue", - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "mode": 4 - } - ], - "defaultMode": 2 - }, - "fc": { - "targetWWNs": [ - "targetWWNsValue" - ], - "lun": 2, - "fsType": "fsTypeValue", - "readOnly": true, - "wwids": [ - "wwidsValue" - ] - }, - "azureFile": { - "secretName": "secretNameValue", - "shareName": "shareNameValue", - "readOnly": true - }, - "configMap": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "defaultMode": 3, - "optional": true - }, - "vsphereVolume": { - "volumePath": "volumePathValue", - "fsType": "fsTypeValue", - "storagePolicyName": "storagePolicyNameValue", - "storagePolicyID": "storagePolicyIDValue" - }, - "quobyte": { - "registry": "registryValue", - "volume": "volumeValue", - "readOnly": true, - "user": "userValue", - "group": "groupValue", - "tenant": "tenantValue" - }, - "azureDisk": { - "diskName": "diskNameValue", - "diskURI": "diskURIValue", - "cachingMode": "cachingModeValue", - "fsType": "fsTypeValue", - "readOnly": true, - "kind": "kindValue" - }, - "photonPersistentDisk": { - "pdID": "pdIDValue", - "fsType": "fsTypeValue" - }, - "projected": { - "sources": [ - { - "secret": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "optional": true - }, - "downwardAPI": { - "items": [ - { - "path": "pathValue", - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "mode": 4 - } - ] - }, - "configMap": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "optional": true - }, - "serviceAccountToken": { - "audience": "audienceValue", - "expirationSeconds": 2, - "path": "pathValue" - }, - "clusterTrustBundle": { - "name": "nameValue", - "signerName": "signerNameValue", - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "optional": true, - "path": "pathValue" - } - } - ], - "defaultMode": 2 - }, - "portworxVolume": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "scaleIO": { - "gateway": "gatewayValue", - "system": "systemValue", - "secretRef": { - "name": "nameValue" - }, - "sslEnabled": true, - "protectionDomain": "protectionDomainValue", - "storagePool": "storagePoolValue", - "storageMode": "storageModeValue", - "volumeName": "volumeNameValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "storageos": { - "volumeName": "volumeNameValue", - "volumeNamespace": "volumeNamespaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "name": "nameValue" - } - }, - "csi": { - "driver": "driverValue", - "readOnly": true, - "fsType": "fsTypeValue", - "volumeAttributes": { - "volumeAttributesKey": "volumeAttributesValue" - }, - "nodePublishSecretRef": { - "name": "nameValue" - } - }, - "ephemeral": { - "volumeClaimTemplate": { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "accessModes": [ - "accessModesValue" - ], - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - } - }, - "volumeName": "volumeNameValue", - "storageClassName": "storageClassNameValue", - "volumeMode": "volumeModeValue", - "dataSource": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue" - }, - "dataSourceRef": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue", - "namespace": "namespaceValue" - }, - "volumeAttributesClassName": "volumeAttributesClassNameValue" - } - } - }, - "image": { - "reference": "referenceValue", - "pullPolicy": "pullPolicyValue" - } - } - ], - "initContainers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "ephemeralContainers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true, - "targetContainerName": "targetContainerNameValue" - } - ], - "restartPolicy": "restartPolicyValue", - "terminationGracePeriodSeconds": 4, - "activeDeadlineSeconds": 5, - "dnsPolicy": "dnsPolicyValue", - "nodeSelector": { - "nodeSelectorKey": "nodeSelectorValue" - }, - "serviceAccountName": "serviceAccountNameValue", - "serviceAccount": "serviceAccountValue", - "automountServiceAccountToken": true, - "nodeName": "nodeNameValue", - "hostNetwork": true, - "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": true, - "securityContext": { - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 2, - "runAsGroup": 6, - "runAsNonRoot": true, - "supplementalGroups": [ - 4 - ], - "supplementalGroupsPolicy": "supplementalGroupsPolicyValue", - "fsGroup": 5, - "sysctls": [ - { - "name": "nameValue", - "value": "valueValue" - } - ], - "fsGroupChangePolicy": "fsGroupChangePolicyValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "imagePullSecrets": [ - { - "name": "nameValue" - } - ], - "hostname": "hostnameValue", - "subdomain": "subdomainValue", - "affinity": { - "nodeAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": { - "nodeSelectorTerms": [ - { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - ] - }, - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "preference": { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - } - ] - }, - "podAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": [ - { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - ], - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "podAffinityTerm": { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - } - ] - }, - "podAntiAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": [ - { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - ], - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "podAffinityTerm": { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - } - ] - } - }, - "schedulerName": "schedulerNameValue", - "tolerations": [ - { - "key": "keyValue", - "operator": "operatorValue", - "value": "valueValue", - "effect": "effectValue", - "tolerationSeconds": 5 - } - ], - "hostAliases": [ - { - "ip": "ipValue", - "hostnames": [ - "hostnamesValue" - ] - } - ], - "priorityClassName": "priorityClassNameValue", - "priority": 25, - "dnsConfig": { - "nameservers": [ - "nameserversValue" - ], - "searches": [ - "searchesValue" - ], - "options": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "readinessGates": [ - { - "conditionType": "conditionTypeValue" - } - ], - "runtimeClassName": "runtimeClassNameValue", - "enableServiceLinks": true, - "preemptionPolicy": "preemptionPolicyValue", - "overhead": { - "overheadKey": "0" - }, - "topologySpreadConstraints": [ - { - "maxSkew": 1, - "topologyKey": "topologyKeyValue", - "whenUnsatisfiable": "whenUnsatisfiableValue", - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "minDomains": 5, - "nodeAffinityPolicy": "nodeAffinityPolicyValue", - "nodeTaintsPolicy": "nodeTaintsPolicyValue", - "matchLabelKeys": [ - "matchLabelKeysValue" - ] - } - ], - "setHostnameAsFQDN": true, - "os": { - "name": "nameValue" - }, - "hostUsers": true, - "schedulingGates": [ - { - "name": "nameValue" - } - ], - "resourceClaims": [ - { - "name": "nameValue", - "resourceClaimName": "resourceClaimNameValue", - "resourceClaimTemplateName": "resourceClaimTemplateNameValue" - } - ] - } - }, - "strategy": { - "type": "typeValue", - "rollingUpdate": { - "maxUnavailable": "maxUnavailableValue", - "maxSurge": "maxSurgeValue" - } - }, - "minReadySeconds": 5, - "revisionHistoryLimit": 6, - "paused": true, - "rollbackTo": { - "revision": 1 - }, - "progressDeadlineSeconds": 9 - }, - "status": { - "observedGeneration": 1, - "replicas": 2, - "updatedReplicas": 3, - "readyReplicas": 7, - "availableReplicas": 4, - "unavailableReplicas": 5, - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "lastUpdateTime": "2006-01-01T01:01:01Z", - "lastTransitionTime": "2007-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ], - "collisionCount": 8 - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/apps.v1beta1.Deployment.pb b/testdata/v1.31.0/apps.v1beta1.Deployment.pb deleted file mode 100644 index f21185b0b5890f2d9e1b0918fb55423271e8a61d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10934 zcmeHNUx*w@8Q*U#nM<{=TZ;_viOjZJi26h(=0==LOIAUf5uv@d71hm}k2?9p;4e^)>RR94R

zi}X*#*9NE2QHT5Q{AaW_GLMrn+X^o3cyeVLhe+<5-)h!^?nb&2Vo`tl^_2K9{8^u9QqG_M*w8+}iHSaN{2T#{GJk{B&G3kDKFUk`z26 z+>~2X2$RjHloUJ6;@yty86_~Mog_uiN-c>NTNzlUM`u8vA?2QHcRTFd8Tr-Vi259< z`pk0!9=d)43!n9PYF}E#;yyFe?)lGxYIdWz6$erD;!(>SH`G1Afj4ncqqrL|s*44jLs-d@O-`8di(Sg1!P9 zlsi1+1}cyWymW$8m}7Y^cS89YRmEDRq+;3z@1!5pVEwD4+;MRxH@0j_cn7Uoh^(m+ z=>^Yqr7HD87gZNS=1XXHK6l#Ut)a?z8aB?7qUG~+jnwHhb?6M#H9}l3bzG(RS!OWpr?m8eWC6q2*dRgviE!Vd%xOQZF zn_IH;27LTM99M!(!_OkqG`xY|sQS`JA^jGdCsk=~sTO@EsZ9n59|X;cYjblaRZ1W4 zYme9L4m1gB+vY)-SY}bqE;f4_^lX>vr0u(1Pa>@tGRJU2@v;l&NZI1SR{AqqieA@N z&xwAmW*X)u!gATQ;_$12Zx-gWFnAX*qwK48*8?l=y20KB> zq&FJ``Gn`YAvzt5l4slwLO^O(OV=qjutw67ir+@fPLEat-d3$fJJ8$!9b96hvrx0F7V}dx zr&X_O+cIJZaMK@@Ra;lnkdozYa8QrvWd@Z5^{VdG6uMpM#@XoBd`z6<1oBRSo7B-f7hd&88fV6c05S94*X2s@^# zQHlX56j`#BE_6MWj@xy@G>Ypbq+ID+eM0v7u4iCGOPJhz#LJ>VXRmm2l^c_oICqh% z_Sh;jtS>pX41KFV0`fYL3hCP~x~wKh)jZTj(7|JBE0?+u?TC2Pi-EbxVnSV?QY7!& zo8x3~4yw#iL&jK&@^YSr6U^2R%^sfn*r_AyPr85`ujR;h{?99z!xel2WVrkka-$Ab z9U>quqw9_G%OpPgp+#%aHnF;Sh^ ztj8q7LBv2*_&A+ks-Ookmm|9oQ>~sSPqjONvFI}kD?!|_FL=yM9WR}Fuu}q^`dw!s zSVL^4gJ)n}Cz$|r!gfu=jtpYOcUuWF!Me@|j`=pgYXIK|%?u@RMUlG5h)jrpQ z3o+Pm3r_5@(jt==Gu(mWswq}2WYK1}6}#}H8`WL-BsrSUt90!t#U^A{NYNwGB2>Kx zdo*f$v_%eOzG69n@^RxCQgtvrxWH^tR*1@TN7V-Li{@19oEA(o!c;2H(pZ0o7`G;0^fj5@NeeG|AuCagdlxj<6&;Kd7!Xfnr;Om)mYp#oP-xjjrIZNeHq1xpzC=y zh6|+9w)mI28CTUD{2G)an{txM>~*MMNV75mb_4#ECwG9Xk`=PgLL%MoxQpmc4}R9a zjFP_rInYd!R-*+HtVU*6S}k-v*LK@G2xYN(2b{W&WmR1KgZ%0IWQPZPw9~%>F62i` zXKlF42U7HZvXT7;&?xV%c`DkM_J*~53?7&*cvAE%WhA(vU-J(%=- z?)p63=`S4q5{|tK4N?=SsW@$wA5gqZVfYv}<5cxwwC48!_hDR|xLJ5w>N@GAgZE$p z33_qHCoVt9-`YWB5_g@wtxHR*_9NfyOg}&Q4*zIe$n_E5Pu2$VL!f1g)2_Di@u8h{@*h d8s+c)_$FQjZQ#@0KmP=uP8~U&*GBY_{{m_561)Ha diff --git a/testdata/v1.31.0/apps.v1beta1.Deployment.yaml b/testdata/v1.31.0/apps.v1beta1.Deployment.yaml deleted file mode 100644 index 259b45ff4e..0000000000 --- a/testdata/v1.31.0/apps.v1beta1.Deployment.yaml +++ /dev/null @@ -1,1241 +0,0 @@ -apiVersion: apps/v1beta1 -kind: Deployment -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - minReadySeconds: 5 - paused: true - progressDeadlineSeconds: 9 - replicas: 1 - revisionHistoryLimit: 6 - rollbackTo: - revision: 1 - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - strategy: - rollingUpdate: - maxSurge: maxSurgeValue - maxUnavailable: maxUnavailableValue - type: typeValue - template: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - activeDeadlineSeconds: 5 - affinity: - nodeAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - preference: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - nodeSelectorTerms: - - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - podAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - podAntiAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - automountServiceAccountToken: true - containers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - dnsConfig: - nameservers: - - nameserversValue - options: - - name: nameValue - value: valueValue - searches: - - searchesValue - dnsPolicy: dnsPolicyValue - enableServiceLinks: true - ephemeralContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - targetContainerName: targetContainerNameValue - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - hostAliases: - - hostnames: - - hostnamesValue - ip: ipValue - hostIPC: true - hostNetwork: true - hostPID: true - hostUsers: true - hostname: hostnameValue - imagePullSecrets: - - name: nameValue - initContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - nodeName: nodeNameValue - nodeSelector: - nodeSelectorKey: nodeSelectorValue - os: - name: nameValue - overhead: - overheadKey: "0" - preemptionPolicy: preemptionPolicyValue - priority: 25 - priorityClassName: priorityClassNameValue - readinessGates: - - conditionType: conditionTypeValue - resourceClaims: - - name: nameValue - resourceClaimName: resourceClaimNameValue - resourceClaimTemplateName: resourceClaimTemplateNameValue - restartPolicy: restartPolicyValue - runtimeClassName: runtimeClassNameValue - schedulerName: schedulerNameValue - schedulingGates: - - name: nameValue - securityContext: - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - fsGroup: 5 - fsGroupChangePolicy: fsGroupChangePolicyValue - runAsGroup: 6 - runAsNonRoot: true - runAsUser: 2 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - supplementalGroups: - - 4 - supplementalGroupsPolicy: supplementalGroupsPolicyValue - sysctls: - - name: nameValue - value: valueValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - serviceAccount: serviceAccountValue - serviceAccountName: serviceAccountNameValue - setHostnameAsFQDN: true - shareProcessNamespace: true - subdomain: subdomainValue - terminationGracePeriodSeconds: 4 - tolerations: - - effect: effectValue - key: keyValue - operator: operatorValue - tolerationSeconds: 5 - value: valueValue - topologySpreadConstraints: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - maxSkew: 1 - minDomains: 5 - nodeAffinityPolicy: nodeAffinityPolicyValue - nodeTaintsPolicy: nodeTaintsPolicyValue - topologyKey: topologyKeyValue - whenUnsatisfiable: whenUnsatisfiableValue - volumes: - - awsElasticBlockStore: - fsType: fsTypeValue - partition: 3 - readOnly: true - volumeID: volumeIDValue - azureDisk: - cachingMode: cachingModeValue - diskName: diskNameValue - diskURI: diskURIValue - fsType: fsTypeValue - kind: kindValue - readOnly: true - azureFile: - readOnly: true - secretName: secretNameValue - shareName: shareNameValue - cephfs: - monitors: - - monitorsValue - path: pathValue - readOnly: true - secretFile: secretFileValue - secretRef: - name: nameValue - user: userValue - cinder: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeID: volumeIDValue - configMap: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - csi: - driver: driverValue - fsType: fsTypeValue - nodePublishSecretRef: - name: nameValue - readOnly: true - volumeAttributes: - volumeAttributesKey: volumeAttributesValue - downwardAPI: - defaultMode: 2 - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - emptyDir: - medium: mediumValue - sizeLimit: "0" - ephemeral: - volumeClaimTemplate: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - accessModes: - - accessModesValue - dataSource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - dataSourceRef: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resources: - limits: - limitsKey: "0" - requests: - requestsKey: "0" - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - storageClassName: storageClassNameValue - volumeAttributesClassName: volumeAttributesClassNameValue - volumeMode: volumeModeValue - volumeName: volumeNameValue - fc: - fsType: fsTypeValue - lun: 2 - readOnly: true - targetWWNs: - - targetWWNsValue - wwids: - - wwidsValue - flexVolume: - driver: driverValue - fsType: fsTypeValue - options: - optionsKey: optionsValue - readOnly: true - secretRef: - name: nameValue - flocker: - datasetName: datasetNameValue - datasetUUID: datasetUUIDValue - gcePersistentDisk: - fsType: fsTypeValue - partition: 3 - pdName: pdNameValue - readOnly: true - gitRepo: - directory: directoryValue - repository: repositoryValue - revision: revisionValue - glusterfs: - endpoints: endpointsValue - path: pathValue - readOnly: true - hostPath: - path: pathValue - type: typeValue - image: - pullPolicy: pullPolicyValue - reference: referenceValue - iscsi: - chapAuthDiscovery: true - chapAuthSession: true - fsType: fsTypeValue - initiatorName: initiatorNameValue - iqn: iqnValue - iscsiInterface: iscsiInterfaceValue - lun: 3 - portals: - - portalsValue - readOnly: true - secretRef: - name: nameValue - targetPortal: targetPortalValue - name: nameValue - nfs: - path: pathValue - readOnly: true - server: serverValue - persistentVolumeClaim: - claimName: claimNameValue - readOnly: true - photonPersistentDisk: - fsType: fsTypeValue - pdID: pdIDValue - portworxVolume: - fsType: fsTypeValue - readOnly: true - volumeID: volumeIDValue - projected: - defaultMode: 2 - sources: - - clusterTrustBundle: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - name: nameValue - optional: true - path: pathValue - signerName: signerNameValue - configMap: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - downwardAPI: - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secret: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - serviceAccountToken: - audience: audienceValue - expirationSeconds: 2 - path: pathValue - quobyte: - group: groupValue - readOnly: true - registry: registryValue - tenant: tenantValue - user: userValue - volume: volumeValue - rbd: - fsType: fsTypeValue - image: imageValue - keyring: keyringValue - monitors: - - monitorsValue - pool: poolValue - readOnly: true - secretRef: - name: nameValue - user: userValue - scaleIO: - fsType: fsTypeValue - gateway: gatewayValue - protectionDomain: protectionDomainValue - readOnly: true - secretRef: - name: nameValue - sslEnabled: true - storageMode: storageModeValue - storagePool: storagePoolValue - system: systemValue - volumeName: volumeNameValue - secret: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - optional: true - secretName: secretNameValue - storageos: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeName: volumeNameValue - volumeNamespace: volumeNamespaceValue - vsphereVolume: - fsType: fsTypeValue - storagePolicyID: storagePolicyIDValue - storagePolicyName: storagePolicyNameValue - volumePath: volumePathValue -status: - availableReplicas: 4 - collisionCount: 8 - conditions: - - lastTransitionTime: "2007-01-01T01:01:01Z" - lastUpdateTime: "2006-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue - observedGeneration: 1 - readyReplicas: 7 - replicas: 2 - unavailableReplicas: 5 - updatedReplicas: 3 diff --git a/testdata/v1.31.0/apps.v1beta1.DeploymentRollback.json b/testdata/v1.31.0/apps.v1beta1.DeploymentRollback.json deleted file mode 100644 index b2c53b6afd..0000000000 --- a/testdata/v1.31.0/apps.v1beta1.DeploymentRollback.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "kind": "DeploymentRollback", - "apiVersion": "apps/v1beta1", - "name": "nameValue", - "updatedAnnotations": { - "updatedAnnotationsKey": "updatedAnnotationsValue" - }, - "rollbackTo": { - "revision": 1 - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/apps.v1beta1.DeploymentRollback.pb b/testdata/v1.31.0/apps.v1beta1.DeploymentRollback.pb deleted file mode 100644 index acf1d1c08d6f323b42f6221213e46c4b13116bf7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 111 zcmd0{C}!YN;^IjxC@9u1GfYY?Ni-A^a!D=7$*;^!%_|AY&&f$jOwJZ^O>9(eERgmB*$6mCBLh;z6iU<`C-X`s|tl4hD?nbEM5BL#+XFtI| z5c&_|!Lxs$n+>hi+nYBtZ{ED5uN<;RnviAc@U|19h7R2rj({V5s*?8#sSB9l74RJC z_7nw5(0IP2Lci#$3`XThw559p9Qw%uLN!r?R`*bUxVY%bm-ddV8Y>VL(Y{6VL4Jp35YAiR%aUcGt{Q z($n47-7}kw2pSQNyeI)d4ipj)LVOSw?j=5mc{+pV!##;0NCY2(578$-9`xT;{ZT!; z$*tT512=CoRn=AhfBiq|_y4$j!XLwjaY=Vw|K-6eYc$YbA;oin9?*8*I!6O?|Lgcq zIb5*y9(_}{`jqVNP@8(N;Ei}lt%S3_s~cj8R`#jYUS#%V{zWa{XD0tupYW*f^gUQd zJ)b!?A3d?Jna{s}^Dn>Lql_)Uub)4<55Jc2>NGA``Wm(T*Xaf+il6+8H4RsE+jf9V z*o03j(tp0@(yO>|nc3oCHKkumsHs(Tm&t_8p%cifwwbM4>?#n*_qmSNaH*%;dWU*^ zfK(he&q3E4buPT(nA zaP^=oL{tc3;S++3J!-OkPt1&CG^ZZJMb}I$i4@zZvP_T9AZ-Sh2aeV6(X*$;SHml6 zbGYhJ*YR24c(Gb|bifk(QY$9&sF6(9KZC12H9Q)m=N^=lDkXk;Jfxwa;-XKzL9GAM zJZcW`{y_ISG+1`LK(_>qdG?kt?dfst0P_u>owWn%wPOcSlbM)9jgreh7K(ckwTjY( zUPNnz*(_i>FpvXlZMqJ#1MwM=$!ZZ?F)W?+k`ENL`c+)+Ik1xxSvJ9}2Ug8V zR%ME`g6lYfm0F<>tn(%H5}2LG><<6ekZC-L*3RIf>9ORF=?to=7&~s_xJuD) zzU!rzo+xgl$y<46h8aq)Kuzh^B4K}#S%TM^yvZE8dK@dJ9_YTT5An##N~Cw!&^Pd^ ztk=)sVZTQz+}kb3s;|ysVmNl7Gk7l&L6CCB^QoZ~% z+#k?!D@w*k zJw&(n;-Bpu!I`HIXMUB#if$Ox_d|P(Ue*_}0!W%*C?nKl&LEF2rw*DN`IN6+Dk zN88j(%$!u+zGaCQgDW@rQCYTi8HSV$rw74?h+4D)AS)q*T6Nv=Ae`x(W)T{BN!mim z0njRk9@jBq;8N^5esFe~AK3T_l2#Ku2*U(Eqka$J4}ZzYj$d;1P}UnJp$a^9kDqFu z+M$LWlG!Ll3dk8*u%sz)J(Zr*w}a#r*Gdp_CI4!ZV%Bq99bU9JlB z>e@kx@{DYb;Nd-pw1)x_V=2VtEO|}H^i6m`|M5dAZ0o0L9YG-;Ypm=P2ng=!30(2ss*b5X`I4JQt+Gz z_N!?ms$q)`sEBYtV^Em*IGJClfCn*_Lc8HxwHEQ=PS4lpJ!(=L0x;{GOO3?wl7m|( zg`yL$Z=dp4KsS@cGiX)ADFI~Catz%H4Px1I+Hqt8d7Tek^BsiVM(BqKkp0ULJA!yR-)HpQw5QM8eYViP^J`)WrH>oOan%NRaE@9$tq`W?_R9nOh~~k_Ih`_$P^S`l z77k=5`07?U+#p$V5q%SNk#{qP|2J)hmk{XC0oV=n&pf_^a0@Tv9VQaV zPS>3Wce?w#{&^h#72#b)lB6155RYmEx>A+EaUIL)Y=A0r;q5YXJ&f^$i-y`$@P4J4F z3Dr`^PMQuLqDctI1JMsBKJ!6X&7G6v&ZLb34?1 zBez+`Bg8R69Hac}DF5208law0{&kdp9i$bpk5F~_i1}ACE&5;Pw=~WCIEQZKpS);Q!QTY45$z^{f59m#+cWBjVUCRdk=P!b9H5vYca-G9IL2s(Dt-rXAXH|T!U zqFgUQzBsJQ@#AVo@T6{q6|8`ot;o=l)`-Rz@R2REVMjG|67ogI9y`l-Z@vH(XXqXX z-sF9sX}3&PA`73z$A!Ci@;V|jT2rFZOHyd5PrHt}#M_(00)vdIYw~p+1>}E-SF{0D zUsx#2l_6wBtp$yYGZ{HJ}*-w^QEQ&l*Lxdi0xug9n;4C3!fg9+W-In diff --git a/testdata/v1.31.0/apps.v1beta1.StatefulSet.yaml b/testdata/v1.31.0/apps.v1beta1.StatefulSet.yaml deleted file mode 100644 index 684f18bf47..0000000000 --- a/testdata/v1.31.0/apps.v1beta1.StatefulSet.yaml +++ /dev/null @@ -1,1328 +0,0 @@ -apiVersion: apps/v1beta1 -kind: StatefulSet -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - minReadySeconds: 9 - ordinals: - start: 1 - persistentVolumeClaimRetentionPolicy: - whenDeleted: whenDeletedValue - whenScaled: whenScaledValue - podManagementPolicy: podManagementPolicyValue - replicas: 1 - revisionHistoryLimit: 8 - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - serviceName: serviceNameValue - template: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - activeDeadlineSeconds: 5 - affinity: - nodeAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - preference: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - nodeSelectorTerms: - - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - podAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - podAntiAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - automountServiceAccountToken: true - containers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - dnsConfig: - nameservers: - - nameserversValue - options: - - name: nameValue - value: valueValue - searches: - - searchesValue - dnsPolicy: dnsPolicyValue - enableServiceLinks: true - ephemeralContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - targetContainerName: targetContainerNameValue - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - hostAliases: - - hostnames: - - hostnamesValue - ip: ipValue - hostIPC: true - hostNetwork: true - hostPID: true - hostUsers: true - hostname: hostnameValue - imagePullSecrets: - - name: nameValue - initContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - nodeName: nodeNameValue - nodeSelector: - nodeSelectorKey: nodeSelectorValue - os: - name: nameValue - overhead: - overheadKey: "0" - preemptionPolicy: preemptionPolicyValue - priority: 25 - priorityClassName: priorityClassNameValue - readinessGates: - - conditionType: conditionTypeValue - resourceClaims: - - name: nameValue - resourceClaimName: resourceClaimNameValue - resourceClaimTemplateName: resourceClaimTemplateNameValue - restartPolicy: restartPolicyValue - runtimeClassName: runtimeClassNameValue - schedulerName: schedulerNameValue - schedulingGates: - - name: nameValue - securityContext: - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - fsGroup: 5 - fsGroupChangePolicy: fsGroupChangePolicyValue - runAsGroup: 6 - runAsNonRoot: true - runAsUser: 2 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - supplementalGroups: - - 4 - supplementalGroupsPolicy: supplementalGroupsPolicyValue - sysctls: - - name: nameValue - value: valueValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - serviceAccount: serviceAccountValue - serviceAccountName: serviceAccountNameValue - setHostnameAsFQDN: true - shareProcessNamespace: true - subdomain: subdomainValue - terminationGracePeriodSeconds: 4 - tolerations: - - effect: effectValue - key: keyValue - operator: operatorValue - tolerationSeconds: 5 - value: valueValue - topologySpreadConstraints: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - maxSkew: 1 - minDomains: 5 - nodeAffinityPolicy: nodeAffinityPolicyValue - nodeTaintsPolicy: nodeTaintsPolicyValue - topologyKey: topologyKeyValue - whenUnsatisfiable: whenUnsatisfiableValue - volumes: - - awsElasticBlockStore: - fsType: fsTypeValue - partition: 3 - readOnly: true - volumeID: volumeIDValue - azureDisk: - cachingMode: cachingModeValue - diskName: diskNameValue - diskURI: diskURIValue - fsType: fsTypeValue - kind: kindValue - readOnly: true - azureFile: - readOnly: true - secretName: secretNameValue - shareName: shareNameValue - cephfs: - monitors: - - monitorsValue - path: pathValue - readOnly: true - secretFile: secretFileValue - secretRef: - name: nameValue - user: userValue - cinder: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeID: volumeIDValue - configMap: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - csi: - driver: driverValue - fsType: fsTypeValue - nodePublishSecretRef: - name: nameValue - readOnly: true - volumeAttributes: - volumeAttributesKey: volumeAttributesValue - downwardAPI: - defaultMode: 2 - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - emptyDir: - medium: mediumValue - sizeLimit: "0" - ephemeral: - volumeClaimTemplate: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - accessModes: - - accessModesValue - dataSource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - dataSourceRef: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resources: - limits: - limitsKey: "0" - requests: - requestsKey: "0" - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - storageClassName: storageClassNameValue - volumeAttributesClassName: volumeAttributesClassNameValue - volumeMode: volumeModeValue - volumeName: volumeNameValue - fc: - fsType: fsTypeValue - lun: 2 - readOnly: true - targetWWNs: - - targetWWNsValue - wwids: - - wwidsValue - flexVolume: - driver: driverValue - fsType: fsTypeValue - options: - optionsKey: optionsValue - readOnly: true - secretRef: - name: nameValue - flocker: - datasetName: datasetNameValue - datasetUUID: datasetUUIDValue - gcePersistentDisk: - fsType: fsTypeValue - partition: 3 - pdName: pdNameValue - readOnly: true - gitRepo: - directory: directoryValue - repository: repositoryValue - revision: revisionValue - glusterfs: - endpoints: endpointsValue - path: pathValue - readOnly: true - hostPath: - path: pathValue - type: typeValue - image: - pullPolicy: pullPolicyValue - reference: referenceValue - iscsi: - chapAuthDiscovery: true - chapAuthSession: true - fsType: fsTypeValue - initiatorName: initiatorNameValue - iqn: iqnValue - iscsiInterface: iscsiInterfaceValue - lun: 3 - portals: - - portalsValue - readOnly: true - secretRef: - name: nameValue - targetPortal: targetPortalValue - name: nameValue - nfs: - path: pathValue - readOnly: true - server: serverValue - persistentVolumeClaim: - claimName: claimNameValue - readOnly: true - photonPersistentDisk: - fsType: fsTypeValue - pdID: pdIDValue - portworxVolume: - fsType: fsTypeValue - readOnly: true - volumeID: volumeIDValue - projected: - defaultMode: 2 - sources: - - clusterTrustBundle: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - name: nameValue - optional: true - path: pathValue - signerName: signerNameValue - configMap: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - downwardAPI: - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secret: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - serviceAccountToken: - audience: audienceValue - expirationSeconds: 2 - path: pathValue - quobyte: - group: groupValue - readOnly: true - registry: registryValue - tenant: tenantValue - user: userValue - volume: volumeValue - rbd: - fsType: fsTypeValue - image: imageValue - keyring: keyringValue - monitors: - - monitorsValue - pool: poolValue - readOnly: true - secretRef: - name: nameValue - user: userValue - scaleIO: - fsType: fsTypeValue - gateway: gatewayValue - protectionDomain: protectionDomainValue - readOnly: true - secretRef: - name: nameValue - sslEnabled: true - storageMode: storageModeValue - storagePool: storagePoolValue - system: systemValue - volumeName: volumeNameValue - secret: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - optional: true - secretName: secretNameValue - storageos: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeName: volumeNameValue - volumeNamespace: volumeNamespaceValue - vsphereVolume: - fsType: fsTypeValue - storagePolicyID: storagePolicyIDValue - storagePolicyName: storagePolicyNameValue - volumePath: volumePathValue - updateStrategy: - rollingUpdate: - maxUnavailable: maxUnavailableValue - partition: 1 - type: typeValue - volumeClaimTemplates: - - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - accessModes: - - accessModesValue - dataSource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - dataSourceRef: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resources: - limits: - limitsKey: "0" - requests: - requestsKey: "0" - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - storageClassName: storageClassNameValue - volumeAttributesClassName: volumeAttributesClassNameValue - volumeMode: volumeModeValue - volumeName: volumeNameValue - status: - accessModes: - - accessModesValue - allocatedResourceStatuses: - allocatedResourceStatusesKey: allocatedResourceStatusesValue - allocatedResources: - allocatedResourcesKey: "0" - capacity: - capacityKey: "0" - conditions: - - lastProbeTime: "2003-01-01T01:01:01Z" - lastTransitionTime: "2004-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue - currentVolumeAttributesClassName: currentVolumeAttributesClassNameValue - modifyVolumeStatus: - status: statusValue - targetVolumeAttributesClassName: targetVolumeAttributesClassNameValue - phase: phaseValue -status: - availableReplicas: 11 - collisionCount: 9 - conditions: - - lastTransitionTime: "2003-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue - currentReplicas: 4 - currentRevision: currentRevisionValue - observedGeneration: 1 - readyReplicas: 3 - replicas: 2 - updateRevision: updateRevisionValue - updatedReplicas: 5 diff --git a/testdata/v1.31.0/apps.v1beta2.ControllerRevision.json b/testdata/v1.31.0/apps.v1beta2.ControllerRevision.json deleted file mode 100644 index 60c5f5767e..0000000000 --- a/testdata/v1.31.0/apps.v1beta2.ControllerRevision.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "kind": "ControllerRevision", - "apiVersion": "apps/v1beta2", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "data": { - "apiVersion": "example.com/v1", - "kind": "CustomType", - "spec": { - "replicas": 1 - }, - "status": { - "available": 1 - } - }, - "revision": 3 -} \ No newline at end of file diff --git a/testdata/v1.31.0/apps.v1beta2.ControllerRevision.pb b/testdata/v1.31.0/apps.v1beta2.ControllerRevision.pb deleted file mode 100644 index 869de5ce53ffe662fc426736417767fea066c4ed..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 506 zcmZ8e%}&BV5H3H7up-pP1L<*(#Hf&%kRIWt#u#Hfc$=1itZcWN-Ij=i7w|1S`v|^) zhIcR?Jo^T^-3B4vzWrwAn{U3I_O(MOX@Hdac-9Rug`VdP6OpQfb5z$jW11zxd#{j> zGN}uQ@fLW7-u?syDoF8iP5I5dswG543*FPm#}`aY?L?=Rv5`f+1BE)tl<7m2t6R3e zGpN;8&tI=q*Euuj<@?Q`D{|K+bq*nNeU5W)w}5scq@)Q#Bq^ju#FpKyx9zzY&v_P_LBPXSPNwvmI0B4WJpw)RQg`^RKfC(x~c+EuS_pj~y|7EDT;dAv< zah;wKLq5_sb6F%4R7rWU9Jo3Q|B|qwj!3wm8#^?h_yDowcoZeE`5$^n^J5G@%ygQ> oxuW5;#E1q9s!(zkfu=!sX;_m>X0TD50W-OA%nQqQ#doOl3o6X6x&QzG diff --git a/testdata/v1.31.0/apps.v1beta2.ControllerRevision.yaml b/testdata/v1.31.0/apps.v1beta2.ControllerRevision.yaml deleted file mode 100644 index 136b0cd03b..0000000000 --- a/testdata/v1.31.0/apps.v1beta2.ControllerRevision.yaml +++ /dev/null @@ -1,42 +0,0 @@ -apiVersion: apps/v1beta2 -data: - apiVersion: example.com/v1 - kind: CustomType - spec: - replicas: 1 - status: - available: 1 -kind: ControllerRevision -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -revision: 3 diff --git a/testdata/v1.31.0/apps.v1beta2.DaemonSet.json b/testdata/v1.31.0/apps.v1beta2.DaemonSet.json deleted file mode 100644 index 02a9ea37fe..0000000000 --- a/testdata/v1.31.0/apps.v1beta2.DaemonSet.json +++ /dev/null @@ -1,1801 +0,0 @@ -{ - "kind": "DaemonSet", - "apiVersion": "apps/v1beta2", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "template": { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "volumes": [ - { - "name": "nameValue", - "hostPath": { - "path": "pathValue", - "type": "typeValue" - }, - "emptyDir": { - "medium": "mediumValue", - "sizeLimit": "0" - }, - "gcePersistentDisk": { - "pdName": "pdNameValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "awsElasticBlockStore": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "gitRepo": { - "repository": "repositoryValue", - "revision": "revisionValue", - "directory": "directoryValue" - }, - "secret": { - "secretName": "secretNameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "defaultMode": 3, - "optional": true - }, - "nfs": { - "server": "serverValue", - "path": "pathValue", - "readOnly": true - }, - "iscsi": { - "targetPortal": "targetPortalValue", - "iqn": "iqnValue", - "lun": 3, - "iscsiInterface": "iscsiInterfaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "portals": [ - "portalsValue" - ], - "chapAuthDiscovery": true, - "chapAuthSession": true, - "secretRef": { - "name": "nameValue" - }, - "initiatorName": "initiatorNameValue" - }, - "glusterfs": { - "endpoints": "endpointsValue", - "path": "pathValue", - "readOnly": true - }, - "persistentVolumeClaim": { - "claimName": "claimNameValue", - "readOnly": true - }, - "rbd": { - "monitors": [ - "monitorsValue" - ], - "image": "imageValue", - "fsType": "fsTypeValue", - "pool": "poolValue", - "user": "userValue", - "keyring": "keyringValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true - }, - "flexVolume": { - "driver": "driverValue", - "fsType": "fsTypeValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true, - "options": { - "optionsKey": "optionsValue" - } - }, - "cinder": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "name": "nameValue" - } - }, - "cephfs": { - "monitors": [ - "monitorsValue" - ], - "path": "pathValue", - "user": "userValue", - "secretFile": "secretFileValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true - }, - "flocker": { - "datasetName": "datasetNameValue", - "datasetUUID": "datasetUUIDValue" - }, - "downwardAPI": { - "items": [ - { - "path": "pathValue", - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "mode": 4 - } - ], - "defaultMode": 2 - }, - "fc": { - "targetWWNs": [ - "targetWWNsValue" - ], - "lun": 2, - "fsType": "fsTypeValue", - "readOnly": true, - "wwids": [ - "wwidsValue" - ] - }, - "azureFile": { - "secretName": "secretNameValue", - "shareName": "shareNameValue", - "readOnly": true - }, - "configMap": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "defaultMode": 3, - "optional": true - }, - "vsphereVolume": { - "volumePath": "volumePathValue", - "fsType": "fsTypeValue", - "storagePolicyName": "storagePolicyNameValue", - "storagePolicyID": "storagePolicyIDValue" - }, - "quobyte": { - "registry": "registryValue", - "volume": "volumeValue", - "readOnly": true, - "user": "userValue", - "group": "groupValue", - "tenant": "tenantValue" - }, - "azureDisk": { - "diskName": "diskNameValue", - "diskURI": "diskURIValue", - "cachingMode": "cachingModeValue", - "fsType": "fsTypeValue", - "readOnly": true, - "kind": "kindValue" - }, - "photonPersistentDisk": { - "pdID": "pdIDValue", - "fsType": "fsTypeValue" - }, - "projected": { - "sources": [ - { - "secret": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "optional": true - }, - "downwardAPI": { - "items": [ - { - "path": "pathValue", - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "mode": 4 - } - ] - }, - "configMap": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "optional": true - }, - "serviceAccountToken": { - "audience": "audienceValue", - "expirationSeconds": 2, - "path": "pathValue" - }, - "clusterTrustBundle": { - "name": "nameValue", - "signerName": "signerNameValue", - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "optional": true, - "path": "pathValue" - } - } - ], - "defaultMode": 2 - }, - "portworxVolume": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "scaleIO": { - "gateway": "gatewayValue", - "system": "systemValue", - "secretRef": { - "name": "nameValue" - }, - "sslEnabled": true, - "protectionDomain": "protectionDomainValue", - "storagePool": "storagePoolValue", - "storageMode": "storageModeValue", - "volumeName": "volumeNameValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "storageos": { - "volumeName": "volumeNameValue", - "volumeNamespace": "volumeNamespaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "name": "nameValue" - } - }, - "csi": { - "driver": "driverValue", - "readOnly": true, - "fsType": "fsTypeValue", - "volumeAttributes": { - "volumeAttributesKey": "volumeAttributesValue" - }, - "nodePublishSecretRef": { - "name": "nameValue" - } - }, - "ephemeral": { - "volumeClaimTemplate": { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "accessModes": [ - "accessModesValue" - ], - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - } - }, - "volumeName": "volumeNameValue", - "storageClassName": "storageClassNameValue", - "volumeMode": "volumeModeValue", - "dataSource": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue" - }, - "dataSourceRef": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue", - "namespace": "namespaceValue" - }, - "volumeAttributesClassName": "volumeAttributesClassNameValue" - } - } - }, - "image": { - "reference": "referenceValue", - "pullPolicy": "pullPolicyValue" - } - } - ], - "initContainers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "ephemeralContainers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true, - "targetContainerName": "targetContainerNameValue" - } - ], - "restartPolicy": "restartPolicyValue", - "terminationGracePeriodSeconds": 4, - "activeDeadlineSeconds": 5, - "dnsPolicy": "dnsPolicyValue", - "nodeSelector": { - "nodeSelectorKey": "nodeSelectorValue" - }, - "serviceAccountName": "serviceAccountNameValue", - "serviceAccount": "serviceAccountValue", - "automountServiceAccountToken": true, - "nodeName": "nodeNameValue", - "hostNetwork": true, - "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": true, - "securityContext": { - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 2, - "runAsGroup": 6, - "runAsNonRoot": true, - "supplementalGroups": [ - 4 - ], - "supplementalGroupsPolicy": "supplementalGroupsPolicyValue", - "fsGroup": 5, - "sysctls": [ - { - "name": "nameValue", - "value": "valueValue" - } - ], - "fsGroupChangePolicy": "fsGroupChangePolicyValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "imagePullSecrets": [ - { - "name": "nameValue" - } - ], - "hostname": "hostnameValue", - "subdomain": "subdomainValue", - "affinity": { - "nodeAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": { - "nodeSelectorTerms": [ - { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - ] - }, - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "preference": { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - } - ] - }, - "podAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": [ - { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - ], - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "podAffinityTerm": { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - } - ] - }, - "podAntiAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": [ - { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - ], - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "podAffinityTerm": { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - } - ] - } - }, - "schedulerName": "schedulerNameValue", - "tolerations": [ - { - "key": "keyValue", - "operator": "operatorValue", - "value": "valueValue", - "effect": "effectValue", - "tolerationSeconds": 5 - } - ], - "hostAliases": [ - { - "ip": "ipValue", - "hostnames": [ - "hostnamesValue" - ] - } - ], - "priorityClassName": "priorityClassNameValue", - "priority": 25, - "dnsConfig": { - "nameservers": [ - "nameserversValue" - ], - "searches": [ - "searchesValue" - ], - "options": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "readinessGates": [ - { - "conditionType": "conditionTypeValue" - } - ], - "runtimeClassName": "runtimeClassNameValue", - "enableServiceLinks": true, - "preemptionPolicy": "preemptionPolicyValue", - "overhead": { - "overheadKey": "0" - }, - "topologySpreadConstraints": [ - { - "maxSkew": 1, - "topologyKey": "topologyKeyValue", - "whenUnsatisfiable": "whenUnsatisfiableValue", - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "minDomains": 5, - "nodeAffinityPolicy": "nodeAffinityPolicyValue", - "nodeTaintsPolicy": "nodeTaintsPolicyValue", - "matchLabelKeys": [ - "matchLabelKeysValue" - ] - } - ], - "setHostnameAsFQDN": true, - "os": { - "name": "nameValue" - }, - "hostUsers": true, - "schedulingGates": [ - { - "name": "nameValue" - } - ], - "resourceClaims": [ - { - "name": "nameValue", - "resourceClaimName": "resourceClaimNameValue", - "resourceClaimTemplateName": "resourceClaimTemplateNameValue" - } - ] - } - }, - "updateStrategy": { - "type": "typeValue", - "rollingUpdate": { - "maxUnavailable": "maxUnavailableValue", - "maxSurge": "maxSurgeValue" - } - }, - "minReadySeconds": 4, - "revisionHistoryLimit": 6 - }, - "status": { - "currentNumberScheduled": 1, - "numberMisscheduled": 2, - "desiredNumberScheduled": 3, - "numberReady": 4, - "observedGeneration": 5, - "updatedNumberScheduled": 6, - "numberAvailable": 7, - "numberUnavailable": 8, - "collisionCount": 9, - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "lastTransitionTime": "2003-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/apps.v1beta2.DaemonSet.pb b/testdata/v1.31.0/apps.v1beta2.DaemonSet.pb deleted file mode 100644 index 6fbf0cad5917769eec7efc04d825678684c5796b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10917 zcmeHNO>7)V74{n^o0*#5RBXrY%|_m4S*%%Ljm1jQNJxpD05Qqpbz-s#2vP2?8CTNN z-P_$Wj)RaO2x*lIC=wD{38X|qioyZO$8bR8fR+`@VNZw?3KEAEhro%S!}7YSe`+R9 z)@U6OY3J5mRbBmF)%SkBS9SSVI7Vhjh53H?a{qJdJYoy9bdvF|=bqyc{op+LbAgmx z*5zMgPLI=r9q#ggMf}yY$*9G>q0cNe#H@zgX`d19W%)(3*b}yVT9^oU==A~|$AeIK zu53MaV6j+y_vT-JwXZR@j8DIK@D4t$kc-o#_yF_&H;rOU!qKQ?mt%}knRo%uo+WFC$|P;U#DIpQh`DCfBj>!i|UF6;0>Hqe^q z$NHz@8^hC>sKfntKNxR}E#PF_vBUFQzFL{qK2rGhcNQCAZ#`QHxv0N=jhrEMcPo<=$+bg4Od-B`%`?KVi6S{HSoFG%AEDXTGkfyby%mu z6_H@5Kqm0=bEL*y+xLVUC3x4xTBW3BIZSl34;pas>!gYvEncSN3nIE`(^6zZm&h#n zo~Kl4mU^hV9I{YBvkQdVk#8+s#^bPlij?g@WNV~PXXry`p=l7}`I+0QB+qizOD{ck zyTR0_3Qi3xlrMpi%WWo`{YBv@U7PwO^KkVA(y&>?LLCoj%i3CkyKC@Ga#6?i^JLiT z(VFyiD=GAiIYKSZjhMh_k!=L64){GIwu0Gxjly+6SSl!8xbUjlp+;d~UvTZn=BBV! z=MDJ8!#J*m8!X7<(loq<-{|_%$07X|oFR2(ZkZMXCTUEC2p<%mv)V3qSD7DP8nq6-8G?@7=HAyG%dcHzhIpQvJBl)ror%BZo;pOaSv=YCrt)7_DdPvaZhxya#_Mklz)^-0t>u7U(yg zBythuyTTXx@*||mdbZ$hk|iO$bBk?mYEF;VL($Q##@N%`03BRvq;t?H{0Wv)*k_AQ zClpfShCHtuHb-6a`*2~v2R2|}wE1arNKJVniUP6Ti?~eNCWjj(PzHR|`*3?d`T71) zI`ibynO_%3gIN|2!`L2^IQb%JU>+{IB9c26d+a!u3HTeBZ02pou;H3}3fksm;yacc z7KRy67m~kb{-gCtG&5g(DRZYZcYqoTSbSwy!^|OOvwUckz(lJWdtA>- z6PNOa7e=R7=I!!x*C-P zfKriVN9#h@Q|o#?H_D>8SwX^;y)`FQZ{Yb1BU;Mi7GhQw4?1bX;V+1zwW&8#xm-iNpI` zF&sn;#AT1;#pN1$5bJDgH*%`gGvwJ$H)Klzx4DZ1%sJhE}A44fKED|#hln6Rsye`G83%oeCU|(0=x_h5%c zV~4ibp)AyFH`G3Ey+Glu1sf3DERg>V%@_$m`M}nr-0I?iVS zkV-r9U;1WT)pPJ`P>pTMP3yAPp@t#N&I#BJ_*aqK0kTR~$ZiXXyB&8P-Ra)X`j>I? zH`wFSXgyva$!b(~Wi%qs_Z+XYg;188x5ugLp}dNVe^5VNnCgmfhj#jRz=iyH>1>R4 zd2fpTPc^dN0vhMNcF)l=gIh3SLwKg95v36uO2gNP4dsP8I?M$PjSKDtpB%9vEQ*ZS zP(~3x?ri8bz&3ndI~N@~Y}cx2W|_C!NQGqTIJf^U%#Z^@@o`#96LOXH-GeDV5MCgn zt--?K+c5JUv`9myrt-8^eL(Rl1q(22CaLP9Xw4r1?!$yUakKHX)N`{d2k*lq67ooN z`QRTP0Q?*9oQCtRJdV^D-n9bOcRf7K+`y_=Oz+~F@AblO;>`4+T-lh~+~Dq-8)5+? zYzwxY6dd+8hejHDIHrgv+IT$!S5K3+H5qrD$3vz_XGV)VW!*Ol+f_2kI7S)AsQx;t zzxKF^S#uZL-G5nn=+ewj3UI5S7y51&V0)n9ZedBQT^o3A zrLI|G$k%Q`nMViO&tv3w2JUfwK`+41lNou2g>m%Cn#=l3;0??qxYI+jtBPIcdU*d! zrarU#=ASWM!wx);R8`nx2aXrNTv{ENwv5H-sF$QOcvJE}Z$H4Bk|v%fvoN_3+N@xG OE7)V74{n^WTxgf760}ok+)eEYZh2DVkK)Nq}WbaY?8$|Fnu(J& zS}#P}xph}nSHD;Fy`S$@ZO;cIL?b1`^MdDlpWI}j(V*lk^K5sw!<>+QXPx{pM+%P7 zVP7=tE~CfW%wfI}vX_!3trGPHo?*%%dO2Wr>pXY1#TWH_ms{egG3K+t?fN*5`2lww z(K>%@F`s|))?a>hq&BjGPd|R=4SZT98&jlU8=K4yKF4-xQ9g<= znp@{nwQI_|{Qa{ezs+{#b6JYwO3AchFPcost?jK2H|~G1aTmx>$5ivUHAW^#!85`w zxkZIA*?dY#vBNCh?Z}={0(07FQuM6Ul4!A&fn{oR2J{(H?zwii!hk%TCDrR^lM)suFY1EP3K%3EVTVR#X=BW!R+L z;UPCrfmGm?Q>4Ni%X7IC%Fn1O)*2-h(>8b~{h$ULUn1p>i!-^gWmCdCXw^bwO_fM5 zc&;l|sTaDax){wEalO=WmEvbH>y_so zyWOCxQ~Box70Q-C%jDMM&HfCxrLJ{#k~z5c45?X0Xap)Al9u)L7;U-@f45k)0iG z$dJG^?)7&D~TfeXOrN zUbDNfNKo5055mMUi*k0c*;AlryHqD_-|c!5X~mE^h7*dHJy<4XiwE23&uA%nU0+)k z{aVd5%q@iF1=othuL{0dXk=mV9$-lIto>ZceK`Gi=)D2o22yHc+}|-`H&YCDgOEvY zHVE=@&v!#~Iv6F-x*ddo)U1}SQ*2<(q$L%9G2Vex-xXD#Rd@@2lOw;%k=cXo>kQB@ zzn{oOlphFR=*v%%veC6TbK*P+;hkA*eMfP6v>NcXYBk!S<_75C5+j|3TJHC-l)ye+ zbUG%H8Z~5@-Jm(Dnm>TceLk=TeWUe{krQ&tg)sE_W;bLaaT_0O6hP_oQE$VYqvS_N zhw04wpU(U|M{0&?vLJ};F^;Uyk{V{>yu(AWW0A*>av7h!g2`sqrVSddeyE_WkH@}a z$u@!@1!^PyYwACmA3-zo_=~AKrI`a%c);Qd2O6diaGRCWgLv&1=kM?|sranL{M5{8 z)$7`}j2Hsk^!sJi*3~qmWV#(B8^-mzuqTl*o9?*gfizWt&X)C8%ThuR1_cuZ~OQWv5f5s!K?Ft=DtsOyu8R{C& z0^$X9y-|Ld#Akm@kd)Pa4|44vK*mYlu%x4)1q-1ppoP%?ILXpVTJYUC?bk9UsuP>_ zm}EGJ7>EiVXYwl*^dRPi$Zo_`Yv;*R?M`4U`OLyf5I5|L9y3$NOD7-hlt8C`*I5YG z5u54Y8Q9QCCIB6`UDL25gIM+5R>DlMuJf*Az5(zm!1n+%`{$86qpRgt#cye~&-LI! z3^v?`Q~Rv6$mGQgcj2UJid73)w3%(i9z5wrbq_vDjwkdgU3*Hg37HjA^oXv=YY z3#8Jv_?NmF*VG*RI+P=ua+1pI4X9v9voZp96aJYecY&;tRdT>WB0cE1OXyAyf7U;b zlD`5u)J&3AqXiPIMrK!9Ep$ECcH6rMWwCjOoVuRKs<`+E`P0TkhX?z#)4u^O$P}u~XmP)+`(|#hOokc9Fyk23 zUx)SAF4HmV8P;Ei_19i@BK96mUEX8;l}^d~FG~+yn)yKvZs*iO-<=%n^)=kfEh)8Y z4bQFQMN16%$}K4UbYJ@=jQqBGlT-h+T7aJ;)8Y&ZVs!b@Y#ZP89VVzQWTG0RHrOrAv)~JR7S@WWFv?#f!0e{k&8|~#6%6eLiyW2 YypGpEoA`9^Pd~w@`D17D+K4{#A59<7)V74{oD#8dN|ivQA^MBZjutXW`<#Y)jgNbxuU+1QJ5Y_c*4(eAF9sko=R zx4Xw)2O&WaVwDRh5)xVoq(oXN3I`;gQ1-AQr)9-**c0M}g2Z9PA#md70I#e1r)J`0 zjn)y7c5dBO)m86ReedUc)!XNSA)=9@;d#M}JD=ZTp)p6v8uM&!8kbl|f4xrrlp}e^ z=&-LFc9+o;E#@%a2-(X?lU9y;1J5w!5WN&IySdDrZSh5Iw975=G&kn6!0q}tj`;z1 z9npI3cw=<*y_+eF7h5_h8;;|KMu?M$ z?yB-G#$0)c{HeaEuo7MFTCn zUZj5_zScjDjyl|b??1!Up*ft4*;cT==gFO^kC5DVzT2n<-K}&d#HRk}YokDy3F_4` zLbJV`s$EsyrIths%?vD4!_%NolhTfBcROtHg8Zs~L~WK- zeCD|U4_!Zjh0k_)YF}E};yyFe?zzvAO2AB?h1t533aB#Sr-maL>KZ8o%->1yuk=G> zhnxrvzs15;*AER_$~ekjm8Ly4te@n88Sq6XWPUSo5H(eaS*RC1@v#K%c~~nb8~O@t zQSR`N8>m1k@X{GlW{%~#+zI7pR26HDlCo(Vypw)Vh0Sk}Qpd%a+}N@y;T^PUA+n}Q zq~|@?m8#V8T~u8RnJc2%`P^xVx4J6hdDyy03YO2)JyNIB)S=T*(+F|B)NvK#XEE!Q z7an`upsQ2)7yA{;wm{3|*5kwe61SzUHFc6%xcVHaT1IFDDjt%Sjg1(0*Wg=ZQ^obO zq~Gt+vha4R3G}rYLQU5R4UX|5JqTLr@qAij1=Azd+;u=$N+?~v{IWdLYOd#8aPP?O zF1KXo4fy24I4%cm!_Okq6ug1osQS{!A^jFClZrIAREr*y)FuLi4}xaZ#rU|FDy5J0 zw8wjP2O0#mZSf#XEVCeI7l%CsdUi@R((>J|Cy`bNnPWJic-eiq^h}}#f*b71? zy;(oV$35Q-(dl56yx?{a0#dVTx=*oz)svP~{6>5NslH39KCAFP{60s1n3U+BwElakT3ICJ7W3E`btY;9L@dbASomTEQHk>&>I;1VO9fokrLu#mt$ z-E=x8ks38*nO(m*s+!-2%RN4@3O%Fs&ybUH%K0$#`Bpb%B5@n#(Djr%Zr2IZD6SWga;0yzaoOv;o`Df9VRCa3FN+3Ue9e=)T%W+ixrO^uLrsM4G5>&gg3SYhqbi>2W={ z5&aFf;LHI#Ei!pA!yP!SnqtL57Hwunu@6tXQQd`4lM@NOO81^pY(i#*6g?s>Le+b4 zK%;g*TjWsY%9ax-AJ?BF6$jIUOUxE!g{VAtLTwOBG$v!`G;f*_rc!y9PWE<)(QBn> zf^^I)@NH;=e=|q^H#B1;1nC3ok8-PxBZc+SR5K8%#zNb05?&}ZIs}*xWfW(EuIJep zE|5ywVlDMBuBtisH7G?krlp!W@QBI2K;lB+ySyiR>>g?iS)4J*3q3F{j7f; zCVvHTq?shGL>nYnjm)mJYUp~d?Y8z1%Hr^jICVXlRdI0zx#-+PhX)6=)4u_3cInE^?r{yFems#IEnDBh= z`aIn0EgZfBr{0G;sfyH8+_uUODE>@g_!u_hRP|A`<_`e(VNBe(S$JFOI_XabAHX;g z@{o5}?}`rq{snkX!&paLM=A{OS`O>GF5YIgvFa7kyQt=SJ@=a^Gkqvm)+Tn_%-L`P zEMNppZfwN`hojA*k%mr26mhXzLDE6kwL~W$T$Y| z*FpWY%XG|o2KCoL{dFh15&H@`+iX^#}}}M9CqU@1b=b-_d5^p b7e^hhfsG*kle1RDvRZU~Arc{NNFVwy)SLTG diff --git a/testdata/v1.31.0/apps.v1beta2.ReplicaSet.yaml b/testdata/v1.31.0/apps.v1beta2.ReplicaSet.yaml deleted file mode 100644 index a23311cb66..0000000000 --- a/testdata/v1.31.0/apps.v1beta2.ReplicaSet.yaml +++ /dev/null @@ -1,1228 +0,0 @@ -apiVersion: apps/v1beta2 -kind: ReplicaSet -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - minReadySeconds: 4 - replicas: 1 - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - template: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - activeDeadlineSeconds: 5 - affinity: - nodeAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - preference: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - nodeSelectorTerms: - - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - podAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - podAntiAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - automountServiceAccountToken: true - containers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - dnsConfig: - nameservers: - - nameserversValue - options: - - name: nameValue - value: valueValue - searches: - - searchesValue - dnsPolicy: dnsPolicyValue - enableServiceLinks: true - ephemeralContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - targetContainerName: targetContainerNameValue - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - hostAliases: - - hostnames: - - hostnamesValue - ip: ipValue - hostIPC: true - hostNetwork: true - hostPID: true - hostUsers: true - hostname: hostnameValue - imagePullSecrets: - - name: nameValue - initContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - nodeName: nodeNameValue - nodeSelector: - nodeSelectorKey: nodeSelectorValue - os: - name: nameValue - overhead: - overheadKey: "0" - preemptionPolicy: preemptionPolicyValue - priority: 25 - priorityClassName: priorityClassNameValue - readinessGates: - - conditionType: conditionTypeValue - resourceClaims: - - name: nameValue - resourceClaimName: resourceClaimNameValue - resourceClaimTemplateName: resourceClaimTemplateNameValue - restartPolicy: restartPolicyValue - runtimeClassName: runtimeClassNameValue - schedulerName: schedulerNameValue - schedulingGates: - - name: nameValue - securityContext: - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - fsGroup: 5 - fsGroupChangePolicy: fsGroupChangePolicyValue - runAsGroup: 6 - runAsNonRoot: true - runAsUser: 2 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - supplementalGroups: - - 4 - supplementalGroupsPolicy: supplementalGroupsPolicyValue - sysctls: - - name: nameValue - value: valueValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - serviceAccount: serviceAccountValue - serviceAccountName: serviceAccountNameValue - setHostnameAsFQDN: true - shareProcessNamespace: true - subdomain: subdomainValue - terminationGracePeriodSeconds: 4 - tolerations: - - effect: effectValue - key: keyValue - operator: operatorValue - tolerationSeconds: 5 - value: valueValue - topologySpreadConstraints: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - maxSkew: 1 - minDomains: 5 - nodeAffinityPolicy: nodeAffinityPolicyValue - nodeTaintsPolicy: nodeTaintsPolicyValue - topologyKey: topologyKeyValue - whenUnsatisfiable: whenUnsatisfiableValue - volumes: - - awsElasticBlockStore: - fsType: fsTypeValue - partition: 3 - readOnly: true - volumeID: volumeIDValue - azureDisk: - cachingMode: cachingModeValue - diskName: diskNameValue - diskURI: diskURIValue - fsType: fsTypeValue - kind: kindValue - readOnly: true - azureFile: - readOnly: true - secretName: secretNameValue - shareName: shareNameValue - cephfs: - monitors: - - monitorsValue - path: pathValue - readOnly: true - secretFile: secretFileValue - secretRef: - name: nameValue - user: userValue - cinder: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeID: volumeIDValue - configMap: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - csi: - driver: driverValue - fsType: fsTypeValue - nodePublishSecretRef: - name: nameValue - readOnly: true - volumeAttributes: - volumeAttributesKey: volumeAttributesValue - downwardAPI: - defaultMode: 2 - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - emptyDir: - medium: mediumValue - sizeLimit: "0" - ephemeral: - volumeClaimTemplate: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - accessModes: - - accessModesValue - dataSource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - dataSourceRef: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resources: - limits: - limitsKey: "0" - requests: - requestsKey: "0" - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - storageClassName: storageClassNameValue - volumeAttributesClassName: volumeAttributesClassNameValue - volumeMode: volumeModeValue - volumeName: volumeNameValue - fc: - fsType: fsTypeValue - lun: 2 - readOnly: true - targetWWNs: - - targetWWNsValue - wwids: - - wwidsValue - flexVolume: - driver: driverValue - fsType: fsTypeValue - options: - optionsKey: optionsValue - readOnly: true - secretRef: - name: nameValue - flocker: - datasetName: datasetNameValue - datasetUUID: datasetUUIDValue - gcePersistentDisk: - fsType: fsTypeValue - partition: 3 - pdName: pdNameValue - readOnly: true - gitRepo: - directory: directoryValue - repository: repositoryValue - revision: revisionValue - glusterfs: - endpoints: endpointsValue - path: pathValue - readOnly: true - hostPath: - path: pathValue - type: typeValue - image: - pullPolicy: pullPolicyValue - reference: referenceValue - iscsi: - chapAuthDiscovery: true - chapAuthSession: true - fsType: fsTypeValue - initiatorName: initiatorNameValue - iqn: iqnValue - iscsiInterface: iscsiInterfaceValue - lun: 3 - portals: - - portalsValue - readOnly: true - secretRef: - name: nameValue - targetPortal: targetPortalValue - name: nameValue - nfs: - path: pathValue - readOnly: true - server: serverValue - persistentVolumeClaim: - claimName: claimNameValue - readOnly: true - photonPersistentDisk: - fsType: fsTypeValue - pdID: pdIDValue - portworxVolume: - fsType: fsTypeValue - readOnly: true - volumeID: volumeIDValue - projected: - defaultMode: 2 - sources: - - clusterTrustBundle: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - name: nameValue - optional: true - path: pathValue - signerName: signerNameValue - configMap: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - downwardAPI: - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secret: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - serviceAccountToken: - audience: audienceValue - expirationSeconds: 2 - path: pathValue - quobyte: - group: groupValue - readOnly: true - registry: registryValue - tenant: tenantValue - user: userValue - volume: volumeValue - rbd: - fsType: fsTypeValue - image: imageValue - keyring: keyringValue - monitors: - - monitorsValue - pool: poolValue - readOnly: true - secretRef: - name: nameValue - user: userValue - scaleIO: - fsType: fsTypeValue - gateway: gatewayValue - protectionDomain: protectionDomainValue - readOnly: true - secretRef: - name: nameValue - sslEnabled: true - storageMode: storageModeValue - storagePool: storagePoolValue - system: systemValue - volumeName: volumeNameValue - secret: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - optional: true - secretName: secretNameValue - storageos: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeName: volumeNameValue - volumeNamespace: volumeNamespaceValue - vsphereVolume: - fsType: fsTypeValue - storagePolicyID: storagePolicyIDValue - storagePolicyName: storagePolicyNameValue - volumePath: volumePathValue -status: - availableReplicas: 5 - conditions: - - lastTransitionTime: "2003-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue - fullyLabeledReplicas: 2 - observedGeneration: 3 - readyReplicas: 4 - replicas: 1 diff --git a/testdata/v1.31.0/apps.v1beta2.Scale.json b/testdata/v1.31.0/apps.v1beta2.Scale.json deleted file mode 100644 index ab0a7ad374..0000000000 --- a/testdata/v1.31.0/apps.v1beta2.Scale.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "kind": "Scale", - "apiVersion": "apps/v1beta2", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "replicas": 1 - }, - "status": { - "replicas": 1, - "selector": { - "selectorKey": "selectorValue" - }, - "targetSelector": "targetSelectorValue" - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/apps.v1beta2.Scale.pb b/testdata/v1.31.0/apps.v1beta2.Scale.pb deleted file mode 100644 index d62f25ff1dad91412c7af2a2e3c8acc6f0e8cf30..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 448 zcmZ8d!AiqG5KYpG>9)2pDoF5@V=ro;P(1diB0|N3w@Eq;Yqy)QyAfLP2mA=Zv!CD} z2>l1~;MqUW&4$+M?aiB+H*emgFDge0HLwEx z?G!l*P8WYN^!@;lraOI}k zft;=zIkNk<=!_``M(5g~(Rs9E(wYK?6on!Dc9xg_FYO2aWkUVK$Kt!@S&g+I4nJAwwgEWP?9PB6%DXQTg(h98~<5`&f diff --git a/testdata/v1.31.0/apps.v1beta2.Scale.yaml b/testdata/v1.31.0/apps.v1beta2.Scale.yaml deleted file mode 100644 index bb916412c2..0000000000 --- a/testdata/v1.31.0/apps.v1beta2.Scale.yaml +++ /dev/null @@ -1,41 +0,0 @@ -apiVersion: apps/v1beta2 -kind: Scale -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - replicas: 1 -status: - replicas: 1 - selector: - selectorKey: selectorValue - targetSelector: targetSelectorValue diff --git a/testdata/v1.31.0/apps.v1beta2.StatefulSet.json b/testdata/v1.31.0/apps.v1beta2.StatefulSet.json deleted file mode 100644 index ac5df5bceb..0000000000 --- a/testdata/v1.31.0/apps.v1beta2.StatefulSet.json +++ /dev/null @@ -1,1929 +0,0 @@ -{ - "kind": "StatefulSet", - "apiVersion": "apps/v1beta2", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "replicas": 1, - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "template": { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "volumes": [ - { - "name": "nameValue", - "hostPath": { - "path": "pathValue", - "type": "typeValue" - }, - "emptyDir": { - "medium": "mediumValue", - "sizeLimit": "0" - }, - "gcePersistentDisk": { - "pdName": "pdNameValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "awsElasticBlockStore": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "gitRepo": { - "repository": "repositoryValue", - "revision": "revisionValue", - "directory": "directoryValue" - }, - "secret": { - "secretName": "secretNameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "defaultMode": 3, - "optional": true - }, - "nfs": { - "server": "serverValue", - "path": "pathValue", - "readOnly": true - }, - "iscsi": { - "targetPortal": "targetPortalValue", - "iqn": "iqnValue", - "lun": 3, - "iscsiInterface": "iscsiInterfaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "portals": [ - "portalsValue" - ], - "chapAuthDiscovery": true, - "chapAuthSession": true, - "secretRef": { - "name": "nameValue" - }, - "initiatorName": "initiatorNameValue" - }, - "glusterfs": { - "endpoints": "endpointsValue", - "path": "pathValue", - "readOnly": true - }, - "persistentVolumeClaim": { - "claimName": "claimNameValue", - "readOnly": true - }, - "rbd": { - "monitors": [ - "monitorsValue" - ], - "image": "imageValue", - "fsType": "fsTypeValue", - "pool": "poolValue", - "user": "userValue", - "keyring": "keyringValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true - }, - "flexVolume": { - "driver": "driverValue", - "fsType": "fsTypeValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true, - "options": { - "optionsKey": "optionsValue" - } - }, - "cinder": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "name": "nameValue" - } - }, - "cephfs": { - "monitors": [ - "monitorsValue" - ], - "path": "pathValue", - "user": "userValue", - "secretFile": "secretFileValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true - }, - "flocker": { - "datasetName": "datasetNameValue", - "datasetUUID": "datasetUUIDValue" - }, - "downwardAPI": { - "items": [ - { - "path": "pathValue", - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "mode": 4 - } - ], - "defaultMode": 2 - }, - "fc": { - "targetWWNs": [ - "targetWWNsValue" - ], - "lun": 2, - "fsType": "fsTypeValue", - "readOnly": true, - "wwids": [ - "wwidsValue" - ] - }, - "azureFile": { - "secretName": "secretNameValue", - "shareName": "shareNameValue", - "readOnly": true - }, - "configMap": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "defaultMode": 3, - "optional": true - }, - "vsphereVolume": { - "volumePath": "volumePathValue", - "fsType": "fsTypeValue", - "storagePolicyName": "storagePolicyNameValue", - "storagePolicyID": "storagePolicyIDValue" - }, - "quobyte": { - "registry": "registryValue", - "volume": "volumeValue", - "readOnly": true, - "user": "userValue", - "group": "groupValue", - "tenant": "tenantValue" - }, - "azureDisk": { - "diskName": "diskNameValue", - "diskURI": "diskURIValue", - "cachingMode": "cachingModeValue", - "fsType": "fsTypeValue", - "readOnly": true, - "kind": "kindValue" - }, - "photonPersistentDisk": { - "pdID": "pdIDValue", - "fsType": "fsTypeValue" - }, - "projected": { - "sources": [ - { - "secret": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "optional": true - }, - "downwardAPI": { - "items": [ - { - "path": "pathValue", - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "mode": 4 - } - ] - }, - "configMap": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "optional": true - }, - "serviceAccountToken": { - "audience": "audienceValue", - "expirationSeconds": 2, - "path": "pathValue" - }, - "clusterTrustBundle": { - "name": "nameValue", - "signerName": "signerNameValue", - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "optional": true, - "path": "pathValue" - } - } - ], - "defaultMode": 2 - }, - "portworxVolume": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "scaleIO": { - "gateway": "gatewayValue", - "system": "systemValue", - "secretRef": { - "name": "nameValue" - }, - "sslEnabled": true, - "protectionDomain": "protectionDomainValue", - "storagePool": "storagePoolValue", - "storageMode": "storageModeValue", - "volumeName": "volumeNameValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "storageos": { - "volumeName": "volumeNameValue", - "volumeNamespace": "volumeNamespaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "name": "nameValue" - } - }, - "csi": { - "driver": "driverValue", - "readOnly": true, - "fsType": "fsTypeValue", - "volumeAttributes": { - "volumeAttributesKey": "volumeAttributesValue" - }, - "nodePublishSecretRef": { - "name": "nameValue" - } - }, - "ephemeral": { - "volumeClaimTemplate": { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "accessModes": [ - "accessModesValue" - ], - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - } - }, - "volumeName": "volumeNameValue", - "storageClassName": "storageClassNameValue", - "volumeMode": "volumeModeValue", - "dataSource": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue" - }, - "dataSourceRef": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue", - "namespace": "namespaceValue" - }, - "volumeAttributesClassName": "volumeAttributesClassNameValue" - } - } - }, - "image": { - "reference": "referenceValue", - "pullPolicy": "pullPolicyValue" - } - } - ], - "initContainers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "ephemeralContainers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true, - "targetContainerName": "targetContainerNameValue" - } - ], - "restartPolicy": "restartPolicyValue", - "terminationGracePeriodSeconds": 4, - "activeDeadlineSeconds": 5, - "dnsPolicy": "dnsPolicyValue", - "nodeSelector": { - "nodeSelectorKey": "nodeSelectorValue" - }, - "serviceAccountName": "serviceAccountNameValue", - "serviceAccount": "serviceAccountValue", - "automountServiceAccountToken": true, - "nodeName": "nodeNameValue", - "hostNetwork": true, - "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": true, - "securityContext": { - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 2, - "runAsGroup": 6, - "runAsNonRoot": true, - "supplementalGroups": [ - 4 - ], - "supplementalGroupsPolicy": "supplementalGroupsPolicyValue", - "fsGroup": 5, - "sysctls": [ - { - "name": "nameValue", - "value": "valueValue" - } - ], - "fsGroupChangePolicy": "fsGroupChangePolicyValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "imagePullSecrets": [ - { - "name": "nameValue" - } - ], - "hostname": "hostnameValue", - "subdomain": "subdomainValue", - "affinity": { - "nodeAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": { - "nodeSelectorTerms": [ - { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - ] - }, - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "preference": { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - } - ] - }, - "podAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": [ - { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - ], - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "podAffinityTerm": { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - } - ] - }, - "podAntiAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": [ - { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - ], - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "podAffinityTerm": { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - } - ] - } - }, - "schedulerName": "schedulerNameValue", - "tolerations": [ - { - "key": "keyValue", - "operator": "operatorValue", - "value": "valueValue", - "effect": "effectValue", - "tolerationSeconds": 5 - } - ], - "hostAliases": [ - { - "ip": "ipValue", - "hostnames": [ - "hostnamesValue" - ] - } - ], - "priorityClassName": "priorityClassNameValue", - "priority": 25, - "dnsConfig": { - "nameservers": [ - "nameserversValue" - ], - "searches": [ - "searchesValue" - ], - "options": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "readinessGates": [ - { - "conditionType": "conditionTypeValue" - } - ], - "runtimeClassName": "runtimeClassNameValue", - "enableServiceLinks": true, - "preemptionPolicy": "preemptionPolicyValue", - "overhead": { - "overheadKey": "0" - }, - "topologySpreadConstraints": [ - { - "maxSkew": 1, - "topologyKey": "topologyKeyValue", - "whenUnsatisfiable": "whenUnsatisfiableValue", - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "minDomains": 5, - "nodeAffinityPolicy": "nodeAffinityPolicyValue", - "nodeTaintsPolicy": "nodeTaintsPolicyValue", - "matchLabelKeys": [ - "matchLabelKeysValue" - ] - } - ], - "setHostnameAsFQDN": true, - "os": { - "name": "nameValue" - }, - "hostUsers": true, - "schedulingGates": [ - { - "name": "nameValue" - } - ], - "resourceClaims": [ - { - "name": "nameValue", - "resourceClaimName": "resourceClaimNameValue", - "resourceClaimTemplateName": "resourceClaimTemplateNameValue" - } - ] - } - }, - "volumeClaimTemplates": [ - { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "accessModes": [ - "accessModesValue" - ], - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - } - }, - "volumeName": "volumeNameValue", - "storageClassName": "storageClassNameValue", - "volumeMode": "volumeModeValue", - "dataSource": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue" - }, - "dataSourceRef": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue", - "namespace": "namespaceValue" - }, - "volumeAttributesClassName": "volumeAttributesClassNameValue" - }, - "status": { - "phase": "phaseValue", - "accessModes": [ - "accessModesValue" - ], - "capacity": { - "capacityKey": "0" - }, - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "lastProbeTime": "2003-01-01T01:01:01Z", - "lastTransitionTime": "2004-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ], - "allocatedResources": { - "allocatedResourcesKey": "0" - }, - "allocatedResourceStatuses": { - "allocatedResourceStatusesKey": "allocatedResourceStatusesValue" - }, - "currentVolumeAttributesClassName": "currentVolumeAttributesClassNameValue", - "modifyVolumeStatus": { - "targetVolumeAttributesClassName": "targetVolumeAttributesClassNameValue", - "status": "statusValue" - } - } - } - ], - "serviceName": "serviceNameValue", - "podManagementPolicy": "podManagementPolicyValue", - "updateStrategy": { - "type": "typeValue", - "rollingUpdate": { - "partition": 1, - "maxUnavailable": "maxUnavailableValue" - } - }, - "revisionHistoryLimit": 8, - "minReadySeconds": 9, - "persistentVolumeClaimRetentionPolicy": { - "whenDeleted": "whenDeletedValue", - "whenScaled": "whenScaledValue" - }, - "ordinals": { - "start": 1 - } - }, - "status": { - "observedGeneration": 1, - "replicas": 2, - "readyReplicas": 3, - "currentReplicas": 4, - "updatedReplicas": 5, - "currentRevision": "currentRevisionValue", - "updateRevision": "updateRevisionValue", - "collisionCount": 9, - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "lastTransitionTime": "2003-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ], - "availableReplicas": 11 - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/apps.v1beta2.StatefulSet.pb b/testdata/v1.31.0/apps.v1beta2.StatefulSet.pb deleted file mode 100644 index 24ac839da4ca7dd1061d1c59b7ff69c7b41f6873..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12018 zcmeHNU5Fe>9p9Qw%uLN!r?R`*bUxVY%bm-ddh6&x7*LYg#B=wu=Q7D&;`)KT-8D0n z^mO-i_snJ^f<}ZRFG@g=gA)=ELVP$_@FhNoc{+pV!##;0NCY2(578$-9`xT;{ZT!; z$*tT512=CoRn=AhfBiq|_y4$j!XLwjaY=Vw|K-7F*Jz;EN%35u2ejR{&e4F}{|5e3 z4i{{_N8iw`J|+7*)TSORcs(9cE8(o~>V{aNm3?Zp&ocWm|Du-fGn4~`IlerQN|YG*Uul_hhNKhbs85eeT`cFYjlGY#ZUglnuaU7Z970F zY{I7%=|5j{=@neK%xrP6n$oW&)YPiF%Va|4&tBxYW~ay+b`d zKq`(K@*k704sW9Y4-ek|&$u#Hhs~&E`sX)XaWjoQIQQ-EG!?(UmfQrt)Q4ZqBXSl4 zUp+lAx@Qx%73se?{zaU>OgF^uvLM9~l&Qr*xS60^-CQ0C?&%Bew@dil3E4buPT(nA zaP^=oL{tc3;S++3J!-OkPt1&CG^ZZJMb}I$i4@zZvP_T9AZ-Sh2aeV6(S_6EtKk*3 zIb8Lq>-a2iyjU$fI$()?sTGrX)JUf5pTSk18XgVOa}P>Nl@dQa9@5ZIanYyVAl83r z9yJGef1rCE8Z0|rpj(2*JbP1^_Vl=Rfcb{c7VLm}?bt!oWG3cNqvZ0Bh2ow>t)g_H z7ttDFHVc>z3?u|E9>o=Eo36v`Kzv4IvRVXJ3`=Ld(z>wHPQ1ZL+kyTkuAWExMRwKKSAdMvpkc{^2JI)iE|#*Ujfu2S@y z?|SK_CyEbrNVTRHxP*b|KNZ4Oumf*D}Z!(9j9>-BSZ*zb`F_jb#%>Z`Mu7>*t24Bm@G5Tu;(d}?R~GkcWWbp&cDRO!Nn*M&@#Tt+T% zcX)lBnPTz=dVZ@OSNyK-r7zPodKTwqE}P81oE%0< z;op_k0-skELpQphmP?KqJ-@Q@&7ykx4BkcXq`KyIuH+s%_GHz&kA8q~sRQr+x*oZi zqQBt>RCu#tC7*OXCjh4dujFZ`2Pz;qQ<8g%46G54B;+?E2_*b3%KR*&576&&_%}H` zyED1YAoBI6skxx#JJK)k)3%&&4-(G7$8erS);%laZ#0Ex363%JBWj~!wekG=_DGaXZh4OiP$ zrL9dyzGL3feLqpudUR^yKN>H9nYrxM#GR7V0ZMT|^OYSf(}rT3#bd+znkDD&=s8^R zXq$S8nUkv9w=D5uaOEaHF3Ywq!;q5U^dQ&}QHxdpWF=%!tFAj9gfpGfEJ7nMNn0p6 z09xhH<2ptRT#8-C4;GgBfsJ>Nw3^^S7$)!;_4^2a_)AW9{F1AOvfeNWRp7CE{8aPQ z4mIqM%tk3vK+edbB~5|rsq~z_9VD-~R)UZ#`B$41v!3JX@S??$Ts@4-!bNAUxZ;)@ zQvjU%5ULJni|XcAY)d?St)C+NLxd|hBQLTf1EgvmDP!Q^0osbIE`$={KeeK7bZHb& z*A7aQXJm5(5AQ*wJrsx-OCc_2$#Vi|eb4OPxlf$fxB9FTxb{{KfA9Z%gE_dtXMl!F zhaooVLDnHu#3gXOA-;^?XK#WBDa%<8a`hhwPvX383P(W-Ca5x3El~YW;}lksg6BlA zUri%X4O?_TMT7$ygTlne$^2pkJczLr+6~{Tbrv7)^n88Zqb9W>0JF}y)JPmJIk>a0MH{IoHqo`*Rh<=2BOZS zm14o&h$lzU5F|xL(NGd1eB7g<+X!u<&r5aDp<=s~MbnD3-G)$zL&w>@chModkBNAk zRAN9bP~SZ?<$BEVSg?^z9KMGReSjKR;n0*}2vwJln13bHqW@)nOVi9xa_Cl0PW0W* zq0P*|-Q2vCyH=rYB^oW^$(OpIv}2j^^YHRpawn(u$94tub~t6R;xkrdSAUVi z*zH2k8i(9uOV5G|_|?#%BN>olj9;}^|yIX_)2HlTZ zl&>3`OM^OJ{{>z2d^H>Q3fzwbGf_o8ysfHuxpwt%)tipS%UV(j}V}X~JCL(5A oa>r`pK;MOyM5wt-ZLDy@7i5ZLzSLBJve;@Fv0W^xW7^n%0nPoD+yDRo diff --git a/testdata/v1.31.0/apps.v1beta2.StatefulSet.yaml b/testdata/v1.31.0/apps.v1beta2.StatefulSet.yaml deleted file mode 100644 index 62ca88e65e..0000000000 --- a/testdata/v1.31.0/apps.v1beta2.StatefulSet.yaml +++ /dev/null @@ -1,1328 +0,0 @@ -apiVersion: apps/v1beta2 -kind: StatefulSet -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - minReadySeconds: 9 - ordinals: - start: 1 - persistentVolumeClaimRetentionPolicy: - whenDeleted: whenDeletedValue - whenScaled: whenScaledValue - podManagementPolicy: podManagementPolicyValue - replicas: 1 - revisionHistoryLimit: 8 - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - serviceName: serviceNameValue - template: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - activeDeadlineSeconds: 5 - affinity: - nodeAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - preference: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - nodeSelectorTerms: - - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - podAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - podAntiAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - automountServiceAccountToken: true - containers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - dnsConfig: - nameservers: - - nameserversValue - options: - - name: nameValue - value: valueValue - searches: - - searchesValue - dnsPolicy: dnsPolicyValue - enableServiceLinks: true - ephemeralContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - targetContainerName: targetContainerNameValue - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - hostAliases: - - hostnames: - - hostnamesValue - ip: ipValue - hostIPC: true - hostNetwork: true - hostPID: true - hostUsers: true - hostname: hostnameValue - imagePullSecrets: - - name: nameValue - initContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - nodeName: nodeNameValue - nodeSelector: - nodeSelectorKey: nodeSelectorValue - os: - name: nameValue - overhead: - overheadKey: "0" - preemptionPolicy: preemptionPolicyValue - priority: 25 - priorityClassName: priorityClassNameValue - readinessGates: - - conditionType: conditionTypeValue - resourceClaims: - - name: nameValue - resourceClaimName: resourceClaimNameValue - resourceClaimTemplateName: resourceClaimTemplateNameValue - restartPolicy: restartPolicyValue - runtimeClassName: runtimeClassNameValue - schedulerName: schedulerNameValue - schedulingGates: - - name: nameValue - securityContext: - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - fsGroup: 5 - fsGroupChangePolicy: fsGroupChangePolicyValue - runAsGroup: 6 - runAsNonRoot: true - runAsUser: 2 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - supplementalGroups: - - 4 - supplementalGroupsPolicy: supplementalGroupsPolicyValue - sysctls: - - name: nameValue - value: valueValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - serviceAccount: serviceAccountValue - serviceAccountName: serviceAccountNameValue - setHostnameAsFQDN: true - shareProcessNamespace: true - subdomain: subdomainValue - terminationGracePeriodSeconds: 4 - tolerations: - - effect: effectValue - key: keyValue - operator: operatorValue - tolerationSeconds: 5 - value: valueValue - topologySpreadConstraints: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - maxSkew: 1 - minDomains: 5 - nodeAffinityPolicy: nodeAffinityPolicyValue - nodeTaintsPolicy: nodeTaintsPolicyValue - topologyKey: topologyKeyValue - whenUnsatisfiable: whenUnsatisfiableValue - volumes: - - awsElasticBlockStore: - fsType: fsTypeValue - partition: 3 - readOnly: true - volumeID: volumeIDValue - azureDisk: - cachingMode: cachingModeValue - diskName: diskNameValue - diskURI: diskURIValue - fsType: fsTypeValue - kind: kindValue - readOnly: true - azureFile: - readOnly: true - secretName: secretNameValue - shareName: shareNameValue - cephfs: - monitors: - - monitorsValue - path: pathValue - readOnly: true - secretFile: secretFileValue - secretRef: - name: nameValue - user: userValue - cinder: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeID: volumeIDValue - configMap: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - csi: - driver: driverValue - fsType: fsTypeValue - nodePublishSecretRef: - name: nameValue - readOnly: true - volumeAttributes: - volumeAttributesKey: volumeAttributesValue - downwardAPI: - defaultMode: 2 - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - emptyDir: - medium: mediumValue - sizeLimit: "0" - ephemeral: - volumeClaimTemplate: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - accessModes: - - accessModesValue - dataSource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - dataSourceRef: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resources: - limits: - limitsKey: "0" - requests: - requestsKey: "0" - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - storageClassName: storageClassNameValue - volumeAttributesClassName: volumeAttributesClassNameValue - volumeMode: volumeModeValue - volumeName: volumeNameValue - fc: - fsType: fsTypeValue - lun: 2 - readOnly: true - targetWWNs: - - targetWWNsValue - wwids: - - wwidsValue - flexVolume: - driver: driverValue - fsType: fsTypeValue - options: - optionsKey: optionsValue - readOnly: true - secretRef: - name: nameValue - flocker: - datasetName: datasetNameValue - datasetUUID: datasetUUIDValue - gcePersistentDisk: - fsType: fsTypeValue - partition: 3 - pdName: pdNameValue - readOnly: true - gitRepo: - directory: directoryValue - repository: repositoryValue - revision: revisionValue - glusterfs: - endpoints: endpointsValue - path: pathValue - readOnly: true - hostPath: - path: pathValue - type: typeValue - image: - pullPolicy: pullPolicyValue - reference: referenceValue - iscsi: - chapAuthDiscovery: true - chapAuthSession: true - fsType: fsTypeValue - initiatorName: initiatorNameValue - iqn: iqnValue - iscsiInterface: iscsiInterfaceValue - lun: 3 - portals: - - portalsValue - readOnly: true - secretRef: - name: nameValue - targetPortal: targetPortalValue - name: nameValue - nfs: - path: pathValue - readOnly: true - server: serverValue - persistentVolumeClaim: - claimName: claimNameValue - readOnly: true - photonPersistentDisk: - fsType: fsTypeValue - pdID: pdIDValue - portworxVolume: - fsType: fsTypeValue - readOnly: true - volumeID: volumeIDValue - projected: - defaultMode: 2 - sources: - - clusterTrustBundle: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - name: nameValue - optional: true - path: pathValue - signerName: signerNameValue - configMap: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - downwardAPI: - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secret: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - serviceAccountToken: - audience: audienceValue - expirationSeconds: 2 - path: pathValue - quobyte: - group: groupValue - readOnly: true - registry: registryValue - tenant: tenantValue - user: userValue - volume: volumeValue - rbd: - fsType: fsTypeValue - image: imageValue - keyring: keyringValue - monitors: - - monitorsValue - pool: poolValue - readOnly: true - secretRef: - name: nameValue - user: userValue - scaleIO: - fsType: fsTypeValue - gateway: gatewayValue - protectionDomain: protectionDomainValue - readOnly: true - secretRef: - name: nameValue - sslEnabled: true - storageMode: storageModeValue - storagePool: storagePoolValue - system: systemValue - volumeName: volumeNameValue - secret: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - optional: true - secretName: secretNameValue - storageos: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeName: volumeNameValue - volumeNamespace: volumeNamespaceValue - vsphereVolume: - fsType: fsTypeValue - storagePolicyID: storagePolicyIDValue - storagePolicyName: storagePolicyNameValue - volumePath: volumePathValue - updateStrategy: - rollingUpdate: - maxUnavailable: maxUnavailableValue - partition: 1 - type: typeValue - volumeClaimTemplates: - - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - accessModes: - - accessModesValue - dataSource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - dataSourceRef: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resources: - limits: - limitsKey: "0" - requests: - requestsKey: "0" - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - storageClassName: storageClassNameValue - volumeAttributesClassName: volumeAttributesClassNameValue - volumeMode: volumeModeValue - volumeName: volumeNameValue - status: - accessModes: - - accessModesValue - allocatedResourceStatuses: - allocatedResourceStatusesKey: allocatedResourceStatusesValue - allocatedResources: - allocatedResourcesKey: "0" - capacity: - capacityKey: "0" - conditions: - - lastProbeTime: "2003-01-01T01:01:01Z" - lastTransitionTime: "2004-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue - currentVolumeAttributesClassName: currentVolumeAttributesClassNameValue - modifyVolumeStatus: - status: statusValue - targetVolumeAttributesClassName: targetVolumeAttributesClassNameValue - phase: phaseValue -status: - availableReplicas: 11 - collisionCount: 9 - conditions: - - lastTransitionTime: "2003-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue - currentReplicas: 4 - currentRevision: currentRevisionValue - observedGeneration: 1 - readyReplicas: 3 - replicas: 2 - updateRevision: updateRevisionValue - updatedReplicas: 5 diff --git a/testdata/v1.31.0/authentication.k8s.io.v1.SelfSubjectReview.json b/testdata/v1.31.0/authentication.k8s.io.v1.SelfSubjectReview.json deleted file mode 100644 index 4716294384..0000000000 --- a/testdata/v1.31.0/authentication.k8s.io.v1.SelfSubjectReview.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "kind": "SelfSubjectReview", - "apiVersion": "authentication.k8s.io/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "status": { - "userInfo": { - "username": "usernameValue", - "uid": "uidValue", - "groups": [ - "groupsValue" - ], - "extra": { - "extraKey": [ - "extraValue" - ] - } - } - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/authentication.k8s.io.v1.SelfSubjectReview.pb b/testdata/v1.31.0/authentication.k8s.io.v1.SelfSubjectReview.pb deleted file mode 100644 index fc4df485686e6b395e3eff0c9e1ea0ccf852ffcc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 481 zcmZ9IJ5Iwu5Qd$Hgfn?L7DeRJWh4SbLb9k(NH2vOhg^8$FDNJr$0z zFRyS)apt}j;4=>;MkaVeVufyFgbX>6c(E#ZwPjbNq@RuWRiSOpDT~aHmaXW(sLn1& zktnX`kPE%qRD+$aZ7*KF-;0iQs@2=ihgO$x+k{d~LX5>3&fRh*&5zKB8euGvhTpWE zt+$yOA3-UiEL-et`296at4>n74RVkRa=bpIjKuUo0~(*_TnLp3VPu5d6x>>pF7IFA zd;e{GeZ$w{x8PVEZHDncT+h=ind2hlAD_C8P~kcW6KWSupsED&P0njhuRP+3N;4e4 T2{ztKPL`Qe0E{+Vp5YE9LJM3U~<+p29c6UGD(MO3qo)#xTuIoad5jdzt%J9CFbr5ReS+wU%=T% za1$q?@1PFOzJXpZw1(pLz2Cp@=l8ofU>e#+4J`O2P)_=ola#jNfVD`vGj6-JUK#^E zgKGhdyDwGrUO^VcBRI#20C#-|6mrbrWFGSDS(atEUzGT343fbyp|R>{nu0`1bvANf zsmNs=-v|JA6)ms*cu?!yt)RZ;}<4**8$-_O9zN5iTyFj(Q*$5)lE~hr-rtm+;+Xi+}go XGQ3TM`0VovP|5M|`XMS5Kh{H>9kE_@KA!MT!bE~7KGwSdQ=gS;=z-fc3Rh@yJ0t5t>O##7M^_s z-$3X)h=OO|K$DIAp|@{mzWL^xZ^Mo>U5ZMJz zDBihWMffN{nUOJGl1QPuIYNelBzQJ2d3M&7G3nCU-iKeCKK%@4SK*^Oz zc_?JMR98D2UCWxie7}_(<2XgHKkq3zhpPsZBNAXFPjKp1a;PT)A8f)HPqcI0c2?e+ zb9(^gkg|NSxAgBX+%)SXrmIHw%#JDQL&``*A5w!_=h+OPIwp*aQ0Rhd^EkVIZr@v% z@zWbVXTL?qXs2Qr4P qB#PxfEbj0sBf(XibNvQbc%KN8WmW~ySgU$~Lh$?s-(K5b_{JY?61a~5 diff --git a/testdata/v1.31.0/authentication.k8s.io.v1.TokenReview.yaml b/testdata/v1.31.0/authentication.k8s.io.v1.TokenReview.yaml deleted file mode 100644 index 0bf9955787..0000000000 --- a/testdata/v1.31.0/authentication.k8s.io.v1.TokenReview.yaml +++ /dev/null @@ -1,51 +0,0 @@ -apiVersion: authentication.k8s.io/v1 -kind: TokenReview -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - audiences: - - audiencesValue - token: tokenValue -status: - audiences: - - audiencesValue - authenticated: true - error: errorValue - user: - extra: - extraKey: - - extraValue - groups: - - groupsValue - uid: uidValue - username: usernameValue diff --git a/testdata/v1.31.0/authentication.k8s.io.v1beta1.SelfSubjectReview.json b/testdata/v1.31.0/authentication.k8s.io.v1beta1.SelfSubjectReview.json deleted file mode 100644 index 5dc2c9967f..0000000000 --- a/testdata/v1.31.0/authentication.k8s.io.v1beta1.SelfSubjectReview.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "kind": "SelfSubjectReview", - "apiVersion": "authentication.k8s.io/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "status": { - "userInfo": { - "username": "usernameValue", - "uid": "uidValue", - "groups": [ - "groupsValue" - ], - "extra": { - "extraKey": [ - "extraValue" - ] - } - } - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/authentication.k8s.io.v1beta1.SelfSubjectReview.pb b/testdata/v1.31.0/authentication.k8s.io.v1beta1.SelfSubjectReview.pb deleted file mode 100644 index 8b12151619dc6006e054fcb96b0f188a4d100b95..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 486 zcmZ9IJ5Iwu5Qd$Hgfn?L7DZ%<#$}2?A|Y8+C?z0-2%?}{CzG(Tv$pmT2#5=C3n~hZ zzzvXc2Sh>54PdiY9-{kqX7-lMz-Jyxj7;&G#0uTU7#VUR@qAVCYRj%j$sil?t3unHQ5KmWEnCr{ zQQcjRB2iq=As2eTsRlbe+g`kUzZV_rM60)-53MfXrU|8(gcyrcoV(>rnjfJLHNsdT z%@L;UY`x9Q@-}`Ul>l?lnzXiwYYBP+7;%c5|$s83S|M=8%gbLS5m{5Cg3{@qNZ*pF9dgU=s YRGQ)VO|bD^aS5Kh{H>9kE_@KAzYax7A9K?t6tM->q%9z3~er*%!b8+Maw6<@%&@a!Y_ z214IK6g>L|nr!S3y?s0L%{SkC8+cNKUDzQ>e1j~eeG*g7T7f59l<2OwisOAwxl8Je!vsGwaHT^mB?^lNb(9DGSs@(@5w*q0W{- z$rF+CP{?$%s(Kq;!o&l^`&f`HvnqhXO4R`rg6B85=Gq3$)&2lQ)VgK> diff --git a/testdata/v1.31.0/authentication.k8s.io.v1beta1.TokenReview.yaml b/testdata/v1.31.0/authentication.k8s.io.v1beta1.TokenReview.yaml deleted file mode 100644 index 0f7c240d44..0000000000 --- a/testdata/v1.31.0/authentication.k8s.io.v1beta1.TokenReview.yaml +++ /dev/null @@ -1,51 +0,0 @@ -apiVersion: authentication.k8s.io/v1beta1 -kind: TokenReview -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - audiences: - - audiencesValue - token: tokenValue -status: - audiences: - - audiencesValue - authenticated: true - error: errorValue - user: - extra: - extraKey: - - extraValue - groups: - - groupsValue - uid: uidValue - username: usernameValue diff --git a/testdata/v1.31.0/authorization.k8s.io.v1.LocalSubjectAccessReview.json b/testdata/v1.31.0/authorization.k8s.io.v1.LocalSubjectAccessReview.json deleted file mode 100644 index 9d6b138a15..0000000000 --- a/testdata/v1.31.0/authorization.k8s.io.v1.LocalSubjectAccessReview.json +++ /dev/null @@ -1,101 +0,0 @@ -{ - "kind": "LocalSubjectAccessReview", - "apiVersion": "authorization.k8s.io/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "resourceAttributes": { - "namespace": "namespaceValue", - "verb": "verbValue", - "group": "groupValue", - "version": "versionValue", - "resource": "resourceValue", - "subresource": "subresourceValue", - "name": "nameValue", - "fieldSelector": { - "rawSelector": "rawSelectorValue", - "requirements": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "labelSelector": { - "rawSelector": "rawSelectorValue", - "requirements": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - }, - "nonResourceAttributes": { - "path": "pathValue", - "verb": "verbValue" - }, - "user": "userValue", - "groups": [ - "groupsValue" - ], - "extra": { - "extraKey": [ - "extraValue" - ] - }, - "uid": "uidValue" - }, - "status": { - "allowed": true, - "denied": true, - "reason": "reasonValue", - "evaluationError": "evaluationErrorValue" - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/authorization.k8s.io.v1.LocalSubjectAccessReview.pb b/testdata/v1.31.0/authorization.k8s.io.v1.LocalSubjectAccessReview.pb deleted file mode 100644 index fe26fea6f5c48df177c4ba5c2dcbfeac433b7a49..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 767 zcmbtSyKdA#6t$Ni?7NQ`D+()D$OTAS1hNQewH+(bgeZy#qM*BWZZ;D;GuDi~VT1Sq z{(_o@o+3R`K7bBUq|P5C;~8hOgp%&eeV%jfWFzIk3wVT8c_<`1#gYlWk&V;_6VGOw zVSihsnD14|5vAp;G$p0p(u~nbcy=Ftx4`FkOz$zTD1102P7+Jnxd}zRI;#pyZAsi! zlpky}o|%q;SFwGAhHH|PsHCnVsWbx<9X*(M-uc&yA1i^grO~&`pBnALhd%f@CX}l; zG!NSrnvNuf9&#>9Bg3SFrMIa$dI^5UxLq9G@{bp62CG=GWg^erkt;)eG=Z=uidz2-{pjwPSZnxmeswQ!hI$y~`|91iu+EHEp!MnVBv4hdaKf1S zy#>EqxZ`8!&qyX_X#`U#s>0y7qr(gL2Hn3V4gZ-vzSTY%Lm=^Fk8*uw(a3oMUPf~( zt!t$W+veUDgT~3tw{Z3m zd;=36z|A-~JGkrRmOpWHJN8%)ee}IzC}lwgUW;E0gE*OL5+!c$Y6g#-SrRhTFBQG2Xemci z9{_XYQ44jL9|aQIX;Ge~SIqokD*xfG&b`;F$YA(dJhgabe`04FX)X+7Ynj;Eq-CWB uV{vf~^?&S|8%Pgu*o}`YxZ2TFGsOV&$**ALVSG}Cd&Jm8$Chd-w(cQI<23#n+&2C!*MnAy6@a!k} z2PXW3@!;8uXI*vyk=wl4nK$pf9n^(^s%RG{@h#(IjAO!RWl$Ft!uHatv(tjG+e(5y zv|~RBLHLjoxO2WU=zR_4DIUT#4ij*;dq9EX7|!P{*P6bH2)Ff!wzf4*jI<5X5JUvILyKsP0n4{-pYID?V1p-Z(9c*w$( zvRIi=&-M~lGyMaU9}ub!yMOw|aMv`g3Uj9-v& B#gPC2 diff --git a/testdata/v1.31.0/authorization.k8s.io.v1.SelfSubjectRulesReview.yaml b/testdata/v1.31.0/authorization.k8s.io.v1.SelfSubjectRulesReview.yaml deleted file mode 100644 index 835154ef29..0000000000 --- a/testdata/v1.31.0/authorization.k8s.io.v1.SelfSubjectRulesReview.yaml +++ /dev/null @@ -1,53 +0,0 @@ -apiVersion: authorization.k8s.io/v1 -kind: SelfSubjectRulesReview -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - namespace: namespaceValue -status: - evaluationError: evaluationErrorValue - incomplete: true - nonResourceRules: - - nonResourceURLs: - - nonResourceURLsValue - verbs: - - verbsValue - resourceRules: - - apiGroups: - - apiGroupsValue - resourceNames: - - resourceNamesValue - resources: - - resourcesValue - verbs: - - verbsValue diff --git a/testdata/v1.31.0/authorization.k8s.io.v1.SubjectAccessReview.json b/testdata/v1.31.0/authorization.k8s.io.v1.SubjectAccessReview.json deleted file mode 100644 index ee23994da7..0000000000 --- a/testdata/v1.31.0/authorization.k8s.io.v1.SubjectAccessReview.json +++ /dev/null @@ -1,101 +0,0 @@ -{ - "kind": "SubjectAccessReview", - "apiVersion": "authorization.k8s.io/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "resourceAttributes": { - "namespace": "namespaceValue", - "verb": "verbValue", - "group": "groupValue", - "version": "versionValue", - "resource": "resourceValue", - "subresource": "subresourceValue", - "name": "nameValue", - "fieldSelector": { - "rawSelector": "rawSelectorValue", - "requirements": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "labelSelector": { - "rawSelector": "rawSelectorValue", - "requirements": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - }, - "nonResourceAttributes": { - "path": "pathValue", - "verb": "verbValue" - }, - "user": "userValue", - "groups": [ - "groupsValue" - ], - "extra": { - "extraKey": [ - "extraValue" - ] - }, - "uid": "uidValue" - }, - "status": { - "allowed": true, - "denied": true, - "reason": "reasonValue", - "evaluationError": "evaluationErrorValue" - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/authorization.k8s.io.v1.SubjectAccessReview.pb b/testdata/v1.31.0/authorization.k8s.io.v1.SubjectAccessReview.pb deleted file mode 100644 index 00e714385aca58733dc9732cae433bcd6609c983..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 762 zcmbtSJx|*}7`6jd?KfY>Ac{Oy9$G0w+D1Z(vJr^|s;UCS(CwVONiKHI)}0*)h(Ex; zU}j-w=w68*z*aGI?msB!JCmg8*zLLZ^Ld{4!nQD=32#W2j$%$PNJ?YY4BMhf;}6qM z?&fh8jIo#Q^?E485l$(dx!+&G&l1>-Oz@OM8M+%oWXMU1UtU69EzgRC^mK_|6&MXZ zQx>X@hLzF2Lai;1BF?z1LoVcU6>Y!nTGqqOulse!IFRV}_YaA_!nYl;BNAXF4sqs| zHB=pe4>iJAoGJw>?JT`j&3G5=kTSj4Tk!YiY#Mcv&}AYY&9=$w1IkE5FC;-V=h_UQ zG9io%k*k1Pi<4ac3w>{Oj4w4jJ^Wd7jFudRQD2piS!nNez~SWV7$bS*xRCP>tPp2fT2)Ic zQeJtQlhZyN{70|54R%7(kzTT-%FaaLs$W(D^{&PaSa_atk{`YTps;Fg&9CRZw@kOp Yk%;0Od0Uv%RfpNP|x-<8A&bgCD%7O@vOWQlgZ)j-=8wOf*^9w-iz=6D<2l<|6TaK}HKvl*;n&K8Mm+L0|+4;jad zooj+-&R08z&IxjykTe0mC-O@FE&bsBm{4o@b@O-0vxa&YWe4iREU%pzEko<`m$9eH zcDhohr8GE;~{-5}wyZq8-Kyf zC-4VId;l9_U}j(k*J(?Ek?rI@&OPTifhRPyg_dy=pEFJ_aZDI32c9Ssww_jeh;hYU zY(RL{Nc;{oggAnfz=eG?jb0{@NpTlWaF~ES*9Hn4$8az#ImLcgM7WuaxCJ4} z_6ZHtM#)G>OQGsK2f-39=YR{TLRGz)x?w!sy**4>+O9_N}Y zWl(MSE-GS5S*)z6wl(&xW;&b53<%8*JKy@x!>4c*iE>=~grB$ra4;$)Wpf0Tp@^+QL` zI{KBPZKl9|b<{y^&XP!BH!sVh^h$*vOw~W!wQukB8nQUPkWVdNnGNi$A|rraX04D} z8?>BU+83AQu=|f)djXjdj?c3rW3JW=-Oh2qV(=?C^Uy!3!rkF~pkqaMG*|lq_>A~6 diff --git a/testdata/v1.31.0/authorization.k8s.io.v1beta1.SelfSubjectAccessReview.yaml b/testdata/v1.31.0/authorization.k8s.io.v1beta1.SelfSubjectAccessReview.yaml deleted file mode 100644 index 1a548c4a76..0000000000 --- a/testdata/v1.31.0/authorization.k8s.io.v1beta1.SelfSubjectAccessReview.yaml +++ /dev/null @@ -1,65 +0,0 @@ -apiVersion: authorization.k8s.io/v1beta1 -kind: SelfSubjectAccessReview -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - nonResourceAttributes: - path: pathValue - verb: verbValue - resourceAttributes: - fieldSelector: - rawSelector: rawSelectorValue - requirements: - - key: keyValue - operator: operatorValue - values: - - valuesValue - group: groupValue - labelSelector: - rawSelector: rawSelectorValue - requirements: - - key: keyValue - operator: operatorValue - values: - - valuesValue - name: nameValue - namespace: namespaceValue - resource: resourceValue - subresource: subresourceValue - verb: verbValue - version: versionValue -status: - allowed: true - denied: true - evaluationError: evaluationErrorValue - reason: reasonValue diff --git a/testdata/v1.31.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.json b/testdata/v1.31.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.json deleted file mode 100644 index 0b6e883761..0000000000 --- a/testdata/v1.31.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "kind": "SelfSubjectRulesReview", - "apiVersion": "authorization.k8s.io/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "namespace": "namespaceValue" - }, - "status": { - "resourceRules": [ - { - "verbs": [ - "verbsValue" - ], - "apiGroups": [ - "apiGroupsValue" - ], - "resources": [ - "resourcesValue" - ], - "resourceNames": [ - "resourceNamesValue" - ] - } - ], - "nonResourceRules": [ - { - "verbs": [ - "verbsValue" - ], - "nonResourceURLs": [ - "nonResourceURLsValue" - ] - } - ], - "incomplete": true, - "evaluationError": "evaluationErrorValue" - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.pb b/testdata/v1.31.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.pb deleted file mode 100644 index b3c29b4d204cd2027b01aa5d4d6a4fd96bedeb4b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 568 zcmZ9J&rZTX5XQ@&L|C=dh8WU#>X8EqiH3MGB*sLEF`yp2ZDGKLvfJ#oHDL4sd<)M$ zf^T5LI~Wh1y?EATmm+eTnVtFi`@RnA!axUT2S?#8<79$E!f0h!7Zt*Gs|avMueh5+YBdQR zs*7?iB3)J0iW~%sxZDFSB!rsQ*BZIp^!f8OYZ<4qdii>j)djjKp}dbh@WmO7?R8zM z3(rL+rj&)siF&q{dbKmyNBJS4`oqp2zq_C*7jQt9LH1Jh6fg7$#XgxxK&A7P^3cWz zQ``rx2DZt9ng0aeS(S06hmYw`#xiPB4E(OR90xj?!z@bQKQt^6d5a`es1{nu(0N2h z2*toXjbWP-_Jp%2(7j_O0=jqYq@Vqk`HlNep-35R&GWx%HT6y@PQxk*Dthwjw}_*Vg& zx}<3DH{+r1Xj&QD)u=TqNXD5^btI%>prh@NUCX*TzxzAw7^@0h++QoS0XuVGM;K5f z*J$Kc3#dB+9~#JcoN5_5?M%FN&A|__L&l56-ZOuH%%(Ym37aIcWVTH)v&T3_>{t=h zbI!~FY6IlhC!qswBTjPtPxQUlV|=CI|INdcW3<#TigxApC@GxjOhe`5wCl($7(1a& zy{y2k39o!~?IDRkFZG}=;w;hFuc`3Zy=MKzq}H3+ooDUc4mbi2w|btMBM_zkr=!x?e1rP-SPbbk&~_*qj54j#7d7-D?0E>)zJ*c-}Y5 abgP0;mcPiGrJSw4%P%2H3G=3B_{Jkv)Cx!d diff --git a/testdata/v1.31.0/authorization.k8s.io.v1beta1.SubjectAccessReview.yaml b/testdata/v1.31.0/authorization.k8s.io.v1beta1.SubjectAccessReview.yaml deleted file mode 100644 index 5d3647e498..0000000000 --- a/testdata/v1.31.0/authorization.k8s.io.v1beta1.SubjectAccessReview.yaml +++ /dev/null @@ -1,72 +0,0 @@ -apiVersion: authorization.k8s.io/v1beta1 -kind: SubjectAccessReview -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - extra: - extraKey: - - extraValue - group: - - groupValue - nonResourceAttributes: - path: pathValue - verb: verbValue - resourceAttributes: - fieldSelector: - rawSelector: rawSelectorValue - requirements: - - key: keyValue - operator: operatorValue - values: - - valuesValue - group: groupValue - labelSelector: - rawSelector: rawSelectorValue - requirements: - - key: keyValue - operator: operatorValue - values: - - valuesValue - name: nameValue - namespace: namespaceValue - resource: resourceValue - subresource: subresourceValue - verb: verbValue - version: versionValue - uid: uidValue - user: userValue -status: - allowed: true - denied: true - evaluationError: evaluationErrorValue - reason: reasonValue diff --git a/testdata/v1.31.0/autoscaling.v1.HorizontalPodAutoscaler.json b/testdata/v1.31.0/autoscaling.v1.HorizontalPodAutoscaler.json deleted file mode 100644 index c4af108f9d..0000000000 --- a/testdata/v1.31.0/autoscaling.v1.HorizontalPodAutoscaler.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "kind": "HorizontalPodAutoscaler", - "apiVersion": "autoscaling/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "scaleTargetRef": { - "kind": "kindValue", - "name": "nameValue", - "apiVersion": "apiVersionValue" - }, - "minReplicas": 2, - "maxReplicas": 3, - "targetCPUUtilizationPercentage": 4 - }, - "status": { - "observedGeneration": 1, - "lastScaleTime": "2002-01-01T01:01:01Z", - "currentReplicas": 3, - "desiredReplicas": 4, - "currentCPUUtilizationPercentage": 5 - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/autoscaling.v1.HorizontalPodAutoscaler.pb b/testdata/v1.31.0/autoscaling.v1.HorizontalPodAutoscaler.pb deleted file mode 100644 index 89d9b6eeb91005ea98ef11312e191db6e18ffac4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 478 zcmd0{C}!Z&0hlvtAL2NROw1IZQ_Bql?YDDf7j=A`*#=4FF*XmONgrhr*S zB1Ngi`K3ibb*V+gnfZBOQ44k_4vw=6pY3K5VDJL6R)07JWCd_VNpNxIBqpWi6nm#u z3UNc2U>!+HK=YmK zi}=$r^MIjJ1#}?ToG!*BE}q=Pyu|d>BCvoEUw#3||1jrEp&O$F^uwdG|Ct3CjDUuv z=A;ydR2D!&#)^fDsk+ulptv*%9unX{)#p-2a;^}oP82CEc<5(5Cm5TRlK diff --git a/testdata/v1.31.0/autoscaling.v1.HorizontalPodAutoscaler.yaml b/testdata/v1.31.0/autoscaling.v1.HorizontalPodAutoscaler.yaml deleted file mode 100644 index 4d76ce4acc..0000000000 --- a/testdata/v1.31.0/autoscaling.v1.HorizontalPodAutoscaler.yaml +++ /dev/null @@ -1,48 +0,0 @@ -apiVersion: autoscaling/v1 -kind: HorizontalPodAutoscaler -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - maxReplicas: 3 - minReplicas: 2 - scaleTargetRef: - apiVersion: apiVersionValue - kind: kindValue - name: nameValue - targetCPUUtilizationPercentage: 4 -status: - currentCPUUtilizationPercentage: 5 - currentReplicas: 3 - desiredReplicas: 4 - lastScaleTime: "2002-01-01T01:01:01Z" - observedGeneration: 1 diff --git a/testdata/v1.31.0/autoscaling.v1.Scale.json b/testdata/v1.31.0/autoscaling.v1.Scale.json deleted file mode 100644 index f5f9a463d2..0000000000 --- a/testdata/v1.31.0/autoscaling.v1.Scale.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "kind": "Scale", - "apiVersion": "autoscaling/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "replicas": 1 - }, - "status": { - "replicas": 1, - "selector": "selectorValue" - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/autoscaling.v1.Scale.pb b/testdata/v1.31.0/autoscaling.v1.Scale.pb deleted file mode 100644 index 9bcf37e96979696b29fd502ca0849e1ece3a8fc1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 414 zcmZ8d!AiqG5KUsmWYsiX1SQ8Ddr=EQ@z|q^2#N=9lXM!^YGxO%nn^z3ALv~3BbtQEMoQZt@?vSou8jSSYBkvvw1WfT7c#X7| zqd)}}o-bN)*i3Z^SxZT_HS)w|`}60|*G}Y| z81(Y>X3zz>*&_jm6uCad8QpB5-AEJTRtQ-^Wkl>aTB$AP_J{-p6Yb&n&wsLX)9*sb zR*f9ELsxYtOqdMrjX|sP#Q6n%AB~X! diff --git a/testdata/v1.31.0/autoscaling.v1.Scale.yaml b/testdata/v1.31.0/autoscaling.v1.Scale.yaml deleted file mode 100644 index 098815e83e..0000000000 --- a/testdata/v1.31.0/autoscaling.v1.Scale.yaml +++ /dev/null @@ -1,39 +0,0 @@ -apiVersion: autoscaling/v1 -kind: Scale -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - replicas: 1 -status: - replicas: 1 - selector: selectorValue diff --git a/testdata/v1.31.0/autoscaling.v2.HorizontalPodAutoscaler.json b/testdata/v1.31.0/autoscaling.v2.HorizontalPodAutoscaler.json deleted file mode 100644 index f03e36623e..0000000000 --- a/testdata/v1.31.0/autoscaling.v2.HorizontalPodAutoscaler.json +++ /dev/null @@ -1,297 +0,0 @@ -{ - "kind": "HorizontalPodAutoscaler", - "apiVersion": "autoscaling/v2", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "scaleTargetRef": { - "kind": "kindValue", - "name": "nameValue", - "apiVersion": "apiVersionValue" - }, - "minReplicas": 2, - "maxReplicas": 3, - "metrics": [ - { - "type": "typeValue", - "object": { - "describedObject": { - "kind": "kindValue", - "name": "nameValue", - "apiVersion": "apiVersionValue" - }, - "target": { - "type": "typeValue", - "value": "0", - "averageValue": "0", - "averageUtilization": 4 - }, - "metric": { - "name": "nameValue", - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - } - }, - "pods": { - "metric": { - "name": "nameValue", - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - }, - "target": { - "type": "typeValue", - "value": "0", - "averageValue": "0", - "averageUtilization": 4 - } - }, - "resource": { - "name": "nameValue", - "target": { - "type": "typeValue", - "value": "0", - "averageValue": "0", - "averageUtilization": 4 - } - }, - "containerResource": { - "name": "nameValue", - "target": { - "type": "typeValue", - "value": "0", - "averageValue": "0", - "averageUtilization": 4 - }, - "container": "containerValue" - }, - "external": { - "metric": { - "name": "nameValue", - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - }, - "target": { - "type": "typeValue", - "value": "0", - "averageValue": "0", - "averageUtilization": 4 - } - } - } - ], - "behavior": { - "scaleUp": { - "stabilizationWindowSeconds": 3, - "selectPolicy": "selectPolicyValue", - "policies": [ - { - "type": "typeValue", - "value": 2, - "periodSeconds": 3 - } - ] - }, - "scaleDown": { - "stabilizationWindowSeconds": 3, - "selectPolicy": "selectPolicyValue", - "policies": [ - { - "type": "typeValue", - "value": 2, - "periodSeconds": 3 - } - ] - } - } - }, - "status": { - "observedGeneration": 1, - "lastScaleTime": "2002-01-01T01:01:01Z", - "currentReplicas": 3, - "desiredReplicas": 4, - "currentMetrics": [ - { - "type": "typeValue", - "object": { - "metric": { - "name": "nameValue", - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - }, - "current": { - "value": "0", - "averageValue": "0", - "averageUtilization": 3 - }, - "describedObject": { - "kind": "kindValue", - "name": "nameValue", - "apiVersion": "apiVersionValue" - } - }, - "pods": { - "metric": { - "name": "nameValue", - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - }, - "current": { - "value": "0", - "averageValue": "0", - "averageUtilization": 3 - } - }, - "resource": { - "name": "nameValue", - "current": { - "value": "0", - "averageValue": "0", - "averageUtilization": 3 - } - }, - "containerResource": { - "name": "nameValue", - "current": { - "value": "0", - "averageValue": "0", - "averageUtilization": 3 - }, - "container": "containerValue" - }, - "external": { - "metric": { - "name": "nameValue", - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - }, - "current": { - "value": "0", - "averageValue": "0", - "averageUtilization": 3 - } - } - } - ], - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "lastTransitionTime": "2003-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/autoscaling.v2.HorizontalPodAutoscaler.pb b/testdata/v1.31.0/autoscaling.v2.HorizontalPodAutoscaler.pb deleted file mode 100644 index 3d1507519883ea000ab7d4157647b5a5e6af632d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1570 zcmc&!F>ljA6t-haB~nldHx6#Q7KxD@)fePyp&J%0QBz3W@|zG=n7i**Ctm&$HX8HsYfEF*(H_F3?0xI^iae9lLF(&3!I_ zl|uli^BmcIR3B48hb+|>xFIJ+{d4%_e3}qy_;&oq@vRmlW63~0oK8w+Ixea_f3fGQ zyuV;Vllsd=Hw?V^6z@Oj{Yv13KOI!d=2`I@d*x`nVFo(L-XX=Y>5|80le-8g9@8v- z+Ff+OH@-_IworA%rlq}BvLZ{8h<8xbRZ>VYbaBa-78G7L3tCoo^k1-bZmoiiG~!|) zIgFd;IO?G-v<|by;;bhV9?z(68Z9l<5jc27Kl0M8+8Ffu`r}v7Yv63U(T6kAdSzc^ z@9L-!A1;o-A*)UR;g^Ofyk<7)4BY7QP;|DJqByUS)~+E2>?v50`D_ZI&A&gLK$}A^ VWmL_!Z&ZiXtzf%pi4iNb{sO0r=-U7Q diff --git a/testdata/v1.31.0/autoscaling.v2.HorizontalPodAutoscaler.yaml b/testdata/v1.31.0/autoscaling.v2.HorizontalPodAutoscaler.yaml deleted file mode 100644 index 78ce5ba913..0000000000 --- a/testdata/v1.31.0/autoscaling.v2.HorizontalPodAutoscaler.yaml +++ /dev/null @@ -1,200 +0,0 @@ -apiVersion: autoscaling/v2 -kind: HorizontalPodAutoscaler -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - behavior: - scaleDown: - policies: - - periodSeconds: 3 - type: typeValue - value: 2 - selectPolicy: selectPolicyValue - stabilizationWindowSeconds: 3 - scaleUp: - policies: - - periodSeconds: 3 - type: typeValue - value: 2 - selectPolicy: selectPolicyValue - stabilizationWindowSeconds: 3 - maxReplicas: 3 - metrics: - - containerResource: - container: containerValue - name: nameValue - target: - averageUtilization: 4 - averageValue: "0" - type: typeValue - value: "0" - external: - metric: - name: nameValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - target: - averageUtilization: 4 - averageValue: "0" - type: typeValue - value: "0" - object: - describedObject: - apiVersion: apiVersionValue - kind: kindValue - name: nameValue - metric: - name: nameValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - target: - averageUtilization: 4 - averageValue: "0" - type: typeValue - value: "0" - pods: - metric: - name: nameValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - target: - averageUtilization: 4 - averageValue: "0" - type: typeValue - value: "0" - resource: - name: nameValue - target: - averageUtilization: 4 - averageValue: "0" - type: typeValue - value: "0" - type: typeValue - minReplicas: 2 - scaleTargetRef: - apiVersion: apiVersionValue - kind: kindValue - name: nameValue -status: - conditions: - - lastTransitionTime: "2003-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue - currentMetrics: - - containerResource: - container: containerValue - current: - averageUtilization: 3 - averageValue: "0" - value: "0" - name: nameValue - external: - current: - averageUtilization: 3 - averageValue: "0" - value: "0" - metric: - name: nameValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - object: - current: - averageUtilization: 3 - averageValue: "0" - value: "0" - describedObject: - apiVersion: apiVersionValue - kind: kindValue - name: nameValue - metric: - name: nameValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - pods: - current: - averageUtilization: 3 - averageValue: "0" - value: "0" - metric: - name: nameValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - resource: - current: - averageUtilization: 3 - averageValue: "0" - value: "0" - name: nameValue - type: typeValue - currentReplicas: 3 - desiredReplicas: 4 - lastScaleTime: "2002-01-01T01:01:01Z" - observedGeneration: 1 diff --git a/testdata/v1.31.0/autoscaling.v2beta1.HorizontalPodAutoscaler.json b/testdata/v1.31.0/autoscaling.v2beta1.HorizontalPodAutoscaler.json deleted file mode 100644 index ff45a9511f..0000000000 --- a/testdata/v1.31.0/autoscaling.v2beta1.HorizontalPodAutoscaler.json +++ /dev/null @@ -1,224 +0,0 @@ -{ - "kind": "HorizontalPodAutoscaler", - "apiVersion": "autoscaling/v2beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "scaleTargetRef": { - "kind": "kindValue", - "name": "nameValue", - "apiVersion": "apiVersionValue" - }, - "minReplicas": 2, - "maxReplicas": 3, - "metrics": [ - { - "type": "typeValue", - "object": { - "target": { - "kind": "kindValue", - "name": "nameValue", - "apiVersion": "apiVersionValue" - }, - "metricName": "metricNameValue", - "targetValue": "0", - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "averageValue": "0" - }, - "pods": { - "metricName": "metricNameValue", - "targetAverageValue": "0", - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - }, - "resource": { - "name": "nameValue", - "targetAverageUtilization": 2, - "targetAverageValue": "0" - }, - "containerResource": { - "name": "nameValue", - "targetAverageUtilization": 2, - "targetAverageValue": "0", - "container": "containerValue" - }, - "external": { - "metricName": "metricNameValue", - "metricSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "targetValue": "0", - "targetAverageValue": "0" - } - } - ] - }, - "status": { - "observedGeneration": 1, - "lastScaleTime": "2002-01-01T01:01:01Z", - "currentReplicas": 3, - "desiredReplicas": 4, - "currentMetrics": [ - { - "type": "typeValue", - "object": { - "target": { - "kind": "kindValue", - "name": "nameValue", - "apiVersion": "apiVersionValue" - }, - "metricName": "metricNameValue", - "currentValue": "0", - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "averageValue": "0" - }, - "pods": { - "metricName": "metricNameValue", - "currentAverageValue": "0", - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - }, - "resource": { - "name": "nameValue", - "currentAverageUtilization": 2, - "currentAverageValue": "0" - }, - "containerResource": { - "name": "nameValue", - "currentAverageUtilization": 2, - "currentAverageValue": "0", - "container": "containerValue" - }, - "external": { - "metricName": "metricNameValue", - "metricSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "currentValue": "0", - "currentAverageValue": "0" - } - } - ], - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "lastTransitionTime": "2003-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/autoscaling.v2beta1.HorizontalPodAutoscaler.pb b/testdata/v1.31.0/autoscaling.v2beta1.HorizontalPodAutoscaler.pb deleted file mode 100644 index e32a35d98ae1a69ae6953404aa6def467499db66..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1400 zcmeHHF>ezw6u!$v;_}iahe2v|Q{|yZH$aJm6jfrN6M_hJKpndIE^aWn*pcn4lp_8B zBjOJ*qW*-6jR7I`2Xt#0n7emqeRh+anuVbY65I3h^ZUN{z2`UTDGwgQ15#+AGLkbs zd~(oDsU}a++DjqXq2QY2J7VzSCW1=z9pJ164Nk^%m*fRS_lJ~INi=;kbH%OlR!vCe zLh!1h`F@}Ak$sVb1shna`%qFP3Tfh~R7`N|?cLiB!;`Onj_Z;4%2-Dizl^m5dmU)x zB&E4}O{b{oO#33m&?1}*O|(g3ucOM@#=L(9jS=GxI9~9_b2dqvOjwo3rr+~rd!KP5 z&7mP^^L+ACSQ!&ehE!SyYKci%|BQZoI}J89{64t~BCl(b(R`rZPA5*8tvb{`eB6#y zk*P*cA+xs!gb%n-ZjvW$VmVI diff --git a/testdata/v1.31.0/autoscaling.v2beta1.HorizontalPodAutoscaler.yaml b/testdata/v1.31.0/autoscaling.v2beta1.HorizontalPodAutoscaler.yaml deleted file mode 100644 index deeb7cd122..0000000000 --- a/testdata/v1.31.0/autoscaling.v2beta1.HorizontalPodAutoscaler.yaml +++ /dev/null @@ -1,152 +0,0 @@ -apiVersion: autoscaling/v2beta1 -kind: HorizontalPodAutoscaler -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - maxReplicas: 3 - metrics: - - containerResource: - container: containerValue - name: nameValue - targetAverageUtilization: 2 - targetAverageValue: "0" - external: - metricName: metricNameValue - metricSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - targetAverageValue: "0" - targetValue: "0" - object: - averageValue: "0" - metricName: metricNameValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - target: - apiVersion: apiVersionValue - kind: kindValue - name: nameValue - targetValue: "0" - pods: - metricName: metricNameValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - targetAverageValue: "0" - resource: - name: nameValue - targetAverageUtilization: 2 - targetAverageValue: "0" - type: typeValue - minReplicas: 2 - scaleTargetRef: - apiVersion: apiVersionValue - kind: kindValue - name: nameValue -status: - conditions: - - lastTransitionTime: "2003-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue - currentMetrics: - - containerResource: - container: containerValue - currentAverageUtilization: 2 - currentAverageValue: "0" - name: nameValue - external: - currentAverageValue: "0" - currentValue: "0" - metricName: metricNameValue - metricSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - object: - averageValue: "0" - currentValue: "0" - metricName: metricNameValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - target: - apiVersion: apiVersionValue - kind: kindValue - name: nameValue - pods: - currentAverageValue: "0" - metricName: metricNameValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - resource: - currentAverageUtilization: 2 - currentAverageValue: "0" - name: nameValue - type: typeValue - currentReplicas: 3 - desiredReplicas: 4 - lastScaleTime: "2002-01-01T01:01:01Z" - observedGeneration: 1 diff --git a/testdata/v1.31.0/autoscaling.v2beta2.HorizontalPodAutoscaler.json b/testdata/v1.31.0/autoscaling.v2beta2.HorizontalPodAutoscaler.json deleted file mode 100644 index 3543686cd4..0000000000 --- a/testdata/v1.31.0/autoscaling.v2beta2.HorizontalPodAutoscaler.json +++ /dev/null @@ -1,297 +0,0 @@ -{ - "kind": "HorizontalPodAutoscaler", - "apiVersion": "autoscaling/v2beta2", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "scaleTargetRef": { - "kind": "kindValue", - "name": "nameValue", - "apiVersion": "apiVersionValue" - }, - "minReplicas": 2, - "maxReplicas": 3, - "metrics": [ - { - "type": "typeValue", - "object": { - "describedObject": { - "kind": "kindValue", - "name": "nameValue", - "apiVersion": "apiVersionValue" - }, - "target": { - "type": "typeValue", - "value": "0", - "averageValue": "0", - "averageUtilization": 4 - }, - "metric": { - "name": "nameValue", - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - } - }, - "pods": { - "metric": { - "name": "nameValue", - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - }, - "target": { - "type": "typeValue", - "value": "0", - "averageValue": "0", - "averageUtilization": 4 - } - }, - "resource": { - "name": "nameValue", - "target": { - "type": "typeValue", - "value": "0", - "averageValue": "0", - "averageUtilization": 4 - } - }, - "containerResource": { - "name": "nameValue", - "target": { - "type": "typeValue", - "value": "0", - "averageValue": "0", - "averageUtilization": 4 - }, - "container": "containerValue" - }, - "external": { - "metric": { - "name": "nameValue", - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - }, - "target": { - "type": "typeValue", - "value": "0", - "averageValue": "0", - "averageUtilization": 4 - } - } - } - ], - "behavior": { - "scaleUp": { - "stabilizationWindowSeconds": 3, - "selectPolicy": "selectPolicyValue", - "policies": [ - { - "type": "typeValue", - "value": 2, - "periodSeconds": 3 - } - ] - }, - "scaleDown": { - "stabilizationWindowSeconds": 3, - "selectPolicy": "selectPolicyValue", - "policies": [ - { - "type": "typeValue", - "value": 2, - "periodSeconds": 3 - } - ] - } - } - }, - "status": { - "observedGeneration": 1, - "lastScaleTime": "2002-01-01T01:01:01Z", - "currentReplicas": 3, - "desiredReplicas": 4, - "currentMetrics": [ - { - "type": "typeValue", - "object": { - "metric": { - "name": "nameValue", - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - }, - "current": { - "value": "0", - "averageValue": "0", - "averageUtilization": 3 - }, - "describedObject": { - "kind": "kindValue", - "name": "nameValue", - "apiVersion": "apiVersionValue" - } - }, - "pods": { - "metric": { - "name": "nameValue", - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - }, - "current": { - "value": "0", - "averageValue": "0", - "averageUtilization": 3 - } - }, - "resource": { - "name": "nameValue", - "current": { - "value": "0", - "averageValue": "0", - "averageUtilization": 3 - } - }, - "containerResource": { - "name": "nameValue", - "current": { - "value": "0", - "averageValue": "0", - "averageUtilization": 3 - }, - "container": "containerValue" - }, - "external": { - "metric": { - "name": "nameValue", - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - }, - "current": { - "value": "0", - "averageValue": "0", - "averageUtilization": 3 - } - } - } - ], - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "lastTransitionTime": "2003-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/autoscaling.v2beta2.HorizontalPodAutoscaler.pb b/testdata/v1.31.0/autoscaling.v2beta2.HorizontalPodAutoscaler.pb deleted file mode 100644 index 5ffa5cb2a526ebfedc28e8cd2e87ebedd9907a8b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1575 zcmc&!F>ljA6t-haBcaFXMH}nJ@X(r{NaHwHPB#qOdjH_AaH$17|F3D_vcrrRlbS| zPAiviO^|G_N7+b6MD>CWv=v{q>sxn~_3r4ivijh0 z02&!iNG9%)DfB8+M2{nQ2*d04> z?@^|xIZyy~o)>lknq$oHkmULTw)mv1e-0m=P7|scz8(H?d@EMTNH!1;rjv@9t_y0< zp6~jiNES?JQh&MNs(}|CuR=0D*HU6>5Tfe(b7^Kfdg0cLoeOB4V7MBfBdTS8aSJ7^x=fG zUfE~ayCx{b2g@UH(5e%F=(%AEFPn`z0XI576y0k}QJmIDe9I66^n_ZG#cT>yn}2^g ZQf&^soM18AzEM-HZlSiDmKd@^>o4~Z>azd< diff --git a/testdata/v1.31.0/autoscaling.v2beta2.HorizontalPodAutoscaler.yaml b/testdata/v1.31.0/autoscaling.v2beta2.HorizontalPodAutoscaler.yaml deleted file mode 100644 index 6400cc7d81..0000000000 --- a/testdata/v1.31.0/autoscaling.v2beta2.HorizontalPodAutoscaler.yaml +++ /dev/null @@ -1,200 +0,0 @@ -apiVersion: autoscaling/v2beta2 -kind: HorizontalPodAutoscaler -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - behavior: - scaleDown: - policies: - - periodSeconds: 3 - type: typeValue - value: 2 - selectPolicy: selectPolicyValue - stabilizationWindowSeconds: 3 - scaleUp: - policies: - - periodSeconds: 3 - type: typeValue - value: 2 - selectPolicy: selectPolicyValue - stabilizationWindowSeconds: 3 - maxReplicas: 3 - metrics: - - containerResource: - container: containerValue - name: nameValue - target: - averageUtilization: 4 - averageValue: "0" - type: typeValue - value: "0" - external: - metric: - name: nameValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - target: - averageUtilization: 4 - averageValue: "0" - type: typeValue - value: "0" - object: - describedObject: - apiVersion: apiVersionValue - kind: kindValue - name: nameValue - metric: - name: nameValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - target: - averageUtilization: 4 - averageValue: "0" - type: typeValue - value: "0" - pods: - metric: - name: nameValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - target: - averageUtilization: 4 - averageValue: "0" - type: typeValue - value: "0" - resource: - name: nameValue - target: - averageUtilization: 4 - averageValue: "0" - type: typeValue - value: "0" - type: typeValue - minReplicas: 2 - scaleTargetRef: - apiVersion: apiVersionValue - kind: kindValue - name: nameValue -status: - conditions: - - lastTransitionTime: "2003-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue - currentMetrics: - - containerResource: - container: containerValue - current: - averageUtilization: 3 - averageValue: "0" - value: "0" - name: nameValue - external: - current: - averageUtilization: 3 - averageValue: "0" - value: "0" - metric: - name: nameValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - object: - current: - averageUtilization: 3 - averageValue: "0" - value: "0" - describedObject: - apiVersion: apiVersionValue - kind: kindValue - name: nameValue - metric: - name: nameValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - pods: - current: - averageUtilization: 3 - averageValue: "0" - value: "0" - metric: - name: nameValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - resource: - current: - averageUtilization: 3 - averageValue: "0" - value: "0" - name: nameValue - type: typeValue - currentReplicas: 3 - desiredReplicas: 4 - lastScaleTime: "2002-01-01T01:01:01Z" - observedGeneration: 1 diff --git a/testdata/v1.31.0/batch.v1.CronJob.json b/testdata/v1.31.0/batch.v1.CronJob.json deleted file mode 100644 index 6e31218a45..0000000000 --- a/testdata/v1.31.0/batch.v1.CronJob.json +++ /dev/null @@ -1,1880 +0,0 @@ -{ - "kind": "CronJob", - "apiVersion": "batch/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "schedule": "scheduleValue", - "timeZone": "timeZoneValue", - "startingDeadlineSeconds": 2, - "concurrencyPolicy": "concurrencyPolicyValue", - "suspend": true, - "jobTemplate": { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "parallelism": 1, - "completions": 2, - "activeDeadlineSeconds": 3, - "podFailurePolicy": { - "rules": [ - { - "action": "actionValue", - "onExitCodes": { - "containerName": "containerNameValue", - "operator": "operatorValue", - "values": [ - 3 - ] - }, - "onPodConditions": [ - { - "type": "typeValue", - "status": "statusValue" - } - ] - } - ] - }, - "successPolicy": { - "rules": [ - { - "succeededIndexes": "succeededIndexesValue", - "succeededCount": 2 - } - ] - }, - "backoffLimit": 7, - "backoffLimitPerIndex": 12, - "maxFailedIndexes": 13, - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "manualSelector": true, - "template": { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "volumes": [ - { - "name": "nameValue", - "hostPath": { - "path": "pathValue", - "type": "typeValue" - }, - "emptyDir": { - "medium": "mediumValue", - "sizeLimit": "0" - }, - "gcePersistentDisk": { - "pdName": "pdNameValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "awsElasticBlockStore": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "gitRepo": { - "repository": "repositoryValue", - "revision": "revisionValue", - "directory": "directoryValue" - }, - "secret": { - "secretName": "secretNameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "defaultMode": 3, - "optional": true - }, - "nfs": { - "server": "serverValue", - "path": "pathValue", - "readOnly": true - }, - "iscsi": { - "targetPortal": "targetPortalValue", - "iqn": "iqnValue", - "lun": 3, - "iscsiInterface": "iscsiInterfaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "portals": [ - "portalsValue" - ], - "chapAuthDiscovery": true, - "chapAuthSession": true, - "secretRef": { - "name": "nameValue" - }, - "initiatorName": "initiatorNameValue" - }, - "glusterfs": { - "endpoints": "endpointsValue", - "path": "pathValue", - "readOnly": true - }, - "persistentVolumeClaim": { - "claimName": "claimNameValue", - "readOnly": true - }, - "rbd": { - "monitors": [ - "monitorsValue" - ], - "image": "imageValue", - "fsType": "fsTypeValue", - "pool": "poolValue", - "user": "userValue", - "keyring": "keyringValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true - }, - "flexVolume": { - "driver": "driverValue", - "fsType": "fsTypeValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true, - "options": { - "optionsKey": "optionsValue" - } - }, - "cinder": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "name": "nameValue" - } - }, - "cephfs": { - "monitors": [ - "monitorsValue" - ], - "path": "pathValue", - "user": "userValue", - "secretFile": "secretFileValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true - }, - "flocker": { - "datasetName": "datasetNameValue", - "datasetUUID": "datasetUUIDValue" - }, - "downwardAPI": { - "items": [ - { - "path": "pathValue", - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "mode": 4 - } - ], - "defaultMode": 2 - }, - "fc": { - "targetWWNs": [ - "targetWWNsValue" - ], - "lun": 2, - "fsType": "fsTypeValue", - "readOnly": true, - "wwids": [ - "wwidsValue" - ] - }, - "azureFile": { - "secretName": "secretNameValue", - "shareName": "shareNameValue", - "readOnly": true - }, - "configMap": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "defaultMode": 3, - "optional": true - }, - "vsphereVolume": { - "volumePath": "volumePathValue", - "fsType": "fsTypeValue", - "storagePolicyName": "storagePolicyNameValue", - "storagePolicyID": "storagePolicyIDValue" - }, - "quobyte": { - "registry": "registryValue", - "volume": "volumeValue", - "readOnly": true, - "user": "userValue", - "group": "groupValue", - "tenant": "tenantValue" - }, - "azureDisk": { - "diskName": "diskNameValue", - "diskURI": "diskURIValue", - "cachingMode": "cachingModeValue", - "fsType": "fsTypeValue", - "readOnly": true, - "kind": "kindValue" - }, - "photonPersistentDisk": { - "pdID": "pdIDValue", - "fsType": "fsTypeValue" - }, - "projected": { - "sources": [ - { - "secret": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "optional": true - }, - "downwardAPI": { - "items": [ - { - "path": "pathValue", - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "mode": 4 - } - ] - }, - "configMap": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "optional": true - }, - "serviceAccountToken": { - "audience": "audienceValue", - "expirationSeconds": 2, - "path": "pathValue" - }, - "clusterTrustBundle": { - "name": "nameValue", - "signerName": "signerNameValue", - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "optional": true, - "path": "pathValue" - } - } - ], - "defaultMode": 2 - }, - "portworxVolume": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "scaleIO": { - "gateway": "gatewayValue", - "system": "systemValue", - "secretRef": { - "name": "nameValue" - }, - "sslEnabled": true, - "protectionDomain": "protectionDomainValue", - "storagePool": "storagePoolValue", - "storageMode": "storageModeValue", - "volumeName": "volumeNameValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "storageos": { - "volumeName": "volumeNameValue", - "volumeNamespace": "volumeNamespaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "name": "nameValue" - } - }, - "csi": { - "driver": "driverValue", - "readOnly": true, - "fsType": "fsTypeValue", - "volumeAttributes": { - "volumeAttributesKey": "volumeAttributesValue" - }, - "nodePublishSecretRef": { - "name": "nameValue" - } - }, - "ephemeral": { - "volumeClaimTemplate": { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "accessModes": [ - "accessModesValue" - ], - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - } - }, - "volumeName": "volumeNameValue", - "storageClassName": "storageClassNameValue", - "volumeMode": "volumeModeValue", - "dataSource": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue" - }, - "dataSourceRef": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue", - "namespace": "namespaceValue" - }, - "volumeAttributesClassName": "volumeAttributesClassNameValue" - } - } - }, - "image": { - "reference": "referenceValue", - "pullPolicy": "pullPolicyValue" - } - } - ], - "initContainers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "ephemeralContainers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true, - "targetContainerName": "targetContainerNameValue" - } - ], - "restartPolicy": "restartPolicyValue", - "terminationGracePeriodSeconds": 4, - "activeDeadlineSeconds": 5, - "dnsPolicy": "dnsPolicyValue", - "nodeSelector": { - "nodeSelectorKey": "nodeSelectorValue" - }, - "serviceAccountName": "serviceAccountNameValue", - "serviceAccount": "serviceAccountValue", - "automountServiceAccountToken": true, - "nodeName": "nodeNameValue", - "hostNetwork": true, - "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": true, - "securityContext": { - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 2, - "runAsGroup": 6, - "runAsNonRoot": true, - "supplementalGroups": [ - 4 - ], - "supplementalGroupsPolicy": "supplementalGroupsPolicyValue", - "fsGroup": 5, - "sysctls": [ - { - "name": "nameValue", - "value": "valueValue" - } - ], - "fsGroupChangePolicy": "fsGroupChangePolicyValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "imagePullSecrets": [ - { - "name": "nameValue" - } - ], - "hostname": "hostnameValue", - "subdomain": "subdomainValue", - "affinity": { - "nodeAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": { - "nodeSelectorTerms": [ - { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - ] - }, - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "preference": { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - } - ] - }, - "podAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": [ - { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - ], - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "podAffinityTerm": { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - } - ] - }, - "podAntiAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": [ - { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - ], - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "podAffinityTerm": { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - } - ] - } - }, - "schedulerName": "schedulerNameValue", - "tolerations": [ - { - "key": "keyValue", - "operator": "operatorValue", - "value": "valueValue", - "effect": "effectValue", - "tolerationSeconds": 5 - } - ], - "hostAliases": [ - { - "ip": "ipValue", - "hostnames": [ - "hostnamesValue" - ] - } - ], - "priorityClassName": "priorityClassNameValue", - "priority": 25, - "dnsConfig": { - "nameservers": [ - "nameserversValue" - ], - "searches": [ - "searchesValue" - ], - "options": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "readinessGates": [ - { - "conditionType": "conditionTypeValue" - } - ], - "runtimeClassName": "runtimeClassNameValue", - "enableServiceLinks": true, - "preemptionPolicy": "preemptionPolicyValue", - "overhead": { - "overheadKey": "0" - }, - "topologySpreadConstraints": [ - { - "maxSkew": 1, - "topologyKey": "topologyKeyValue", - "whenUnsatisfiable": "whenUnsatisfiableValue", - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "minDomains": 5, - "nodeAffinityPolicy": "nodeAffinityPolicyValue", - "nodeTaintsPolicy": "nodeTaintsPolicyValue", - "matchLabelKeys": [ - "matchLabelKeysValue" - ] - } - ], - "setHostnameAsFQDN": true, - "os": { - "name": "nameValue" - }, - "hostUsers": true, - "schedulingGates": [ - { - "name": "nameValue" - } - ], - "resourceClaims": [ - { - "name": "nameValue", - "resourceClaimName": "resourceClaimNameValue", - "resourceClaimTemplateName": "resourceClaimTemplateNameValue" - } - ] - } - }, - "ttlSecondsAfterFinished": 8, - "completionMode": "completionModeValue", - "suspend": true, - "podReplacementPolicy": "podReplacementPolicyValue", - "managedBy": "managedByValue" - } - }, - "successfulJobsHistoryLimit": 6, - "failedJobsHistoryLimit": 7 - }, - "status": { - "active": [ - { - "kind": "kindValue", - "namespace": "namespaceValue", - "name": "nameValue", - "uid": "uidValue", - "apiVersion": "apiVersionValue", - "resourceVersion": "resourceVersionValue", - "fieldPath": "fieldPathValue" - } - ], - "lastScheduleTime": "2004-01-01T01:01:01Z", - "lastSuccessfulTime": "2005-01-01T01:01:01Z" - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/batch.v1.CronJob.pb b/testdata/v1.31.0/batch.v1.CronJob.pb deleted file mode 100644 index 7b46bd20ae7ec20de5bc76218c798a0a3d72bd29..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11505 zcmeHNU5Fe>9pC?KVrFV~K2rOU-OdMl?cKS|skbg3gn3G46J^&V4trU1t|HgdT{BZj zPj_E;&u%typb_E7gGxY<1BDA5gxrI$kMTha2zq#e_oDbD5qvoEaQdXa=)bG_qh_+n zt=t9!H*eil)z$y1|JU#Luex$F7$cJ;-!ek8`{L#o=%HobbynRL{lnMEUvi}27(Mni z!|pSBxWgRg8zH-pG->6iH}DKo4$(^iv)kvmb47en%lEk@o|dM37Px&M$1y+Pt|MAc z9%|(C@4fZ6UmU28t>V)=AHIuEO|mgd3bxT=cJLLpO^fnTe9_WL*>D^;G(wz2bXS#k zG3N41q;Q2h^2b^xzn)4{s~8?v1zCiX;8)t*F>HPf1r+n#fEJnP8II9mzG$Fj*NfJl zh_4M#qvIOxzxSW<>ev!a#%wFNxb4ZEsUIM@Z@=EC2K`pL6Jk>ztdmk;cA3?;<;ZGI zn=xI-?E5}*%Deg?P&p)cA6vgJ$d#0?mYSVlp46+nj$l#;2B|8Dy$GDZb>OA z_L#-{J=rr(U{O0kik_9mI9hCHZah0a5BfYQZMt^9$5zhBuZBm|7D>fto*VGc^%KMJ z*(OgTpH{ZG&&;%Y>GPx#FwI`h+JwmZp0O){4r8z5*@E9UgK67my0P zdYqJ*V|gxjLirh0#ag4JY}y9zr5{vb;~S*Zb8#j&j=7ZZ9>!ZCvZhL;7d+RMOQ{w5 zxO6dOX#yS3=T1kw)m0f!LF+6jT0T$rNS#hohhkjS2ywkMrA)-nV%EzqJXYPHt5f-B zhZmG>ftJaw$IAW^kAr?qon#TNJxi*V5gLJN4@t}VdTe*s;ag-wwd-fda7LnKk%yXz z>1zvwVsZ%$j+s1F1T78ZBrWoS`2*G54M4M$rgZ7j1*ua^PwGbE-jS^>ZpqG@@ac!` zxEyp1Kf?^O@Fsqvu9rT}(r>{zQjzYKu42F?wV43T2aQH%%5+is)IfW@XLq1MaJ3yC zgo$SsYiaD$NZ_aN_Z%_bz-N$V3Mb*_IK9nPRXVgiJ=WVI!aRd^g0P zgZSl)+d~tOE32ma6gyZwX-UOz#2QG~yQ;3I3Gc)2bL6)|@qwOm?zyOyx=>md}Kf`ij_UWe6DQT%uLx#DB z-BDfneYi9b1FJAFTK_DWlvAD#L!Y<$Arp{#dbm*-%0P_z0B#>7Zyy}NnI{itewiax z!!%hCME)3O*5^qTITG*jP-rZQ*b$cT*=qwmarYO})~4gwv1}VbkQ(Yz{MR&o z)Sp8)^Z1w3a7wcPs4%p~OM4oo53$bG6T|j8D9%6N8B+FHn?;05x;d?QecM*J75#BZ z^>r17OqgyDX`tkjdI6D@)IqJX<@!i8J7;)|MqW^+5d5JOMO@cRfJ?FK2H{FmcvJnS zpp2$uGa?G2NBbU-kIv+D&zW4C8;pi2S;1uY=&r`;JzChDx{Qg~0L4O9ZKVrCPr2vz zoiNSf`UH~U^sP26dwth4Fry_Ldnsbf(V(+eJ-N&E83fLKEFx^OHD*{}b!?gX)_w-$ zhd|0?KwtE{3Xm$u>&7&MlDeGb5!#{Cn8+V z({zGp{lLP(#ZR3)wDGhH*m@&JzWaaP!5r@3Qy|0TqsWbVSPzN}@jQm!2wx`o*`E?5 zr8yWuuKg3pG|3y53>36rp(zW~Leu{o$zUZd_-+jQwTy}C#AcgJG90uRh)PnY@~dTx zAm;hVZ^Tq<=g84cFEEyUW-$i|nEkTH%rx-QBM*0q?=<>UIZ zq~ahvc$wLvtPmAW533DAAB`h%a5`<8kxixYtWFMgNMkES6QpBafmfjm{#!ZnzgaV8 zLXa`A{;06p*jKY&ooxpKYAkmRC*g&1MSC#jJvqhkpznD$rVFIfw)mH-jB6?ezYe9y zr<|l_egn#w(yWYt-GqPT$sHhTq)GNzN~C)ocM-$s{?Gc?aq~#u z3~s@Q4dHpGLX<{qC`n%RP5`+?efMC-^SSHuaC@+D_#2peAL^tkps6@*l^;;N z=3@9*E{dV*qiD^a0Pe$-IB~P^wA6Ld>mVP%G!pWV_t@YcKLq$U;5iLrJ#ieVFudzI ztna#bn%TvwS48ikn(vL=uOejn5LVV^wz|w&cLFS61Z{4#;)28eVrZnHM(f!kMLc8*Rc6%K4Rznl?Ucv}af}ehsQx;tzxJ7qsAp7v9o1hqvlFq8aq99h z>#uZH-hWws=+ewja&RlB7W!`IU}vD=Zf;qrU2Ax5C9l9@%2#ed=_dx-FJk7m)jPH) z58*MuB%VQHy-}P-U|toVrU@HOa)A^Laic>t(dTx*-ZOA1aduq8D<|0%xFQy!!@h(v zuTFGJ{+#DpYYe3@MS)Yv>euixWON_aYRHn@bvR1q$aK)h<7qsQuvQ$4U5!yuH5VOv zHA)f4*>IisZ1Z)}QEunbp_5$YEch|Eb$7o^TpzmXlwHQH;kDccfBXSnE!M{LvHt>5 CmgEWm diff --git a/testdata/v1.31.0/batch.v1.CronJob.yaml b/testdata/v1.31.0/batch.v1.CronJob.yaml deleted file mode 100644 index 8686f42531..0000000000 --- a/testdata/v1.31.0/batch.v1.CronJob.yaml +++ /dev/null @@ -1,1293 +0,0 @@ -apiVersion: batch/v1 -kind: CronJob -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - concurrencyPolicy: concurrencyPolicyValue - failedJobsHistoryLimit: 7 - jobTemplate: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - activeDeadlineSeconds: 3 - backoffLimit: 7 - backoffLimitPerIndex: 12 - completionMode: completionModeValue - completions: 2 - managedBy: managedByValue - manualSelector: true - maxFailedIndexes: 13 - parallelism: 1 - podFailurePolicy: - rules: - - action: actionValue - onExitCodes: - containerName: containerNameValue - operator: operatorValue - values: - - 3 - onPodConditions: - - status: statusValue - type: typeValue - podReplacementPolicy: podReplacementPolicyValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - successPolicy: - rules: - - succeededCount: 2 - succeededIndexes: succeededIndexesValue - suspend: true - template: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - activeDeadlineSeconds: 5 - affinity: - nodeAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - preference: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - nodeSelectorTerms: - - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - podAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - podAntiAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - automountServiceAccountToken: true - containers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - dnsConfig: - nameservers: - - nameserversValue - options: - - name: nameValue - value: valueValue - searches: - - searchesValue - dnsPolicy: dnsPolicyValue - enableServiceLinks: true - ephemeralContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - targetContainerName: targetContainerNameValue - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - hostAliases: - - hostnames: - - hostnamesValue - ip: ipValue - hostIPC: true - hostNetwork: true - hostPID: true - hostUsers: true - hostname: hostnameValue - imagePullSecrets: - - name: nameValue - initContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - nodeName: nodeNameValue - nodeSelector: - nodeSelectorKey: nodeSelectorValue - os: - name: nameValue - overhead: - overheadKey: "0" - preemptionPolicy: preemptionPolicyValue - priority: 25 - priorityClassName: priorityClassNameValue - readinessGates: - - conditionType: conditionTypeValue - resourceClaims: - - name: nameValue - resourceClaimName: resourceClaimNameValue - resourceClaimTemplateName: resourceClaimTemplateNameValue - restartPolicy: restartPolicyValue - runtimeClassName: runtimeClassNameValue - schedulerName: schedulerNameValue - schedulingGates: - - name: nameValue - securityContext: - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - fsGroup: 5 - fsGroupChangePolicy: fsGroupChangePolicyValue - runAsGroup: 6 - runAsNonRoot: true - runAsUser: 2 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - supplementalGroups: - - 4 - supplementalGroupsPolicy: supplementalGroupsPolicyValue - sysctls: - - name: nameValue - value: valueValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - serviceAccount: serviceAccountValue - serviceAccountName: serviceAccountNameValue - setHostnameAsFQDN: true - shareProcessNamespace: true - subdomain: subdomainValue - terminationGracePeriodSeconds: 4 - tolerations: - - effect: effectValue - key: keyValue - operator: operatorValue - tolerationSeconds: 5 - value: valueValue - topologySpreadConstraints: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - maxSkew: 1 - minDomains: 5 - nodeAffinityPolicy: nodeAffinityPolicyValue - nodeTaintsPolicy: nodeTaintsPolicyValue - topologyKey: topologyKeyValue - whenUnsatisfiable: whenUnsatisfiableValue - volumes: - - awsElasticBlockStore: - fsType: fsTypeValue - partition: 3 - readOnly: true - volumeID: volumeIDValue - azureDisk: - cachingMode: cachingModeValue - diskName: diskNameValue - diskURI: diskURIValue - fsType: fsTypeValue - kind: kindValue - readOnly: true - azureFile: - readOnly: true - secretName: secretNameValue - shareName: shareNameValue - cephfs: - monitors: - - monitorsValue - path: pathValue - readOnly: true - secretFile: secretFileValue - secretRef: - name: nameValue - user: userValue - cinder: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeID: volumeIDValue - configMap: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - csi: - driver: driverValue - fsType: fsTypeValue - nodePublishSecretRef: - name: nameValue - readOnly: true - volumeAttributes: - volumeAttributesKey: volumeAttributesValue - downwardAPI: - defaultMode: 2 - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - emptyDir: - medium: mediumValue - sizeLimit: "0" - ephemeral: - volumeClaimTemplate: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - accessModes: - - accessModesValue - dataSource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - dataSourceRef: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resources: - limits: - limitsKey: "0" - requests: - requestsKey: "0" - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - storageClassName: storageClassNameValue - volumeAttributesClassName: volumeAttributesClassNameValue - volumeMode: volumeModeValue - volumeName: volumeNameValue - fc: - fsType: fsTypeValue - lun: 2 - readOnly: true - targetWWNs: - - targetWWNsValue - wwids: - - wwidsValue - flexVolume: - driver: driverValue - fsType: fsTypeValue - options: - optionsKey: optionsValue - readOnly: true - secretRef: - name: nameValue - flocker: - datasetName: datasetNameValue - datasetUUID: datasetUUIDValue - gcePersistentDisk: - fsType: fsTypeValue - partition: 3 - pdName: pdNameValue - readOnly: true - gitRepo: - directory: directoryValue - repository: repositoryValue - revision: revisionValue - glusterfs: - endpoints: endpointsValue - path: pathValue - readOnly: true - hostPath: - path: pathValue - type: typeValue - image: - pullPolicy: pullPolicyValue - reference: referenceValue - iscsi: - chapAuthDiscovery: true - chapAuthSession: true - fsType: fsTypeValue - initiatorName: initiatorNameValue - iqn: iqnValue - iscsiInterface: iscsiInterfaceValue - lun: 3 - portals: - - portalsValue - readOnly: true - secretRef: - name: nameValue - targetPortal: targetPortalValue - name: nameValue - nfs: - path: pathValue - readOnly: true - server: serverValue - persistentVolumeClaim: - claimName: claimNameValue - readOnly: true - photonPersistentDisk: - fsType: fsTypeValue - pdID: pdIDValue - portworxVolume: - fsType: fsTypeValue - readOnly: true - volumeID: volumeIDValue - projected: - defaultMode: 2 - sources: - - clusterTrustBundle: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - name: nameValue - optional: true - path: pathValue - signerName: signerNameValue - configMap: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - downwardAPI: - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secret: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - serviceAccountToken: - audience: audienceValue - expirationSeconds: 2 - path: pathValue - quobyte: - group: groupValue - readOnly: true - registry: registryValue - tenant: tenantValue - user: userValue - volume: volumeValue - rbd: - fsType: fsTypeValue - image: imageValue - keyring: keyringValue - monitors: - - monitorsValue - pool: poolValue - readOnly: true - secretRef: - name: nameValue - user: userValue - scaleIO: - fsType: fsTypeValue - gateway: gatewayValue - protectionDomain: protectionDomainValue - readOnly: true - secretRef: - name: nameValue - sslEnabled: true - storageMode: storageModeValue - storagePool: storagePoolValue - system: systemValue - volumeName: volumeNameValue - secret: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - optional: true - secretName: secretNameValue - storageos: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeName: volumeNameValue - volumeNamespace: volumeNamespaceValue - vsphereVolume: - fsType: fsTypeValue - storagePolicyID: storagePolicyIDValue - storagePolicyName: storagePolicyNameValue - volumePath: volumePathValue - ttlSecondsAfterFinished: 8 - schedule: scheduleValue - startingDeadlineSeconds: 2 - successfulJobsHistoryLimit: 6 - suspend: true - timeZone: timeZoneValue -status: - active: - - apiVersion: apiVersionValue - fieldPath: fieldPathValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resourceVersion: resourceVersionValue - uid: uidValue - lastScheduleTime: "2004-01-01T01:01:01Z" - lastSuccessfulTime: "2005-01-01T01:01:01Z" diff --git a/testdata/v1.31.0/batch.v1.Job.json b/testdata/v1.31.0/batch.v1.Job.json deleted file mode 100644 index 974e0d9023..0000000000 --- a/testdata/v1.31.0/batch.v1.Job.json +++ /dev/null @@ -1,1841 +0,0 @@ -{ - "kind": "Job", - "apiVersion": "batch/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "parallelism": 1, - "completions": 2, - "activeDeadlineSeconds": 3, - "podFailurePolicy": { - "rules": [ - { - "action": "actionValue", - "onExitCodes": { - "containerName": "containerNameValue", - "operator": "operatorValue", - "values": [ - 3 - ] - }, - "onPodConditions": [ - { - "type": "typeValue", - "status": "statusValue" - } - ] - } - ] - }, - "successPolicy": { - "rules": [ - { - "succeededIndexes": "succeededIndexesValue", - "succeededCount": 2 - } - ] - }, - "backoffLimit": 7, - "backoffLimitPerIndex": 12, - "maxFailedIndexes": 13, - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "manualSelector": true, - "template": { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "volumes": [ - { - "name": "nameValue", - "hostPath": { - "path": "pathValue", - "type": "typeValue" - }, - "emptyDir": { - "medium": "mediumValue", - "sizeLimit": "0" - }, - "gcePersistentDisk": { - "pdName": "pdNameValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "awsElasticBlockStore": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "gitRepo": { - "repository": "repositoryValue", - "revision": "revisionValue", - "directory": "directoryValue" - }, - "secret": { - "secretName": "secretNameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "defaultMode": 3, - "optional": true - }, - "nfs": { - "server": "serverValue", - "path": "pathValue", - "readOnly": true - }, - "iscsi": { - "targetPortal": "targetPortalValue", - "iqn": "iqnValue", - "lun": 3, - "iscsiInterface": "iscsiInterfaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "portals": [ - "portalsValue" - ], - "chapAuthDiscovery": true, - "chapAuthSession": true, - "secretRef": { - "name": "nameValue" - }, - "initiatorName": "initiatorNameValue" - }, - "glusterfs": { - "endpoints": "endpointsValue", - "path": "pathValue", - "readOnly": true - }, - "persistentVolumeClaim": { - "claimName": "claimNameValue", - "readOnly": true - }, - "rbd": { - "monitors": [ - "monitorsValue" - ], - "image": "imageValue", - "fsType": "fsTypeValue", - "pool": "poolValue", - "user": "userValue", - "keyring": "keyringValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true - }, - "flexVolume": { - "driver": "driverValue", - "fsType": "fsTypeValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true, - "options": { - "optionsKey": "optionsValue" - } - }, - "cinder": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "name": "nameValue" - } - }, - "cephfs": { - "monitors": [ - "monitorsValue" - ], - "path": "pathValue", - "user": "userValue", - "secretFile": "secretFileValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true - }, - "flocker": { - "datasetName": "datasetNameValue", - "datasetUUID": "datasetUUIDValue" - }, - "downwardAPI": { - "items": [ - { - "path": "pathValue", - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "mode": 4 - } - ], - "defaultMode": 2 - }, - "fc": { - "targetWWNs": [ - "targetWWNsValue" - ], - "lun": 2, - "fsType": "fsTypeValue", - "readOnly": true, - "wwids": [ - "wwidsValue" - ] - }, - "azureFile": { - "secretName": "secretNameValue", - "shareName": "shareNameValue", - "readOnly": true - }, - "configMap": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "defaultMode": 3, - "optional": true - }, - "vsphereVolume": { - "volumePath": "volumePathValue", - "fsType": "fsTypeValue", - "storagePolicyName": "storagePolicyNameValue", - "storagePolicyID": "storagePolicyIDValue" - }, - "quobyte": { - "registry": "registryValue", - "volume": "volumeValue", - "readOnly": true, - "user": "userValue", - "group": "groupValue", - "tenant": "tenantValue" - }, - "azureDisk": { - "diskName": "diskNameValue", - "diskURI": "diskURIValue", - "cachingMode": "cachingModeValue", - "fsType": "fsTypeValue", - "readOnly": true, - "kind": "kindValue" - }, - "photonPersistentDisk": { - "pdID": "pdIDValue", - "fsType": "fsTypeValue" - }, - "projected": { - "sources": [ - { - "secret": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "optional": true - }, - "downwardAPI": { - "items": [ - { - "path": "pathValue", - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "mode": 4 - } - ] - }, - "configMap": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "optional": true - }, - "serviceAccountToken": { - "audience": "audienceValue", - "expirationSeconds": 2, - "path": "pathValue" - }, - "clusterTrustBundle": { - "name": "nameValue", - "signerName": "signerNameValue", - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "optional": true, - "path": "pathValue" - } - } - ], - "defaultMode": 2 - }, - "portworxVolume": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "scaleIO": { - "gateway": "gatewayValue", - "system": "systemValue", - "secretRef": { - "name": "nameValue" - }, - "sslEnabled": true, - "protectionDomain": "protectionDomainValue", - "storagePool": "storagePoolValue", - "storageMode": "storageModeValue", - "volumeName": "volumeNameValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "storageos": { - "volumeName": "volumeNameValue", - "volumeNamespace": "volumeNamespaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "name": "nameValue" - } - }, - "csi": { - "driver": "driverValue", - "readOnly": true, - "fsType": "fsTypeValue", - "volumeAttributes": { - "volumeAttributesKey": "volumeAttributesValue" - }, - "nodePublishSecretRef": { - "name": "nameValue" - } - }, - "ephemeral": { - "volumeClaimTemplate": { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "accessModes": [ - "accessModesValue" - ], - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - } - }, - "volumeName": "volumeNameValue", - "storageClassName": "storageClassNameValue", - "volumeMode": "volumeModeValue", - "dataSource": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue" - }, - "dataSourceRef": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue", - "namespace": "namespaceValue" - }, - "volumeAttributesClassName": "volumeAttributesClassNameValue" - } - } - }, - "image": { - "reference": "referenceValue", - "pullPolicy": "pullPolicyValue" - } - } - ], - "initContainers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "ephemeralContainers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true, - "targetContainerName": "targetContainerNameValue" - } - ], - "restartPolicy": "restartPolicyValue", - "terminationGracePeriodSeconds": 4, - "activeDeadlineSeconds": 5, - "dnsPolicy": "dnsPolicyValue", - "nodeSelector": { - "nodeSelectorKey": "nodeSelectorValue" - }, - "serviceAccountName": "serviceAccountNameValue", - "serviceAccount": "serviceAccountValue", - "automountServiceAccountToken": true, - "nodeName": "nodeNameValue", - "hostNetwork": true, - "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": true, - "securityContext": { - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 2, - "runAsGroup": 6, - "runAsNonRoot": true, - "supplementalGroups": [ - 4 - ], - "supplementalGroupsPolicy": "supplementalGroupsPolicyValue", - "fsGroup": 5, - "sysctls": [ - { - "name": "nameValue", - "value": "valueValue" - } - ], - "fsGroupChangePolicy": "fsGroupChangePolicyValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "imagePullSecrets": [ - { - "name": "nameValue" - } - ], - "hostname": "hostnameValue", - "subdomain": "subdomainValue", - "affinity": { - "nodeAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": { - "nodeSelectorTerms": [ - { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - ] - }, - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "preference": { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - } - ] - }, - "podAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": [ - { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - ], - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "podAffinityTerm": { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - } - ] - }, - "podAntiAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": [ - { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - ], - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "podAffinityTerm": { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - } - ] - } - }, - "schedulerName": "schedulerNameValue", - "tolerations": [ - { - "key": "keyValue", - "operator": "operatorValue", - "value": "valueValue", - "effect": "effectValue", - "tolerationSeconds": 5 - } - ], - "hostAliases": [ - { - "ip": "ipValue", - "hostnames": [ - "hostnamesValue" - ] - } - ], - "priorityClassName": "priorityClassNameValue", - "priority": 25, - "dnsConfig": { - "nameservers": [ - "nameserversValue" - ], - "searches": [ - "searchesValue" - ], - "options": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "readinessGates": [ - { - "conditionType": "conditionTypeValue" - } - ], - "runtimeClassName": "runtimeClassNameValue", - "enableServiceLinks": true, - "preemptionPolicy": "preemptionPolicyValue", - "overhead": { - "overheadKey": "0" - }, - "topologySpreadConstraints": [ - { - "maxSkew": 1, - "topologyKey": "topologyKeyValue", - "whenUnsatisfiable": "whenUnsatisfiableValue", - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "minDomains": 5, - "nodeAffinityPolicy": "nodeAffinityPolicyValue", - "nodeTaintsPolicy": "nodeTaintsPolicyValue", - "matchLabelKeys": [ - "matchLabelKeysValue" - ] - } - ], - "setHostnameAsFQDN": true, - "os": { - "name": "nameValue" - }, - "hostUsers": true, - "schedulingGates": [ - { - "name": "nameValue" - } - ], - "resourceClaims": [ - { - "name": "nameValue", - "resourceClaimName": "resourceClaimNameValue", - "resourceClaimTemplateName": "resourceClaimTemplateNameValue" - } - ] - } - }, - "ttlSecondsAfterFinished": 8, - "completionMode": "completionModeValue", - "suspend": true, - "podReplacementPolicy": "podReplacementPolicyValue", - "managedBy": "managedByValue" - }, - "status": { - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "lastProbeTime": "2003-01-01T01:01:01Z", - "lastTransitionTime": "2004-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ], - "startTime": "2002-01-01T01:01:01Z", - "completionTime": "2003-01-01T01:01:01Z", - "active": 4, - "succeeded": 5, - "failed": 6, - "terminating": 11, - "completedIndexes": "completedIndexesValue", - "failedIndexes": "failedIndexesValue", - "uncountedTerminatedPods": { - "succeeded": [ - "succeededValue" - ], - "failed": [ - "failedValue" - ] - }, - "ready": 9 - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/batch.v1.Job.pb b/testdata/v1.31.0/batch.v1.Job.pb deleted file mode 100644 index 6e53d582e10742637dfbab0fe64cd7b7ef3e1fac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11131 zcmeHNO^h5z72Y>%8=^C zokdv-OPO1DRdw}yRqyBfUe)De!2~IjY|9AE?u+Z6qm!#{i~iwN^2ZFxIYy7YYS?{7 z_jj1Xd?RFM2TfWj>J2=@ltc7l!0h&E?pzjMRI`04SIisX^9eNzOJ}%nrW9HfdfyiZ5C^DH)FAhDL~!i0+E=F2-DX ziR3PGNB&q#<<}Ews%69DsvwJS4E%DNJBH1#qJUza>(C;Fp5YiB=8Fbea=l3Zf%w|! zG&<^V|GocARwkBkGG<%BxlK>5Ol=RzeEl2sO3-g5D}9qopNmo)S4yYl*P{ug>9&>jN)P`k}r~ z_J@YwVPV7dL&KIbX8G&V!O^S_@W2fCiW4%wJqQz3Rf$EY6+H2=G~MIS%qt6e5n7Zx zJmdx{kO;hbgp`zAZ%7REhMQ z=ekmrYOar}iy=z|bUdFs9r0FEWjqe8QzUQsJXs@kI!zrq4^@p2*Gs}zA$}IKUV7oN z+YP!pm49kfp>zqfRBk=q>@RRz>RMGNS%j<4l8R-7MxffmpymAe*zT^u*T|Y`*UymA z=toN;<~0VUuPqR2x=v_t%o@o?(Be@1(;_dJ-&4t42Q*7*N*6Aim3vyr4DAc99og96 zmh8L%pM2PkOF`H0)BH3GZ{jzqzVvaHehW^MvUImZiy@cPW&$)HG@6EMb8|CMN}n2P zkJs!D)Cp?a;Xyd?%)FdkZ1ybZ=`K}C$9Malw6uK49K#94%NDGVqQ!&D$39fEzgJ0)mg!ur#umcK5z9yCg9ujXrnNcp&0c6+}=xm zvUdz;o;;j+D?=)VX|f=Q{4vg~&yxz`ao*#h*s&;LM_9&ZuOr+{+q6-~-CamqosMJ2 zvTX!GVyH{;Uz7Mzdk)>q<1Z)Sl%@etVFUG-b~H>MVK}QtN9}c3oWH{}q~xl`afDrJmb&!X%691tea{TXkCY`mSeSMjP|2NlVO_U14d zor5ZKRI)$|5iaLRIzhC)XJPN+Cywn~d)ftTy^$f``aiE=23PPYkm1rH4`#EGat(4_;xmC@Vxoy8UW{_(lC-9Gp&=W@J-|JgWzWJH+T_F`6J5 za}i#HF8DVy%q2*|S1gnwgN~?sf=h|*(6HQrc-Y!Ge18E%>{~&+5G}Gh3HtqCpfD8HY(pekt z@~)KqpKi;36KI5ct-h@wgIh3WLwL5P5T!928l4o%bfF0fCY@8 z&5c%EaM)c8jWqONL=jK4@tOv%o+52+I_fxwhfJZ$jOyE=?i-n{A{ir&G2$54U&r;= zKGPBPjO(xC`s;dnBK8qZT|Q#{mCnlhFUt>In)zV{Ze`R$-|Y-+4K>`&EGxBZ4bQFQ zbxTb7$}K4U=urDP%>1@`pYzy0JO(&`XOLKL6sHlGR|TkPz*>WxC3!>K=nzfxx$Up_ z3|&f`oz(EkNqPk?kA>*4FQLq9g>KQG^IWURPzqBNIF+n^6)!_ZcQ38FEXiGiLu8Ij z2Yo!A#sdj!#j)6x7!~17ik|~{`B8t;@LuM>-+6%dGSeHHRXo2og7_lpQUU9M(YcG% y42OUJmw&?H>4$Mqc{*O3;osNsHd-Q=oFd;g(5vL}%olS_DqmHZFXpuged51WY0VqJl{7L}rVO3n$$CJ84uCdDAsz1_LHN%nTP zyL)yVR0)ERsyqOSgoG-Alt@TX`heue@PHbr5>yn4zJPc_LE@pxL*WT{fp2H_&)mgH zjp~R+&+1YRA`}g~OGnY>UV`PSuT1IGgU)*@9#X{pHdSJ@bJ?DkpiTozx{Ci>hGPm7a23*5es`U+t@ot>Dw!AH9c9O|m{i^0v`pcJNiUMGNv#e9_WL*>D^;G(wz2 zbXS#kG3L_CB!8JZ^2b^xzn)4{s~8?v1zCU-;8)t*F>HPn1r+mKhZZUJ49Dm&Uo_CN z>qYBN#Mg$W(Qys;-~Z2eb!-tQW40As*z)Ag)c29xciw1JgMKUB39+dU)<`KZyUgm_ za%459O`EP`_I;l@=2p|Sxw$3&KL@q9*G4*d@;Z5UbpoonnQ{FrL3`^(?r}CX$Exx! z&Ek17ahXXK(ULR~S6Yl#*oc%Y?P(qsx0@sNJ$d#0?i~5$q#C$xPLgSo_l&SB6_yVZ zx1^L5dd%Yep6nSXu%I0$1kW6P)ISHmM}3#8&R&kcC! z`iWuqY=ftfPb*v8XJ*>H_(f6)nCY`H`|n}JtTN$e#v>W(8Yu+K-$){p(hrRdaxgUf z4hx&E9~!olae}`tgD#r&As(0kUv@&~x0BFaQx~xS^`a*}mZp0WRtw68z6veM9UgK6 z7my0Pa*ULjV|gxjLirh0#agALY}y9zr5{vb{hOrJb8#j&j=7ZZ9>!ZCvZhL;=RMbz zOR44ixO6dOv51c6bEhNT>Z*(

>87ET5-)q)w-)Lou#ugt%UsQi}1jnDx>Nk5xD5 z>Qw%j;RR(|pk;FFv9iC+Nr?fMxqoRMf* z!pvg^jmP2RHVD5s~B)eZ8|{nL8FnGGF_BDInW;O*&S#Q zTy2L3Vd9wuIlEBy4CtAbYNX@4eNS3iA!Lr>gyLlzmPyIt!R7R4v>3gvtuBjxt!f%( z7tQjVYsJ7w-7`!C89=!U2zEScr%-Yajz8Y?-h&?iDRvN%Z5nZyDFjL-unGgC_0N+-a>`R-=<`-TWCBu84L1ry8HiCI!tMR!7yCzW=E=jE zU*|~GFijQ&kw3LOB6dH>nc7$bo_Bz7NtW6ts+`WagwW&CEEZIg7q=vc} z|22&t_2s+cl+l!IL_|UKXx|6&@tK_NI+JU&gV8W0E12va-PJg?OADJ-mr;xjP%LD{R=P0s zlzVR93DYdD7m*C7Z?!4e>${$T87<-1ixFdv2A#R$$z85bBXI6x5n+R^GQ;|sW6RXH z`g0&Z0#YUe`l9DlfK)+VH>M$!^kpK~@{vY_uzDe4;c=;>c36>oKsQIp@ElZ`qdEb! z7~yiBrV~W#`{wsAeCEV~^`~9H)|)xj}_%g}Q z{-hu&&A|wA^`Ahd$b@0ZKtb~snzAr0H2p7-3|7*-@5ZoS%b2K6Y_`E9!$FIIs3diA zVx^1`#5@=IjhJfnEIHEY1;&!kEao5qvtRL;nFd~Z_~B0Roksn>b1GOv+e`<~!MaW| z0qB(NnuZ-YMALWM2{XZp+sBUiF2I`rKL$khFCurwP|L4~-_puJ=)sK`Zny=X zd|ZE)R2+l{uP|Gb6{5oFLA62Xqj5M6PNz&WvZ+*_l|zFa(%4GT1nHPp;Wg-je=|q^ zH*3aB2r>rN9~D*`durAzGwnb?jis*PB)m|rXcxx3E2lUX^gYkUbb(ab7XMO}aaG0O z*Ps;nl#|rVuR|GAnw1f-8}P3QatFvNX_8%*66tQoUBGa<_p|E8i2^3%0uZKUNrDf>U&mi-pc z+2Df0uhVZ;oAxa}Ql%%f_8_EiGbeIe7HJ==@AuNiF*icFlKJ9GiHo!J~NjVoC zI&N30XnKLQ+en23be!LR7iP%;F8MeuCxBd{zI!n3`P}t+xHVWf{0+>00CiFo&{UkZ z$`2@Bb1{4@7sXKZQMBey0QX^1oVZzdTIxFKb&wBX3JH10du;HJ9|8Ou@SKLRo;Z$F z7~ZuU)^}Yz&Fo^;E24K%&G&llod}segq5}F%`S7+oB#_LL7N+`xZtq27#eBl;fNxh zYU9-z+&x9w`c%|$0S}o%l^Hd5LftoV+a)qW93#Xrs=tovuYIN?>KWBvNA=f@>_qGn zoVt9%`YWB0_g|JCx-|3C9NfyOg}&Q4*dA!On_E(9*BYK%$t$p!@|9aq`tgDG3z+$B z^^Wa{19%K@2+ts~-Y8BZFs}+w(}eXVIZq0PxX~e+=yN+??-{t1I5V!{m6PlWTmcKw zVP8U-*NWYeKkK>HDnltuQQ%av`c=FP8Qq7q8nPsJ4UUjmG8Odkcp48RtYybyS7KCD z%|(Y^jZy@1)?Ft)+kAs`l-s#<=p3GT diff --git a/testdata/v1.31.0/batch.v1beta1.CronJob.yaml b/testdata/v1.31.0/batch.v1beta1.CronJob.yaml deleted file mode 100644 index df844e02e7..0000000000 --- a/testdata/v1.31.0/batch.v1beta1.CronJob.yaml +++ /dev/null @@ -1,1293 +0,0 @@ -apiVersion: batch/v1beta1 -kind: CronJob -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - concurrencyPolicy: concurrencyPolicyValue - failedJobsHistoryLimit: 7 - jobTemplate: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - activeDeadlineSeconds: 3 - backoffLimit: 7 - backoffLimitPerIndex: 12 - completionMode: completionModeValue - completions: 2 - managedBy: managedByValue - manualSelector: true - maxFailedIndexes: 13 - parallelism: 1 - podFailurePolicy: - rules: - - action: actionValue - onExitCodes: - containerName: containerNameValue - operator: operatorValue - values: - - 3 - onPodConditions: - - status: statusValue - type: typeValue - podReplacementPolicy: podReplacementPolicyValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - successPolicy: - rules: - - succeededCount: 2 - succeededIndexes: succeededIndexesValue - suspend: true - template: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - activeDeadlineSeconds: 5 - affinity: - nodeAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - preference: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - nodeSelectorTerms: - - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - podAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - podAntiAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - automountServiceAccountToken: true - containers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - dnsConfig: - nameservers: - - nameserversValue - options: - - name: nameValue - value: valueValue - searches: - - searchesValue - dnsPolicy: dnsPolicyValue - enableServiceLinks: true - ephemeralContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - targetContainerName: targetContainerNameValue - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - hostAliases: - - hostnames: - - hostnamesValue - ip: ipValue - hostIPC: true - hostNetwork: true - hostPID: true - hostUsers: true - hostname: hostnameValue - imagePullSecrets: - - name: nameValue - initContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - nodeName: nodeNameValue - nodeSelector: - nodeSelectorKey: nodeSelectorValue - os: - name: nameValue - overhead: - overheadKey: "0" - preemptionPolicy: preemptionPolicyValue - priority: 25 - priorityClassName: priorityClassNameValue - readinessGates: - - conditionType: conditionTypeValue - resourceClaims: - - name: nameValue - resourceClaimName: resourceClaimNameValue - resourceClaimTemplateName: resourceClaimTemplateNameValue - restartPolicy: restartPolicyValue - runtimeClassName: runtimeClassNameValue - schedulerName: schedulerNameValue - schedulingGates: - - name: nameValue - securityContext: - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - fsGroup: 5 - fsGroupChangePolicy: fsGroupChangePolicyValue - runAsGroup: 6 - runAsNonRoot: true - runAsUser: 2 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - supplementalGroups: - - 4 - supplementalGroupsPolicy: supplementalGroupsPolicyValue - sysctls: - - name: nameValue - value: valueValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - serviceAccount: serviceAccountValue - serviceAccountName: serviceAccountNameValue - setHostnameAsFQDN: true - shareProcessNamespace: true - subdomain: subdomainValue - terminationGracePeriodSeconds: 4 - tolerations: - - effect: effectValue - key: keyValue - operator: operatorValue - tolerationSeconds: 5 - value: valueValue - topologySpreadConstraints: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - maxSkew: 1 - minDomains: 5 - nodeAffinityPolicy: nodeAffinityPolicyValue - nodeTaintsPolicy: nodeTaintsPolicyValue - topologyKey: topologyKeyValue - whenUnsatisfiable: whenUnsatisfiableValue - volumes: - - awsElasticBlockStore: - fsType: fsTypeValue - partition: 3 - readOnly: true - volumeID: volumeIDValue - azureDisk: - cachingMode: cachingModeValue - diskName: diskNameValue - diskURI: diskURIValue - fsType: fsTypeValue - kind: kindValue - readOnly: true - azureFile: - readOnly: true - secretName: secretNameValue - shareName: shareNameValue - cephfs: - monitors: - - monitorsValue - path: pathValue - readOnly: true - secretFile: secretFileValue - secretRef: - name: nameValue - user: userValue - cinder: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeID: volumeIDValue - configMap: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - csi: - driver: driverValue - fsType: fsTypeValue - nodePublishSecretRef: - name: nameValue - readOnly: true - volumeAttributes: - volumeAttributesKey: volumeAttributesValue - downwardAPI: - defaultMode: 2 - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - emptyDir: - medium: mediumValue - sizeLimit: "0" - ephemeral: - volumeClaimTemplate: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - accessModes: - - accessModesValue - dataSource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - dataSourceRef: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resources: - limits: - limitsKey: "0" - requests: - requestsKey: "0" - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - storageClassName: storageClassNameValue - volumeAttributesClassName: volumeAttributesClassNameValue - volumeMode: volumeModeValue - volumeName: volumeNameValue - fc: - fsType: fsTypeValue - lun: 2 - readOnly: true - targetWWNs: - - targetWWNsValue - wwids: - - wwidsValue - flexVolume: - driver: driverValue - fsType: fsTypeValue - options: - optionsKey: optionsValue - readOnly: true - secretRef: - name: nameValue - flocker: - datasetName: datasetNameValue - datasetUUID: datasetUUIDValue - gcePersistentDisk: - fsType: fsTypeValue - partition: 3 - pdName: pdNameValue - readOnly: true - gitRepo: - directory: directoryValue - repository: repositoryValue - revision: revisionValue - glusterfs: - endpoints: endpointsValue - path: pathValue - readOnly: true - hostPath: - path: pathValue - type: typeValue - image: - pullPolicy: pullPolicyValue - reference: referenceValue - iscsi: - chapAuthDiscovery: true - chapAuthSession: true - fsType: fsTypeValue - initiatorName: initiatorNameValue - iqn: iqnValue - iscsiInterface: iscsiInterfaceValue - lun: 3 - portals: - - portalsValue - readOnly: true - secretRef: - name: nameValue - targetPortal: targetPortalValue - name: nameValue - nfs: - path: pathValue - readOnly: true - server: serverValue - persistentVolumeClaim: - claimName: claimNameValue - readOnly: true - photonPersistentDisk: - fsType: fsTypeValue - pdID: pdIDValue - portworxVolume: - fsType: fsTypeValue - readOnly: true - volumeID: volumeIDValue - projected: - defaultMode: 2 - sources: - - clusterTrustBundle: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - name: nameValue - optional: true - path: pathValue - signerName: signerNameValue - configMap: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - downwardAPI: - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secret: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - serviceAccountToken: - audience: audienceValue - expirationSeconds: 2 - path: pathValue - quobyte: - group: groupValue - readOnly: true - registry: registryValue - tenant: tenantValue - user: userValue - volume: volumeValue - rbd: - fsType: fsTypeValue - image: imageValue - keyring: keyringValue - monitors: - - monitorsValue - pool: poolValue - readOnly: true - secretRef: - name: nameValue - user: userValue - scaleIO: - fsType: fsTypeValue - gateway: gatewayValue - protectionDomain: protectionDomainValue - readOnly: true - secretRef: - name: nameValue - sslEnabled: true - storageMode: storageModeValue - storagePool: storagePoolValue - system: systemValue - volumeName: volumeNameValue - secret: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - optional: true - secretName: secretNameValue - storageos: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeName: volumeNameValue - volumeNamespace: volumeNamespaceValue - vsphereVolume: - fsType: fsTypeValue - storagePolicyID: storagePolicyIDValue - storagePolicyName: storagePolicyNameValue - volumePath: volumePathValue - ttlSecondsAfterFinished: 8 - schedule: scheduleValue - startingDeadlineSeconds: 2 - successfulJobsHistoryLimit: 6 - suspend: true - timeZone: timeZoneValue -status: - active: - - apiVersion: apiVersionValue - fieldPath: fieldPathValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resourceVersion: resourceVersionValue - uid: uidValue - lastScheduleTime: "2004-01-01T01:01:01Z" - lastSuccessfulTime: "2005-01-01T01:01:01Z" diff --git a/testdata/v1.31.0/certificates.k8s.io.v1.CertificateSigningRequest.json b/testdata/v1.31.0/certificates.k8s.io.v1.CertificateSigningRequest.json deleted file mode 100644 index 6c7f5be0a6..0000000000 --- a/testdata/v1.31.0/certificates.k8s.io.v1.CertificateSigningRequest.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "kind": "CertificateSigningRequest", - "apiVersion": "certificates.k8s.io/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "request": "AQ==", - "signerName": "signerNameValue", - "expirationSeconds": 8, - "usages": [ - "usagesValue" - ], - "username": "usernameValue", - "uid": "uidValue", - "groups": [ - "groupsValue" - ], - "extra": { - "extraKey": [ - "extraValue" - ] - } - }, - "status": { - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "reason": "reasonValue", - "message": "messageValue", - "lastUpdateTime": "2004-01-01T01:01:01Z", - "lastTransitionTime": "2005-01-01T01:01:01Z" - } - ], - "certificate": "Ag==" - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/certificates.k8s.io.v1.CertificateSigningRequest.pb b/testdata/v1.31.0/certificates.k8s.io.v1.CertificateSigningRequest.pb deleted file mode 100644 index 65b963f5c09964ed9471e674f3465415d748e5eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 598 zcmZ8eJx{|h5KT%YQl}pwLa1cSn4v%rQq&2R0SPLE05Pz+?KLt9POxJ{LHq#*Ms{X? z0{;N1Gb>_XV&ETu>(I1fdp_U2d-q-xa1Cvul|HbH3`rknz*|wkTO?V#+OSu5X7ytd zQbNNcxD>!M`>~APOQ=He1)SnofV~s~1ttj&rX{C7`Q<6@=PhoHLp>m^5XwO^iT&N%=8 diff --git a/testdata/v1.31.0/certificates.k8s.io.v1.CertificateSigningRequest.yaml b/testdata/v1.31.0/certificates.k8s.io.v1.CertificateSigningRequest.yaml deleted file mode 100644 index c66e9ad661..0000000000 --- a/testdata/v1.31.0/certificates.k8s.io.v1.CertificateSigningRequest.yaml +++ /dev/null @@ -1,56 +0,0 @@ -apiVersion: certificates.k8s.io/v1 -kind: CertificateSigningRequest -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - expirationSeconds: 8 - extra: - extraKey: - - extraValue - groups: - - groupsValue - request: AQ== - signerName: signerNameValue - uid: uidValue - usages: - - usagesValue - username: usernameValue -status: - certificate: Ag== - conditions: - - lastTransitionTime: "2005-01-01T01:01:01Z" - lastUpdateTime: "2004-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue diff --git a/testdata/v1.31.0/certificates.k8s.io.v1alpha1.ClusterTrustBundle.json b/testdata/v1.31.0/certificates.k8s.io.v1alpha1.ClusterTrustBundle.json deleted file mode 100644 index abd68b875d..0000000000 --- a/testdata/v1.31.0/certificates.k8s.io.v1alpha1.ClusterTrustBundle.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "kind": "ClusterTrustBundle", - "apiVersion": "certificates.k8s.io/v1alpha1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "signerName": "signerNameValue", - "trustBundle": "trustBundleValue" - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/certificates.k8s.io.v1alpha1.ClusterTrustBundle.pb b/testdata/v1.31.0/certificates.k8s.io.v1alpha1.ClusterTrustBundle.pb deleted file mode 100644 index 638772cc8a9737064d9e62e99067dbc8498f279d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 455 zcmZ8eJ5Iwu5Vey?#0xlPMS(0T)1?R`5|Tw}IzWgbqM#c)6SH`;wsvi#fanpopymkN z04aAs6x7@RHf!Z0s(m}3H*el#p|Z$;>?bHoHf9NwsCrqbdMrP@?*lJxp-<^4uT+V0 zDD@LnV#JX?H_2y%I07bk4ZK3SlcGSW`!5$E-<@Yw0ZCmFY%ApB3nntt(QQ|3WYAz& zqRK0&>rg6|3lj}DqIP@s`u*PWtTTV zChe{LP0iggaWW?A!Tw5ruvF9SK*8399ND2QJ7Xq*vj;8E@VwYD*_wcW6r~AJH!tS< zFXa3GX#%~&*X+0HSp!Xme58icqITw_MH-J!k*BJ7>4Y)$fOHf~wXaK4saLM9U#nK!OS(Kn!e7dmEVsC)hEfAbx;>k)4@O z;17^Gvmyp22L1pXho%+V@qHYhd(PPB8uHQl09Z;!WPnrPt+CHrB;L4c2aw{ny|y!N z9+Qv~8Xm!=0G`^9W%OP`CdC(UiX#E`N(dB~WI33XoLbi92_EDlZk0nc>JvIv8=fJ^ zP@&E$10D+|=YVk%Q&shsdxkN6`g|!jv^|NQzh5OfL}yK8MmT_o@598la;P=}7u7JO zaf(w(qS}pxx0*TMLgtvz{9|XX-!0U5b)1kzA)C6dv-*fo9FZF-Q1RUB0jgYJibG(k zVAtX#yMHF%`A_4@8$PB#OAW0f$sii?lSz_0(=DUY?Om_IMNl}QOdTLyx2u8!D~xsu zp{^COSR}a~&k|f}$se62GT=I8ICH3ikitr3x6Wmbz>1Kz4X2NGk(ti4*cJoK|1xkY fGQf;iEzd9TFIA#iiXM|JT+_j^=8=>Q2xQ diff --git a/testdata/v1.31.0/certificates.k8s.io.v1beta1.CertificateSigningRequest.yaml b/testdata/v1.31.0/certificates.k8s.io.v1beta1.CertificateSigningRequest.yaml deleted file mode 100644 index 9cb463c635..0000000000 --- a/testdata/v1.31.0/certificates.k8s.io.v1beta1.CertificateSigningRequest.yaml +++ /dev/null @@ -1,56 +0,0 @@ -apiVersion: certificates.k8s.io/v1beta1 -kind: CertificateSigningRequest -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - expirationSeconds: 8 - extra: - extraKey: - - extraValue - groups: - - groupsValue - request: AQ== - signerName: signerNameValue - uid: uidValue - usages: - - usagesValue - username: usernameValue -status: - certificate: Ag== - conditions: - - lastTransitionTime: "2005-01-01T01:01:01Z" - lastUpdateTime: "2004-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue diff --git a/testdata/v1.31.0/coordination.k8s.io.v1.Lease.json b/testdata/v1.31.0/coordination.k8s.io.v1.Lease.json deleted file mode 100644 index 72da0adfe5..0000000000 --- a/testdata/v1.31.0/coordination.k8s.io.v1.Lease.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "kind": "Lease", - "apiVersion": "coordination.k8s.io/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "holderIdentity": "holderIdentityValue", - "leaseDurationSeconds": 2, - "acquireTime": "2003-01-01T01:01:01.000003Z", - "renewTime": "2004-01-01T01:01:01.000004Z", - "leaseTransitions": 5, - "strategy": "strategyValue", - "preferredHolder": "preferredHolderValue" - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/coordination.k8s.io.v1.Lease.pb b/testdata/v1.31.0/coordination.k8s.io.v1.Lease.pb deleted file mode 100644 index 9a8f59bfd5af5fe4bd7bb6ddfb2a521b3c7d9b78..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 485 zcmZ8eyH3L}6ir_uF|-Y#0+gjvCe)!oC8VfhCmt1Is2JFs=C+u)c4Q|=1@QxX1a zh#x>m{RhOr+?@ejM=cfG@xAAsd+u@MO9R!>W}kBr5{47PSu^rwlknZ^eW%m~EWvpx zppQJV7#_hnrYShHt|0 zVcBB$&%d{D)2QN@EF0O&`8iP?s3<78Q3kcneJ((2Bh2s+gf2K09?$Nd+jsxVczD$8W{2g8imuEhcdAOwVmT1Jn%hG+Z&7j3Ee diff --git a/testdata/v1.31.0/coordination.k8s.io.v1.Lease.yaml b/testdata/v1.31.0/coordination.k8s.io.v1.Lease.yaml deleted file mode 100644 index b9093c67cd..0000000000 --- a/testdata/v1.31.0/coordination.k8s.io.v1.Lease.yaml +++ /dev/null @@ -1,42 +0,0 @@ -apiVersion: coordination.k8s.io/v1 -kind: Lease -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - acquireTime: "2003-01-01T01:01:01.000003Z" - holderIdentity: holderIdentityValue - leaseDurationSeconds: 2 - leaseTransitions: 5 - preferredHolder: preferredHolderValue - renewTime: "2004-01-01T01:01:01.000004Z" - strategy: strategyValue diff --git a/testdata/v1.31.0/coordination.k8s.io.v1beta1.Lease.json b/testdata/v1.31.0/coordination.k8s.io.v1beta1.Lease.json deleted file mode 100644 index ae9769c11f..0000000000 --- a/testdata/v1.31.0/coordination.k8s.io.v1beta1.Lease.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "kind": "Lease", - "apiVersion": "coordination.k8s.io/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "holderIdentity": "holderIdentityValue", - "leaseDurationSeconds": 2, - "acquireTime": "2003-01-01T01:01:01.000003Z", - "renewTime": "2004-01-01T01:01:01.000004Z", - "leaseTransitions": 5, - "strategy": "strategyValue", - "preferredHolder": "preferredHolderValue" - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/coordination.k8s.io.v1beta1.Lease.pb b/testdata/v1.31.0/coordination.k8s.io.v1beta1.Lease.pb deleted file mode 100644 index bce198d2cffd74e61259522262ae5b90167ffc9f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 490 zcmZ8e%SyvQ6ir{4jJA!jpu~j`Tu2wy7KG4cS3ZikC@$Phn%g>NIum9Rp^87?SLoUw zQ2YTA`VZp5b@wiGI-ynEow@hibI&~!`O-k!XtU3`2noXp;j9t)vO)OnRWpDDH=R-! zumtD1fZp@SVt52+n5N*Y4uOHd37pJJZe`Y$G45v+uPlKMx`ah~qHd-n)TmVxAbBbj z4}?@Zb=6<$nC9f+^QCATM+!Yo-xNAU=NrhPH~=b-VeBktP)`INs$j-=qK)ge{pYPY zm;1|I-BVD@-f!)cT4kBc{$Q99+qGE00EB?>K+EWH*YJ!VlUJ+I diff --git a/testdata/v1.31.0/coordination.k8s.io.v1beta1.Lease.yaml b/testdata/v1.31.0/coordination.k8s.io.v1beta1.Lease.yaml deleted file mode 100644 index a8405f66cc..0000000000 --- a/testdata/v1.31.0/coordination.k8s.io.v1beta1.Lease.yaml +++ /dev/null @@ -1,42 +0,0 @@ -apiVersion: coordination.k8s.io/v1beta1 -kind: Lease -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - acquireTime: "2003-01-01T01:01:01.000003Z" - holderIdentity: holderIdentityValue - leaseDurationSeconds: 2 - leaseTransitions: 5 - preferredHolder: preferredHolderValue - renewTime: "2004-01-01T01:01:01.000004Z" - strategy: strategyValue diff --git a/testdata/v1.31.0/core.v1.APIGroup.json b/testdata/v1.31.0/core.v1.APIGroup.json deleted file mode 100644 index d65e20c0fe..0000000000 --- a/testdata/v1.31.0/core.v1.APIGroup.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "kind": "APIGroup", - "apiVersion": "v1", - "name": "nameValue", - "versions": [ - { - "groupVersion": "groupVersionValue", - "version": "versionValue" - } - ], - "preferredVersion": { - "groupVersion": "groupVersionValue", - "version": "versionValue" - }, - "serverAddressByClientCIDRs": [ - { - "clientCIDR": "clientCIDRValue", - "serverAddress": "serverAddressValue" - } - ] -} \ No newline at end of file diff --git a/testdata/v1.31.0/core.v1.APIGroup.pb b/testdata/v1.31.0/core.v1.APIGroup.pb deleted file mode 100644 index dc4fc4b38158fd2789f954cba0ea353e34d9e169..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 146 zcmd0{C}!Z|<6;PAvi&*%oQ}arkJzatz YLPEuJTDF!7500DU!vH$=8 diff --git a/testdata/v1.31.0/core.v1.APIVersions.yaml b/testdata/v1.31.0/core.v1.APIVersions.yaml deleted file mode 100644 index 68a0670803..0000000000 --- a/testdata/v1.31.0/core.v1.APIVersions.yaml +++ /dev/null @@ -1,7 +0,0 @@ -apiVersion: v1 -kind: APIVersions -serverAddressByClientCIDRs: -- clientCIDR: clientCIDRValue - serverAddress: serverAddressValue -versions: -- versionsValue diff --git a/testdata/v1.31.0/core.v1.Binding.json b/testdata/v1.31.0/core.v1.Binding.json deleted file mode 100644 index 4741bab466..0000000000 --- a/testdata/v1.31.0/core.v1.Binding.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "kind": "Binding", - "apiVersion": "v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "target": { - "kind": "kindValue", - "namespace": "namespaceValue", - "name": "nameValue", - "uid": "uidValue", - "apiVersion": "apiVersionValue", - "resourceVersion": "resourceVersionValue", - "fieldPath": "fieldPathValue" - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/core.v1.Binding.pb b/testdata/v1.31.0/core.v1.Binding.pb deleted file mode 100644 index 5f44fe6deda6fb1360fe686020a64e94dba8dc8b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 486 zcmd0{C}!Z|PE%uC74OBXuB%=LhYi!(1VH#ICVr!-YaFg-OdwJ5P9)ej~l z#RrltE=Wv(JsT%}fEaj6{l3i}Op1fa+3<|M+3&tY;w9LH3oXjeq1HoFm7?Zeoauf3s z(^HGU0z!QG1t9;!oG*oLj1tffkIw#Q7GN*}8kU-qQXEoQ00|i@7A~ghS|@?x(j<6D hfCDuh$+1Fc!AYFsv4^b{AJ_!}i6t43fM8H!006^4scZlM diff --git a/testdata/v1.31.0/core.v1.Binding.yaml b/testdata/v1.31.0/core.v1.Binding.yaml deleted file mode 100644 index 8246c2ce3e..0000000000 --- a/testdata/v1.31.0/core.v1.Binding.yaml +++ /dev/null @@ -1,42 +0,0 @@ -apiVersion: v1 -kind: Binding -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -target: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resourceVersion: resourceVersionValue - uid: uidValue diff --git a/testdata/v1.31.0/core.v1.ComponentStatus.json b/testdata/v1.31.0/core.v1.ComponentStatus.json deleted file mode 100644 index dfef6b1387..0000000000 --- a/testdata/v1.31.0/core.v1.ComponentStatus.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "kind": "ComponentStatus", - "apiVersion": "v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "message": "messageValue", - "error": "errorValue" - } - ] -} \ No newline at end of file diff --git a/testdata/v1.31.0/core.v1.ComponentStatus.pb b/testdata/v1.31.0/core.v1.ComponentStatus.pb deleted file mode 100644 index 1c6f1fe2e928b5aaa01f99f3195948eab0c32562..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 441 zcmZ8d!AiqG5KYp8$+jkOQIH(>*pmi?;IZCRL{L0<+t_JYv)K*1iBQEK@CQ75_7nUA zq5mKrJo^W_-H=+my_tFQ=FKZI?Vugx-Rn){Vx`J@nzBK+qDdC~p97 z%|L*nHJo*=BwS8)MQ>UP+0?+Nr%V)fW8^n%Vo|!SK+8rM9w^PEu-$B9?E8zCueW~e z92@ld{cg}Xy52td+>9bx zv2`PRZsw|J$^_-?-WaqxPi~HeB^7iA$~JH)tL6Wl{p7z4F+Y4RetNN!8ZqD#eL1h% sWDfhtdw3kjy2)2b*icgx)Ex;Aw2j_gONJ&{ZI0WDAW%xSJ`#sGzZ{8~5&!@I diff --git a/testdata/v1.31.0/core.v1.ComponentStatus.yaml b/testdata/v1.31.0/core.v1.ComponentStatus.yaml deleted file mode 100644 index 1e75b6f620..0000000000 --- a/testdata/v1.31.0/core.v1.ComponentStatus.yaml +++ /dev/null @@ -1,39 +0,0 @@ -apiVersion: v1 -conditions: -- error: errorValue - message: messageValue - status: statusValue - type: typeValue -kind: ComponentStatus -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue diff --git a/testdata/v1.31.0/core.v1.ConfigMap.json b/testdata/v1.31.0/core.v1.ConfigMap.json deleted file mode 100644 index 4362bb277c..0000000000 --- a/testdata/v1.31.0/core.v1.ConfigMap.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "kind": "ConfigMap", - "apiVersion": "v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "immutable": true, - "data": { - "dataKey": "dataValue" - }, - "binaryData": { - "binaryDataKey": "Aw==" - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/core.v1.ConfigMap.pb b/testdata/v1.31.0/core.v1.ConfigMap.pb deleted file mode 100644 index 10e9c13b6c8c90e95cfe79baf764905daa29e3eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 427 zcmd0{C}!Z|=VB@|6ykKw&r8cp_f0Gi>SyM9z{JIwmzbLxmY7qTDkPYmnwMIXSd!`o z6O!Ts$rcwRCPS1c@fN4%r1@m#WrKBSag=7JfLTT&MXAO4rA0t>sYS(^`FUVb3w9?C zjeqX1#m@4aB=1&CZ*;Sd#6?kaYLA39Z5=De2IB^`6Y=ZKtsUN z0!VzYnk-W;&g{%Qh{aL}_bb6&qs5!0C r@Q?rpst6Z*N@7VO$fKMf2G}MkAuiq|plgaMU7&J|%nFQB3`z_Da@3Go diff --git a/testdata/v1.31.0/core.v1.ConfigMap.yaml b/testdata/v1.31.0/core.v1.ConfigMap.yaml deleted file mode 100644 index ecb3a3f7d5..0000000000 --- a/testdata/v1.31.0/core.v1.ConfigMap.yaml +++ /dev/null @@ -1,39 +0,0 @@ -apiVersion: v1 -binaryData: - binaryDataKey: Aw== -data: - dataKey: dataValue -immutable: true -kind: ConfigMap -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue diff --git a/testdata/v1.31.0/core.v1.CreateOptions.json b/testdata/v1.31.0/core.v1.CreateOptions.json deleted file mode 100644 index afcbef2f66..0000000000 --- a/testdata/v1.31.0/core.v1.CreateOptions.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "kind": "CreateOptions", - "apiVersion": "v1", - "dryRun": [ - "dryRunValue" - ], - "fieldManager": "fieldManagerValue", - "fieldValidation": "fieldValidationValue" -} \ No newline at end of file diff --git a/testdata/v1.31.0/core.v1.CreateOptions.pb b/testdata/v1.31.0/core.v1.CreateOptions.pb deleted file mode 100644 index 32fe071eac6a6912375d5a782e7ad89f3db1d4d5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 85 zcmd0{C}!Xi=3*){6ykL*N=+bGbt?Es&;C%+2iMP zC2~$o^z`*=qAs}F13o7)<@%IP;8qdZju?ZG2q80)nISeEmEN}I`Uv? zUrbctOuGWS>0Kw%dAxMOn)>E}2NzVCDpm|i+~JzLf79~2)$Py{>XK||7olJ%b+)`M k4unircZL6t6520)#mGZ}N@XT{l3O`AB1(132y(FV1D<96KmY&$ diff --git a/testdata/v1.31.0/core.v1.Endpoints.yaml b/testdata/v1.31.0/core.v1.Endpoints.yaml deleted file mode 100644 index e41c409995..0000000000 --- a/testdata/v1.31.0/core.v1.Endpoints.yaml +++ /dev/null @@ -1,64 +0,0 @@ -apiVersion: v1 -kind: Endpoints -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -subsets: -- addresses: - - hostname: hostnameValue - ip: ipValue - nodeName: nodeNameValue - targetRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resourceVersion: resourceVersionValue - uid: uidValue - notReadyAddresses: - - hostname: hostnameValue - ip: ipValue - nodeName: nodeNameValue - targetRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resourceVersion: resourceVersionValue - uid: uidValue - ports: - - appProtocol: appProtocolValue - name: nameValue - port: 2 - protocol: protocolValue diff --git a/testdata/v1.31.0/core.v1.Event.json b/testdata/v1.31.0/core.v1.Event.json deleted file mode 100644 index 84f731fc0a..0000000000 --- a/testdata/v1.31.0/core.v1.Event.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "kind": "Event", - "apiVersion": "v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "involvedObject": { - "kind": "kindValue", - "namespace": "namespaceValue", - "name": "nameValue", - "uid": "uidValue", - "apiVersion": "apiVersionValue", - "resourceVersion": "resourceVersionValue", - "fieldPath": "fieldPathValue" - }, - "reason": "reasonValue", - "message": "messageValue", - "source": { - "component": "componentValue", - "host": "hostValue" - }, - "firstTimestamp": "2006-01-01T01:01:01Z", - "lastTimestamp": "2007-01-01T01:01:01Z", - "count": 8, - "type": "typeValue", - "eventTime": "2010-01-01T01:01:01.000010Z", - "series": { - "count": 1, - "lastObservedTime": "2002-01-01T01:01:01.000002Z" - }, - "action": "actionValue", - "related": { - "kind": "kindValue", - "namespace": "namespaceValue", - "name": "nameValue", - "uid": "uidValue", - "apiVersion": "apiVersionValue", - "resourceVersion": "resourceVersionValue", - "fieldPath": "fieldPathValue" - }, - "reportingComponent": "reportingComponentValue", - "reportingInstance": "reportingInstanceValue" -} \ No newline at end of file diff --git a/testdata/v1.31.0/core.v1.Event.pb b/testdata/v1.31.0/core.v1.Event.pb deleted file mode 100644 index 2c034a995ee2fc1b3fbb997b71d0786722c41c7e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 766 zcmcgqJx{_w7%pG2y+WytQB${$OiE%xm<+~2G=v!Az;=bB6w0-^Ye~TP2b_#?b#T^S zpsSM!iHVbmgE%m|IO}l*MB?D&_Pn3>JkNWr92I~JqMZ#bvC~1=*MqDO{;bnCu<~_|#Ahm29KCFN9 zH>PYdY3SLrMAjp@2uas%3>~}22=YCr5fdca5JL+Qp3oH68|k0W*XP$5Ov79MGo}hz zwhTEndf4?sXYz3nJw7R@G%%-5a8s=rvf7-TeA8c?ck+jB8Hd#F@uxHN=Wrs?VBlHDcG(Cy%cp)Ii}`4eRalGs20c#f-QrAkVS uXe_+AAH>whv?;^t)U4)z2_-88c`os7Y;FG#)mxqxb}{uK9)DV0FoZ7>bq}rp diff --git a/testdata/v1.31.0/core.v1.Event.yaml b/testdata/v1.31.0/core.v1.Event.yaml deleted file mode 100644 index 79851ea30a..0000000000 --- a/testdata/v1.31.0/core.v1.Event.yaml +++ /dev/null @@ -1,66 +0,0 @@ -action: actionValue -apiVersion: v1 -count: 8 -eventTime: "2010-01-01T01:01:01.000010Z" -firstTimestamp: "2006-01-01T01:01:01Z" -involvedObject: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resourceVersion: resourceVersionValue - uid: uidValue -kind: Event -lastTimestamp: "2007-01-01T01:01:01Z" -message: messageValue -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -reason: reasonValue -related: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resourceVersion: resourceVersionValue - uid: uidValue -reportingComponent: reportingComponentValue -reportingInstance: reportingInstanceValue -series: - count: 1 - lastObservedTime: "2002-01-01T01:01:01.000002Z" -source: - component: componentValue - host: hostValue -type: typeValue diff --git a/testdata/v1.31.0/core.v1.GetOptions.json b/testdata/v1.31.0/core.v1.GetOptions.json deleted file mode 100644 index 1cb1f261ca..0000000000 --- a/testdata/v1.31.0/core.v1.GetOptions.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "kind": "GetOptions", - "apiVersion": "v1", - "resourceVersion": "resourceVersionValue" -} \ No newline at end of file diff --git a/testdata/v1.31.0/core.v1.GetOptions.pb b/testdata/v1.31.0/core.v1.GetOptions.pb deleted file mode 100644 index 5588495db353f54492c4d75d9dfe49be281a0b52..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 50 zcmd0{C}!Xi;9@E>6ykDEE%7fX$;{6y782tUDM~HQFD*(=4NEO528x9x=9H#NF(@$r E0Ao82*#H0l diff --git a/testdata/v1.31.0/core.v1.GetOptions.yaml b/testdata/v1.31.0/core.v1.GetOptions.yaml deleted file mode 100644 index e84bdbdc49..0000000000 --- a/testdata/v1.31.0/core.v1.GetOptions.yaml +++ /dev/null @@ -1,3 +0,0 @@ -apiVersion: v1 -kind: GetOptions -resourceVersion: resourceVersionValue diff --git a/testdata/v1.31.0/core.v1.LimitRange.json b/testdata/v1.31.0/core.v1.LimitRange.json deleted file mode 100644 index 36f5267df9..0000000000 --- a/testdata/v1.31.0/core.v1.LimitRange.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "kind": "LimitRange", - "apiVersion": "v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "limits": [ - { - "type": "typeValue", - "max": { - "maxKey": "0" - }, - "min": { - "minKey": "0" - }, - "default": { - "defaultKey": "0" - }, - "defaultRequest": { - "defaultRequestKey": "0" - }, - "maxLimitRequestRatio": { - "maxLimitRequestRatioKey": "0" - } - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/core.v1.LimitRange.pb b/testdata/v1.31.0/core.v1.LimitRange.pb deleted file mode 100644 index f0d7e9badb65600e2f91c8dccea23a7650a4868d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 506 zcmZ8e!A`MACzY9yuY23Gv8Li7~`@@HUl!tZcWn+Y-?D1OA0)KfymR z;S)@Z2haY2ZnqYRw>R(2ynQn}>q`S1sLT&t7_yM1BNS6|->UFl0b5{5m&h}6TT>F0 zU`l5t}K@QokuMWylp diff --git a/testdata/v1.31.0/core.v1.LimitRange.yaml b/testdata/v1.31.0/core.v1.LimitRange.yaml deleted file mode 100644 index 982a09ecb6..0000000000 --- a/testdata/v1.31.0/core.v1.LimitRange.yaml +++ /dev/null @@ -1,47 +0,0 @@ -apiVersion: v1 -kind: LimitRange -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - limits: - - default: - defaultKey: "0" - defaultRequest: - defaultRequestKey: "0" - max: - maxKey: "0" - maxLimitRequestRatio: - maxLimitRequestRatioKey: "0" - min: - minKey: "0" - type: typeValue diff --git a/testdata/v1.31.0/core.v1.ListOptions.json b/testdata/v1.31.0/core.v1.ListOptions.json deleted file mode 100644 index 066b25b45f..0000000000 --- a/testdata/v1.31.0/core.v1.ListOptions.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "kind": "ListOptions", - "apiVersion": "v1", - "labelSelector": "labelSelectorValue", - "fieldSelector": "fieldSelectorValue", - "watch": true, - "allowWatchBookmarks": true, - "resourceVersion": "resourceVersionValue", - "resourceVersionMatch": "resourceVersionMatchValue", - "timeoutSeconds": 5, - "limit": 7, - "continue": "continueValue", - "sendInitialEvents": true -} \ No newline at end of file diff --git a/testdata/v1.31.0/core.v1.ListOptions.pb b/testdata/v1.31.0/core.v1.ListOptions.pb deleted file mode 100644 index ea28506449565b01ab9c35e5e53805e78fffd328..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 143 zcmd0{C}!XiZ@)nK(?cj8UX&nwByD@_Fpc`yb^qAB%FEJ@A) MOGYqCF(@$r07Gyv1^@s6 diff --git a/testdata/v1.31.0/core.v1.ListOptions.yaml b/testdata/v1.31.0/core.v1.ListOptions.yaml deleted file mode 100644 index 7dac63dd34..0000000000 --- a/testdata/v1.31.0/core.v1.ListOptions.yaml +++ /dev/null @@ -1,12 +0,0 @@ -allowWatchBookmarks: true -apiVersion: v1 -continue: continueValue -fieldSelector: fieldSelectorValue -kind: ListOptions -labelSelector: labelSelectorValue -limit: 7 -resourceVersion: resourceVersionValue -resourceVersionMatch: resourceVersionMatchValue -sendInitialEvents: true -timeoutSeconds: 5 -watch: true diff --git a/testdata/v1.31.0/core.v1.Namespace.json b/testdata/v1.31.0/core.v1.Namespace.json deleted file mode 100644 index d04cbb9fe9..0000000000 --- a/testdata/v1.31.0/core.v1.Namespace.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "kind": "Namespace", - "apiVersion": "v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "finalizers": [ - "finalizersValue" - ] - }, - "status": { - "phase": "phaseValue", - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "lastTransitionTime": "2004-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/core.v1.Namespace.pb b/testdata/v1.31.0/core.v1.Namespace.pb deleted file mode 100644 index 665796b15032e0d1eacf1fb04d995c612f1f50c9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 479 zcmZ8eyH3ME5VVs>#GBw4ivqcH=?W|%Sx7V~2|^So1>HK?gu~9+y0ei2;s^K(YCeII z4k`bDD5&`ZIG^)Uy4l&i+1a@yk_Pmk@o?f=S2!b?)PL!luj-gPjnfyOE%UhJQO6eQjBOwLb8l&HrngA+l$wq_m*Q^DD?LG zsn9jt9)Xo&OsO2u-0jp*zleRXk@Kv;LW$_MvsLSv`%|zI#_Pr2#=pOI6Z9}=+eVJf z$P~Q^ACO7GF~T9hYGuUy#YXehjN+vIatL?#qCISd0G40YzsPqP%c9ayXr@zGOay(hHv}> D5wxYr diff --git a/testdata/v1.31.0/core.v1.Namespace.yaml b/testdata/v1.31.0/core.v1.Namespace.yaml deleted file mode 100644 index d262f3fae2..0000000000 --- a/testdata/v1.31.0/core.v1.Namespace.yaml +++ /dev/null @@ -1,45 +0,0 @@ -apiVersion: v1 -kind: Namespace -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - finalizers: - - finalizersValue -status: - conditions: - - lastTransitionTime: "2004-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue - phase: phaseValue diff --git a/testdata/v1.31.0/core.v1.Node.json b/testdata/v1.31.0/core.v1.Node.json deleted file mode 100644 index fcdcb34979..0000000000 --- a/testdata/v1.31.0/core.v1.Node.json +++ /dev/null @@ -1,173 +0,0 @@ -{ - "kind": "Node", - "apiVersion": "v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "podCIDR": "podCIDRValue", - "podCIDRs": [ - "podCIDRsValue" - ], - "providerID": "providerIDValue", - "unschedulable": true, - "taints": [ - { - "key": "keyValue", - "value": "valueValue", - "effect": "effectValue", - "timeAdded": "2004-01-01T01:01:01Z" - } - ], - "configSource": { - "configMap": { - "namespace": "namespaceValue", - "name": "nameValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "kubeletConfigKey": "kubeletConfigKeyValue" - } - }, - "externalID": "externalIDValue" - }, - "status": { - "capacity": { - "capacityKey": "0" - }, - "allocatable": { - "allocatableKey": "0" - }, - "phase": "phaseValue", - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "lastHeartbeatTime": "2003-01-01T01:01:01Z", - "lastTransitionTime": "2004-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ], - "addresses": [ - { - "type": "typeValue", - "address": "addressValue" - } - ], - "daemonEndpoints": { - "kubeletEndpoint": { - "Port": 1 - } - }, - "nodeInfo": { - "machineID": "machineIDValue", - "systemUUID": "systemUUIDValue", - "bootID": "bootIDValue", - "kernelVersion": "kernelVersionValue", - "osImage": "osImageValue", - "containerRuntimeVersion": "containerRuntimeVersionValue", - "kubeletVersion": "kubeletVersionValue", - "kubeProxyVersion": "kubeProxyVersionValue", - "operatingSystem": "operatingSystemValue", - "architecture": "architectureValue" - }, - "images": [ - { - "names": [ - "namesValue" - ], - "sizeBytes": 2 - } - ], - "volumesInUse": [ - "volumesInUseValue" - ], - "volumesAttached": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "config": { - "assigned": { - "configMap": { - "namespace": "namespaceValue", - "name": "nameValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "kubeletConfigKey": "kubeletConfigKeyValue" - } - }, - "active": { - "configMap": { - "namespace": "namespaceValue", - "name": "nameValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "kubeletConfigKey": "kubeletConfigKeyValue" - } - }, - "lastKnownGood": { - "configMap": { - "namespace": "namespaceValue", - "name": "nameValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "kubeletConfigKey": "kubeletConfigKeyValue" - } - }, - "error": "errorValue" - }, - "runtimeHandlers": [ - { - "name": "nameValue", - "features": { - "recursiveReadOnlyMounts": true, - "userNamespaces": true - } - } - ], - "features": { - "supplementalGroupsPolicy": true - } - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/core.v1.Node.pb b/testdata/v1.31.0/core.v1.Node.pb deleted file mode 100644 index 27820021d0bafbdfe6e38251edb4446a9655b863..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1302 zcmcIjO=}ZD7|x~}Wo9-sihsa^ z|G~3A!J{A|6#NO|!E^5(>YLe3vlOqr&Aju@Gtc`x&rJ7qi4anrKc|&r83DbikzZv} z6Kn==SeydwOhABQ298%Hx4Ask2@A6pZ&O1&e#OPq-tem_kL;?ur9jJ6VIL^XrLfig zhy7~x>eHVum3HX}SD&wc;Oc~&Jtno71rY0(u%Pv9X>SA`X)+tuYrY=5LXp#rfa_q%mWHO+eWKZOUXh|BAkQ7skUG zeqY^ev`bwCgE-QsizHK~S0Uwh@B3|?2DeIBQNKB)k;v#^a5&5!X~Crdg-iyAw&1oB zCFeW>l^32m{xedY!XoP@^CeE!T8Hr%LSr`tGN*J%?l?u)y12Kxc>i_D-=3!E1(*XV z#(aX7Sp42*PCHY}{rP}UQV$u1ft$tBxDDd$(rq*>j%COU3u0K6U6PzLormTHshO2d zw64+HG{;0e|9-zlJ=eqdbp=f40qQm|eHsn2jQl4>pazQ~lsZG|qWo2-_thcI84J(3 zfLu)4(hF^1HX5zut_M<@eB;q6S^;q}D}F=j!EE(rcPEs>Fa%V?R2Ytbr4aDmqg=XT zv2XP}QSx$8EFW#<=@OIImXe)m*kKC!8gw;P*_iz%A@FjprGE)G!$<%C diff --git a/testdata/v1.31.0/core.v1.Node.yaml b/testdata/v1.31.0/core.v1.Node.yaml deleted file mode 100644 index 1d10847dfe..0000000000 --- a/testdata/v1.31.0/core.v1.Node.yaml +++ /dev/null @@ -1,122 +0,0 @@ -apiVersion: v1 -kind: Node -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - configSource: - configMap: - kubeletConfigKey: kubeletConfigKeyValue - name: nameValue - namespace: namespaceValue - resourceVersion: resourceVersionValue - uid: uidValue - externalID: externalIDValue - podCIDR: podCIDRValue - podCIDRs: - - podCIDRsValue - providerID: providerIDValue - taints: - - effect: effectValue - key: keyValue - timeAdded: "2004-01-01T01:01:01Z" - value: valueValue - unschedulable: true -status: - addresses: - - address: addressValue - type: typeValue - allocatable: - allocatableKey: "0" - capacity: - capacityKey: "0" - conditions: - - lastHeartbeatTime: "2003-01-01T01:01:01Z" - lastTransitionTime: "2004-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue - config: - active: - configMap: - kubeletConfigKey: kubeletConfigKeyValue - name: nameValue - namespace: namespaceValue - resourceVersion: resourceVersionValue - uid: uidValue - assigned: - configMap: - kubeletConfigKey: kubeletConfigKeyValue - name: nameValue - namespace: namespaceValue - resourceVersion: resourceVersionValue - uid: uidValue - error: errorValue - lastKnownGood: - configMap: - kubeletConfigKey: kubeletConfigKeyValue - name: nameValue - namespace: namespaceValue - resourceVersion: resourceVersionValue - uid: uidValue - daemonEndpoints: - kubeletEndpoint: - Port: 1 - features: - supplementalGroupsPolicy: true - images: - - names: - - namesValue - sizeBytes: 2 - nodeInfo: - architecture: architectureValue - bootID: bootIDValue - containerRuntimeVersion: containerRuntimeVersionValue - kernelVersion: kernelVersionValue - kubeProxyVersion: kubeProxyVersionValue - kubeletVersion: kubeletVersionValue - machineID: machineIDValue - operatingSystem: operatingSystemValue - osImage: osImageValue - systemUUID: systemUUIDValue - phase: phaseValue - runtimeHandlers: - - features: - recursiveReadOnlyMounts: true - userNamespaces: true - name: nameValue - volumesAttached: - - devicePath: devicePathValue - name: nameValue - volumesInUse: - - volumesInUseValue diff --git a/testdata/v1.31.0/core.v1.NodeProxyOptions.json b/testdata/v1.31.0/core.v1.NodeProxyOptions.json deleted file mode 100644 index c644945314..0000000000 --- a/testdata/v1.31.0/core.v1.NodeProxyOptions.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "kind": "NodeProxyOptions", - "apiVersion": "v1", - "path": "pathValue" -} \ No newline at end of file diff --git a/testdata/v1.31.0/core.v1.NodeProxyOptions.pb b/testdata/v1.31.0/core.v1.NodeProxyOptions.pb deleted file mode 100644 index 25eb5071a4269b5a64fc4b73a9faa9f976ffe494..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 45 zcmd0{C}!Xi<6^f1uS>{gp7Zd-7KO)?4q#^FH-d&rd}S4q)r@ zCbmYD3nnBD<%1|#E+~Gs3%_kaBP0v@fCNj5cV;xCoJe{vGufSFSH#3KE>2s};QTHN z=lXdV8FTXvvjdk|qkZ_4JiNz5e3+KYqDk)rM;I)8D_U)d(IPLL(qk8iIvB2^H*ZI!;Y&*OKXF=wGkY!~%Ac{OgA#H?J%2|7i*d(J`UBJ-vh{BM`RnqS^pcDM84M)(7{TyoCJTIahZXY9j4DCxjsk1w#yiE`L02(oo z7iPC1vs#>6(4nCpM=X@4Rb2QTBInh7Gs#{|*R`Q3D8J0$C?D$0p}mMgCZiNR3~Zs0 z)4A<(WlkfGqCnf-#!|)8%U)|vSDb}2{ndZ1%)1Se-A4Vd5bQ|8XH+Ff) z)#0|Y%Y-M`Stuz#&)Dgf%Q!*(R;&*j2yUZsRnpJU6f@NxBdWuED1-MZXMmilki*F) zWCfshfsE4?)ZHPl zenx+x^-Hj0%KM0fetI_*QOYg5Z^5qdd0$G-rb|ino3+1bG-Rq8Or<0as!k58HY-KX zwut9ZA(8Tz4OFbd|&MDSu%(} zz`vlTrlO!lNcjm!h=Mvj1i7)V74{n^o0*#5RBXrT{K(t8EY>VPX2eR-oRV<@*f_zOO~}fi6+P26Gv)Mj zce;D*br2E+Aw@X=iUdL{Em9(_6a^4cj^VH(r)9-*2nP`2zy^uKY7c=EKL>bS)ze)w zwzEd@LZr;CyZ-Cd_ul(ny}EeZA0ru(TKfzgUv^CT!&k|lQY2#=UG`M^>%&1~iw z0Xy3-(h6a%?;1_nM9=%oYAtd5qUcdh_qZv(Dia>_ot}s7nCElH7Ny7c)zayAZ~WyK zdrD)A`1O;A@8H)mS(zpo%V;pm|03IhWqa?UmG4q$2~lF z_uu2Cu?h~xEYm-?;Y!I=_mI@rzfmjsy+$kvA=F==AwQo`rF>(8Op%Oh1RXhPCg_hr zDam%3$$MQ{GfrSmJ4Uju86ODEwvsug$7evFA^A1O>UG(|DcNhdMR|@CJ?1(-4;*hp zw#j>JjmO8N6-@52W?WtQ6e;?w>9HW0_aI4MWKr*A@zdks8mbz}`pjGFi&3eE+8Ws( z7+#wN%Z?WqmYhG$FG++H^@WsMNWjq#t0zQw4kFFx|P zL05BQg|Of5Q)$ zv}VH~pL9JZK%;}k_LS2_2*{n4VmU<$R_&L>%dbTz5bt+U-On=Ihu@^guTo@oXXiQt z^s65wauMY_!WY`|BP4J1OwR1c-6FgbjV-S$MvoSK-d43nTO#N>yGGFLEXAI+r2Gr< z(iapno|oRvk=9Ggu7&C*RR;}RUrA@7l==hA_hBCkolZ!kh6M>h7*UH|C7UoVkZMO>V3Gim%O=mL}xyFI`dYFl#FJR`F^O6k!O8@ zl#tNzE)T?sg%&&HG9J5xfJ(}=Va3&V6}08a$ac(IhVREftwgiN_M`eSR5O=+exK6WAT(TX<4;Gfigw;1dX-$bR1)@g# zHjoeZ|Iz2mxy||u3<{tl* zCuObYxCVN(en3zO>3!Jf^lPq^a&-!ca}Oh)HCAVa`6b(uuCM-MAm0O0AOq(`&!_~c zn1<3A8hE6(Qq-C7M8v0_^_v|Q#bxD#%E|}M<_H-cgDPW`(m-<|FXyp4LAJhUcJJIX z$M>x~=?iRJO_6W?pCy<=2|fX9SUrrfQ5S>P5Qt~c^oIPh@1MO15u_{+T9C_s2Qo?0 zhA9mN&6o&f0WF07CrLspX~uIR+OH*%s7@@l#$<$ph=DMEK9OE5pap533H3${RbL{9 z+g;z7_n66S48W|HUDk{ZFFm-qQUaZNJ^Q489P$8B*r`3;4 z@Ot1w+k6w?D!}&vnf<3Rc1BanUlY^P;(+NvK@1n%gri$XS}=Jr!fiOBs$$W^D7u*( z#T|IkmFg~hob2z1SF!9V#UhNXFhmc77O~ZPutlM^MOkQ2Dh1Q_mCn`YNzq1n@G`T+ zwL*ByvtKO`Q`8Pd#_43U8Dc74&*Fi>3emcr4+n_byaHc?4tO_GZF& zpi4880PH&aBTa4tsgq^0!(d^jK?OaB=5+T*{qs2a0LZQ~Nm>jAB%&J0uC!9%xQ^wt zHxSC=@OGKH9!MfJoIy@nnd)+Xi*ou`KtVoTd)7v$yeonIla1`xfrh-->{$vkxCx_Z z2$M5Ppfrkx`tEBK4J8+KbT}5&lvr>#;>l4og!iMPXebU5p7v@Gc!IbN9$K%1q;KkwFaOgf%Nl8#sk!_V7DCXo1 z58Y-&RksUkeh=^fCPc=~#B8Z!$GPkGVG;xKfOpy8j1K|+37Ds0tSi!yN`!YMh4;G- zW-~i@>lKD~;hpcb)GtG3x```mQ|ldOpSOLy!0=n#XhatdyUU?53_Tczh$mZ^=SS%& ztF2Ck73VO?6sVC=Z7bG&J#{BfMvP;`I7aucqx;t$(~hycbot6FDE-(#`8o9b*1&_n z_wt0e9efKUWI-3y`}izgA_u*QhTv1Vf4%(>pUNeV=E|56HvH&qU?qn)Y+)ut40L=< z8~E4Nre!r%Ss|`t_S2R)$=&yUif;;Q566|=QI{MJ)6el_bYO5w2zLD0TlaBw+G)(f z;VUAgu|Ckaj7>lI-FI=03V!|ek8j{twG=;Fik`}7|MMAV011zh8Ls9;9w=H*ZPN%$1^p*F7K|_?H_GAA*?3+EF&UWbFyb`f*0FaO>7)3D57V&W~S_( z?sj+2Zq^71jF2K9__2h9A_d8okSqg2^3gd&_!J_-!5ly+2QU(cCglc? z?>dXT0ZX1+cm3C^@4ffEdUfHjKS6RNv-&wYx$Kzq2d|PpW=PI9`s~YwHDGjim)XoS z0(N>>q?N*2-!gd0TBOi7Y@^FOQ9w(M8}5I&d~I|X9rtkW zy?;+uCTchsvrPZYx+^79-$628|3;(Y4_dJ#giwEdiu__qmGZSIGDC8%5%lDwxnMX3 zr6k{HCLi==%_M;Z?GVYkW_%zt-$~}2oty)GjuclNYtUyWj>%r5EvgHo>@nBzdEj{K zvQ5!rt2{m?tz>eKwd3mAXGqy+ZI1=Xyn9LZ0*iVli=Ukg*HG6;-e=zGP>f1FG*-#( z!0@^(Sa!U?u;lz%eo-Q1c2eKN{kG3f*a7o8L!4FBO)NmY;EK-j+>SsquL$%NXi;wS zfE&1hc)?2tNr~B}>u@`e-Ke^(CMBh|W$=F7p#m#kA;rFfBRLU3DB*nshgh{`rR< zH|Xk6-to~5B_hz0b?eb#e}P+auT^!B1-SGqshCD!_$nTTC1=k@xVsFmk`)!#Pm@vg zp(UX-%R}gE^Mtk?J1{t!o%kRqf-^EDp#o{47R>FaWUc_hQbOt6xzqAYE1A@}pzO%n z8aHL-Re0t>9GCo_;Uxxc7T&-<>VE0NkbWIblCo5{co!*^)Mk8y4}xadv3Pqu-jqI- zDvxA#6B-0}+vR>R)XcmbT^#l-=*cNnN!N1*u0&csV76fg;^!8eAVrh=7vjliA^bht zJR$0}O514n5SFJLGqU0;_~xOOSkv2pmf1BoG9`E5(8HnkE_??_p^NTg&4>&|-e30v zCau{h$fsS;3DD@Eu|4MW5dv~&l~_)Zg4Ks5@$wtd3B>zdQunhAci}e~@~aG)-`cs( z0sZR7iCjeamhgqP`~WE$1Cuj5a<>TYL}ROKiqWHGpLbQQ(M}R{oqZ!{_fE#1wW9nB z@zUoMGhUS5&XLwj%ddv&CRGOw+)zp9p_2InEDm8G3!P3$q=p3vK^Rp>b?5isT*?Mk zAk|v`6xkz(JQ@TZZw&$_{QvZ5q1Z{vMtuM`c9Ng$9MhSPpU%9UAr+(DX1*WlW8_(% zBNZfcyw3x1Vxh$jxs1myBA}8oZB%jfZ3S(0Iqv?v6|DeJFqP2F{GOQu&C;~N<#{5r;nUf zl3zWC%u1d?wY=td$cnqic*I7YSB9u$kZ2V{i|e$9#3kQz{NTj0n6UmPD6J_Gra;ta z-v;v0o}6yklWY6Z)-Yz3=4n!uF}#C`14h8(FfHDl|Q%zB90c*o*50WbW}_ zbz0VXj%%Pt8wLcmklu%lj=$zgDc5I^I1e!5S!GRTm@nCubbZYq1Nk115=osGJ*5() zauzBRXyB3BN>S&+6A_gnx235wWWPuh!Ue058f^2=q{LY1^ z4)0od+!xq-Jwv|rf0kedCHNSu;rxD#jrth8hCn=prZ?o5L;vhei6CV;Z9y*m9mq7v z8m2T9G-o1|1+)dq&d%tXup<3qB^nIDw7coA_l_v`ABxDgchWID%2Y>RP!X+ z-|hRxqQ^{TV*qBo?6P)jcej3Ke46b2`Jw z1g{4^vduREUI+L-AhZ80#?EMJ`D`~Biw`osw$REjH27g zQQU&ZU8!!vC&}(%cooZ@QY^yA3PbcTXc1ez0~-`-8A zTq}gPJiFBbF-2oS0_`IrwELhB{>rFZixN z30<0*1YlR;A6aq}NRup+Ed~o)4JzmvG^g7?>Ypdchd{QKNz!sCAQ9C_cBNGU$8{{H zyN*y6hquktbx#th;S6%p+DxDO8j=D<>z!F3o% zLztXV0;O>@G<09%Xeha;qoc8)ro@8V5l@bzA-o?QM?-Ol@T5mWHvn$I=QqDlS8mbt zJnM8Y6cW^Ne&=o2M|N=;kJHkSkW1Eg2WDK4J01_#(-(*Dz`nasClx_WMYdITpqP_4 zJan58RoyJC`8~irm=YN`6SJj`9p|n;fN2cK1Kwxp8Sex96EIK1SYMkfcqZM5^Y%hn#Fm!JiA|CBvo*$*B zthPQKR-C~kQ=mphjg46M)y%CT88ePC;~3w+j_+RwOh?u;zJDFxzpjSKapAtTN65N7 z;{7X~mG55`A9ytLqYPZns26=VGH@$Za67Z8++Ay!w~~)+(B&(yp!7qj@-yi9t<;0S z_ltzMJ$wr!WI1X(&uyKD<*&B7q{xJC*PeoIMQ$n!g&)>d_YtxQn4i4WC zDUJ11<0>}&@OR(EIcoUz+xOqZuX-hZv=lv*(f;Q%&H>ULB`;hrh%8XFp2hH3vNPq4P|S!R5%Oh?kInBCnZQ+hs2o(d0PcG6Qb*7Q*LYEeQo zevX7>(~6!=E)_32zM!iDKg}@$o-_ok%-D`diZb)Gni*>4;@Il^7!^+%Dm=91KECl5 VR^ie!s!7_!O%-62U{qky a;@~*@=6WBC0D}Re1-k=>2cr~&5(5Cio)SO+ diff --git a/testdata/v1.31.0/core.v1.PodLogOptions.yaml b/testdata/v1.31.0/core.v1.PodLogOptions.yaml deleted file mode 100644 index 4730b6c178..0000000000 --- a/testdata/v1.31.0/core.v1.PodLogOptions.yaml +++ /dev/null @@ -1,11 +0,0 @@ -apiVersion: v1 -container: containerValue -follow: true -insecureSkipTLSVerifyBackend: true -kind: PodLogOptions -limitBytes: 8 -previous: true -sinceSeconds: 4 -sinceTime: "2005-01-01T01:01:01Z" -tailLines: 7 -timestamps: true diff --git a/testdata/v1.31.0/core.v1.PodPortForwardOptions.json b/testdata/v1.31.0/core.v1.PodPortForwardOptions.json deleted file mode 100644 index e977fc0dfc..0000000000 --- a/testdata/v1.31.0/core.v1.PodPortForwardOptions.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "kind": "PodPortForwardOptions", - "apiVersion": "v1", - "ports": [ - 1 - ] -} \ No newline at end of file diff --git a/testdata/v1.31.0/core.v1.PodPortForwardOptions.pb b/testdata/v1.31.0/core.v1.PodPortForwardOptions.pb deleted file mode 100644 index 25eceb4a1b1dd107a1d556b4f122ac696a546b69..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 41 wcmd0{C}!Z2=3*){6cP={PYK8`Dsjs%Do-p*@h>RJ%+D(pV&Y(wVo+iL0PX4u_y7O^ diff --git a/testdata/v1.31.0/core.v1.PodPortForwardOptions.yaml b/testdata/v1.31.0/core.v1.PodPortForwardOptions.yaml deleted file mode 100644 index 326dfd43f1..0000000000 --- a/testdata/v1.31.0/core.v1.PodPortForwardOptions.yaml +++ /dev/null @@ -1,4 +0,0 @@ -apiVersion: v1 -kind: PodPortForwardOptions -ports: -- 1 diff --git a/testdata/v1.31.0/core.v1.PodProxyOptions.json b/testdata/v1.31.0/core.v1.PodProxyOptions.json deleted file mode 100644 index 5a195a6b5d..0000000000 --- a/testdata/v1.31.0/core.v1.PodProxyOptions.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "kind": "PodProxyOptions", - "apiVersion": "v1", - "path": "pathValue" -} \ No newline at end of file diff --git a/testdata/v1.31.0/core.v1.PodProxyOptions.pb b/testdata/v1.31.0/core.v1.PodProxyOptions.pb deleted file mode 100644 index c17c1cd559c3805327ec5b418887d1067f6e1e83..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 44 zcmd0{C}!Xiuc-7dD9OyvD;DDB;w(rk$p}l#DNU7PP+|Z84-X7c diff --git a/testdata/v1.31.0/core.v1.PodProxyOptions.yaml b/testdata/v1.31.0/core.v1.PodProxyOptions.yaml deleted file mode 100644 index bc3db8ce4d..0000000000 --- a/testdata/v1.31.0/core.v1.PodProxyOptions.yaml +++ /dev/null @@ -1,3 +0,0 @@ -apiVersion: v1 -kind: PodProxyOptions -path: pathValue diff --git a/testdata/v1.31.0/core.v1.PodStatusResult.after_roundtrip.pb b/testdata/v1.31.0/core.v1.PodStatusResult.after_roundtrip.pb deleted file mode 100644 index 13be65b0a5e2b899cac4303aa9e039adac3ddf51..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2153 zcmeHJzi-n(6tlb2t{qE#>mA+w;clt@TXHUdbbpb`bdknIv*n``Vl*JoEs5epMy z;6Gqs2L1sU7(qx~U|?aO3``8!8Q|sYBrfbM?e_fMyYGGX-ghq-*CxbY}E=lTc-eG*CPSkP{ zbCgv-9Z)Hv0P|=dnc&LXSZ?KV`!9aHT{5(Fv|dg=qSb+374k0WQ&--mW3v#O>O|j$ zGT~exPXtk6BlWFvwy#2d#CTlTTJX2$Y-$zavow)4y`cw{O~#4K_K={$d8+rJ=n+n~ zXrLTsS@_fY&*)o!!`OI-@B6>AhE_)~>N@iN*pEBYT!PHQM=e7}{dp%;Qx8f2{*cI| z$8E@mvomHvs(Gm57GnSUFhT4^m0BU7L?+Fw7jY62$*S~*W*z#r)2X$>P{^>|QJHn{ zg_GD#Eb`{y6%L^_$)-o|!&yipn1{ek06h5m-6v#c-OTAm#!4sKhmvcU`t!>(tWihn z^VjESHI0GbAz>)5_KoMJ*pVmJNZ|U80utHo{4Dd-f_-K^A zl_s;Gul25hfih+u3+F!5oOW?1qH^K0&ZHY%Ov0)OeN^(|`IS8p@vuX}p$b-Ydo`eg z2%pm~?NZ|03^14f8EdTDY0*;yj zdaGP`xCBwo8^T$v`FmA+w;c6iY}^HUbD*P>BL!$aaaZ%{BI&>$5ARh=q}X z|A2uR_y=G>VnRq=U|{J03``8!8Q|sYBo6E>?e_fMyYGGX-ghq2QPlSUD7ifXuTYNM5_(m8Wdd8qprL|M@BI=)rp=3 z6~ehdo(Q7Cdg@!{>|BMykny;%Ip=T9*wm}UXK5m9T0;w}TZ|Kz?IS^j^Hl3W$s?R> z(?B_lits1*pVBw~hOzJt-w%H0^o)&Q)OF;8kso)axdhoqk6XHodb3WbrXH37`~i_k zk8eRCoSrd?Qq4mZHxc{ShcRN$tJI4DB{FHIUBXF7BpatMd|BzldT}6RxZYNIHu%Cx z>?W3Y^X(Ompf%2=2k*mKNFx{v;06F5eEsedax-t{H9c#lldXm1I;Q^o@(gR(Xnj6> zj#g9e3my`N;#$8Ev;XfEFKCxe*ucDL|C%LbCwyA}FubjG&cOQ;)( zfwtDY20DtEc`Tgy3}e#8-H6J$&peZEbSVj|CiGCp^T${5M8v~32?r`z)2!8i_9J{u zd$dD|bC0_t71_zd$;l9Ex!`gd;5<~P%1dr#6bF>J3E)O~SIFxwk+JwY#|k)V3h1tK z;o%BIId2MQzT|raSZ02#tz%UjHB|(-vLyZ}s`>9P1y6l=>LV^JyEQ@l<ac}6GmKJlOfQ4Q!z;P@Hx#x=3b0-@4{QI~6 z`kQ0g*a|-V>ZAAYsYy0xNx?COmIZ90b)CcTI<1#{-IWZo(ERbxqf7vp_V^is#4jr^nZamoZR= zhwuMqTpL@&#h7D1+A-Yvk9Hsx9B1B-5ne zn^8wzZ6Qi;ic(VSGMo3hvS*yYf_|11eLFLIT5R=ic6NLYj5$)?@tj_lUAiD=4UecT zkZQnuFXWLI?8!0ZfbHC2i(ewukXZqX`uon1{5DHw_YXfi9-pDElVZq% zozz&BerW8FiO3AvENXf|WIA&HJbzvK;q16^l808vFS!v5TB$eJR3R3iUh>6c=^f`` zy{IVkHQ1uu!mn)I0nc=#E~l$Q=b)w&;`v#W zDJ9Qh)oU+3@w&lKmkKTp3)EME-aogIT=v(vBW10ri!8wP7l>w?kr}G?khW}WBzAWL zzC$)uyMCSw2Ps++p{bdgzCKT=<++i`F}P&x_b3h zd8b-#;9gL7WOtX_vhx;v_E9^ogdH>Jr;%BB8|SF<(kEH^9atq*>28@611_mghiE=% zG)>Rp)?Ox*F*(ql=;&9jqSsT$urEcSEOeZc(Z+Xsb`2XOYuruQEF7)Ys& zNqW~z0!1<03nM0@*|3pM`GFT<(7}{;!Rw+4NXfKJPl^j>m1N;KTXR;D?gNdVJtsQ%4W~z%uPTIns?u0Yr9I&qt%eNRj<)k2?CU^ z8Cjjx48Lf~yHGEEQ3>N^i77l8z4YQv>~7L^FuR2v-MUpauh@jW3Xsa>=DA3iwtpVghAN4L1r&24d8QaQ8U*hGj zmc_y__Qxc%zDP8L&AiJaabt1BjKF~vTGJU z>Yqb5^ZD1aa7z0DPyy|Ymk%|}7$PDoXNT=|@Hqc~=Sd}CEf!>MPOE;;ab(7jZu+yb z>gy^DDOp|@nSrDjMgftPyn|YG*9(w)v@h@kjl85Rq2&;0mE(x(St)QScDyjU)D#=m ze-6rMN<=6SJ^GJ;e0(OShtA~ssljNNp-N14kMC+M9n!*1sbZ880~CU+I7%0Wo=Vs2 zxlxwIjS}*s?5#E>djromF{7olYcVEK@t})u_)^RDX#~za;m_rRd182DQ9CD*BmIz`)T*J^C6yeOO5gftSF3z0X7q;;=8?n^-DtWHm4bA0%*~~=(=3Mrfl?7fp^Ju3ubQ<*BrEmjnGaEbyn+EA0fKEA{ zWje7#Gy|`dG7~JqeC(JX0K5tCQ$S?@W#rBnYWW*tTUs3mJ*bG`hC6WP08I-dFIKn* zr&U+1+Q_1<{#ES5v+h*);qzo7rB|8mDa9saR!Grf(jr8C00%Vc2eicjWwBzrp)$Gt z0;#$P4=yuDlojGy+JxF5wrI>G!D-2|Vw=j&vvP8QEP+Bj0PUYTu$0%|OGOgH6)Qldi`^P!yLOxW{%2h#;oX-Dj(UdDA5gWrI1 z>{D)9M!g9YOlfwXfZc+B<;guD>!e8zNfr)ED(Dpqr$@i)U&hJbfE+23q}5nKg4IZL zrE8Jrdyd!MLsJ%)cf`>3WS^KE$hFc;JnE_f7ta>RzPK00DU8AbTCv!S~H`|#Dr z7u1z1no(q}7E&Pr9p{hVhg0MPmwcR7Qa~=4Gj@JAU;2}(kFK#w|E%n^&4}lM13JH0{yKHdBj{yD+_??E~e;M%v zh2h=EVSU%bubCaJdd2iEuKC`~{VqnPk6>kedbh*e4L8IBM%d!!R#I>{S`3XebS9>V zOD+7H0=1`{wmubiT)~e_k;;r32chm;x&1O3A&wE^7}Z}#_17LV5cQ1eucP|wPW*9P zq;LHbe0BMR^;bG8|9@G2u$~ZgF Op8k=Um0k5QW9+|6YQ)+A diff --git a/testdata/v1.31.0/core.v1.PodTemplate.yaml b/testdata/v1.31.0/core.v1.PodTemplate.yaml deleted file mode 100644 index 0c42d574d6..0000000000 --- a/testdata/v1.31.0/core.v1.PodTemplate.yaml +++ /dev/null @@ -1,1205 +0,0 @@ -apiVersion: v1 -kind: PodTemplate -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -template: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - activeDeadlineSeconds: 5 - affinity: - nodeAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - preference: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - nodeSelectorTerms: - - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - podAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - podAntiAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - automountServiceAccountToken: true - containers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - dnsConfig: - nameservers: - - nameserversValue - options: - - name: nameValue - value: valueValue - searches: - - searchesValue - dnsPolicy: dnsPolicyValue - enableServiceLinks: true - ephemeralContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - targetContainerName: targetContainerNameValue - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - hostAliases: - - hostnames: - - hostnamesValue - ip: ipValue - hostIPC: true - hostNetwork: true - hostPID: true - hostUsers: true - hostname: hostnameValue - imagePullSecrets: - - name: nameValue - initContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - nodeName: nodeNameValue - nodeSelector: - nodeSelectorKey: nodeSelectorValue - os: - name: nameValue - overhead: - overheadKey: "0" - preemptionPolicy: preemptionPolicyValue - priority: 25 - priorityClassName: priorityClassNameValue - readinessGates: - - conditionType: conditionTypeValue - resourceClaims: - - name: nameValue - resourceClaimName: resourceClaimNameValue - resourceClaimTemplateName: resourceClaimTemplateNameValue - restartPolicy: restartPolicyValue - runtimeClassName: runtimeClassNameValue - schedulerName: schedulerNameValue - schedulingGates: - - name: nameValue - securityContext: - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - fsGroup: 5 - fsGroupChangePolicy: fsGroupChangePolicyValue - runAsGroup: 6 - runAsNonRoot: true - runAsUser: 2 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - supplementalGroups: - - 4 - supplementalGroupsPolicy: supplementalGroupsPolicyValue - sysctls: - - name: nameValue - value: valueValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - serviceAccount: serviceAccountValue - serviceAccountName: serviceAccountNameValue - setHostnameAsFQDN: true - shareProcessNamespace: true - subdomain: subdomainValue - terminationGracePeriodSeconds: 4 - tolerations: - - effect: effectValue - key: keyValue - operator: operatorValue - tolerationSeconds: 5 - value: valueValue - topologySpreadConstraints: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - maxSkew: 1 - minDomains: 5 - nodeAffinityPolicy: nodeAffinityPolicyValue - nodeTaintsPolicy: nodeTaintsPolicyValue - topologyKey: topologyKeyValue - whenUnsatisfiable: whenUnsatisfiableValue - volumes: - - awsElasticBlockStore: - fsType: fsTypeValue - partition: 3 - readOnly: true - volumeID: volumeIDValue - azureDisk: - cachingMode: cachingModeValue - diskName: diskNameValue - diskURI: diskURIValue - fsType: fsTypeValue - kind: kindValue - readOnly: true - azureFile: - readOnly: true - secretName: secretNameValue - shareName: shareNameValue - cephfs: - monitors: - - monitorsValue - path: pathValue - readOnly: true - secretFile: secretFileValue - secretRef: - name: nameValue - user: userValue - cinder: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeID: volumeIDValue - configMap: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - csi: - driver: driverValue - fsType: fsTypeValue - nodePublishSecretRef: - name: nameValue - readOnly: true - volumeAttributes: - volumeAttributesKey: volumeAttributesValue - downwardAPI: - defaultMode: 2 - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - emptyDir: - medium: mediumValue - sizeLimit: "0" - ephemeral: - volumeClaimTemplate: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - accessModes: - - accessModesValue - dataSource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - dataSourceRef: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resources: - limits: - limitsKey: "0" - requests: - requestsKey: "0" - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - storageClassName: storageClassNameValue - volumeAttributesClassName: volumeAttributesClassNameValue - volumeMode: volumeModeValue - volumeName: volumeNameValue - fc: - fsType: fsTypeValue - lun: 2 - readOnly: true - targetWWNs: - - targetWWNsValue - wwids: - - wwidsValue - flexVolume: - driver: driverValue - fsType: fsTypeValue - options: - optionsKey: optionsValue - readOnly: true - secretRef: - name: nameValue - flocker: - datasetName: datasetNameValue - datasetUUID: datasetUUIDValue - gcePersistentDisk: - fsType: fsTypeValue - partition: 3 - pdName: pdNameValue - readOnly: true - gitRepo: - directory: directoryValue - repository: repositoryValue - revision: revisionValue - glusterfs: - endpoints: endpointsValue - path: pathValue - readOnly: true - hostPath: - path: pathValue - type: typeValue - image: - pullPolicy: pullPolicyValue - reference: referenceValue - iscsi: - chapAuthDiscovery: true - chapAuthSession: true - fsType: fsTypeValue - initiatorName: initiatorNameValue - iqn: iqnValue - iscsiInterface: iscsiInterfaceValue - lun: 3 - portals: - - portalsValue - readOnly: true - secretRef: - name: nameValue - targetPortal: targetPortalValue - name: nameValue - nfs: - path: pathValue - readOnly: true - server: serverValue - persistentVolumeClaim: - claimName: claimNameValue - readOnly: true - photonPersistentDisk: - fsType: fsTypeValue - pdID: pdIDValue - portworxVolume: - fsType: fsTypeValue - readOnly: true - volumeID: volumeIDValue - projected: - defaultMode: 2 - sources: - - clusterTrustBundle: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - name: nameValue - optional: true - path: pathValue - signerName: signerNameValue - configMap: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - downwardAPI: - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secret: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - serviceAccountToken: - audience: audienceValue - expirationSeconds: 2 - path: pathValue - quobyte: - group: groupValue - readOnly: true - registry: registryValue - tenant: tenantValue - user: userValue - volume: volumeValue - rbd: - fsType: fsTypeValue - image: imageValue - keyring: keyringValue - monitors: - - monitorsValue - pool: poolValue - readOnly: true - secretRef: - name: nameValue - user: userValue - scaleIO: - fsType: fsTypeValue - gateway: gatewayValue - protectionDomain: protectionDomainValue - readOnly: true - secretRef: - name: nameValue - sslEnabled: true - storageMode: storageModeValue - storagePool: storagePoolValue - system: systemValue - volumeName: volumeNameValue - secret: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - optional: true - secretName: secretNameValue - storageos: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeName: volumeNameValue - volumeNamespace: volumeNamespaceValue - vsphereVolume: - fsType: fsTypeValue - storagePolicyID: storagePolicyIDValue - storagePolicyName: storagePolicyNameValue - volumePath: volumePathValue diff --git a/testdata/v1.31.0/core.v1.RangeAllocation.json b/testdata/v1.31.0/core.v1.RangeAllocation.json deleted file mode 100644 index da56554374..0000000000 --- a/testdata/v1.31.0/core.v1.RangeAllocation.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "kind": "RangeAllocation", - "apiVersion": "v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "range": "rangeValue", - "data": "Aw==" -} \ No newline at end of file diff --git a/testdata/v1.31.0/core.v1.RangeAllocation.pb b/testdata/v1.31.0/core.v1.RangeAllocation.pb deleted file mode 100644 index ebcaef091a9753a7f22481cbb20b579e52c97799..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 404 zcmd0{C}!Xi(JsT%}fEaj6{l3i}Op1fa+3i-v zod}i|K;nbdWSMetW@qL>ES5sJUkUCSE&jxUOk{@`Fj_Dc@uy|xCFW#S0UZc7r;9O( zizhcRFEKr}2rMAPmtO$#Kg{`3=*B1k{qX4Qe`Wy&BcNfaIVr^Q%*G!zO z(K;g1&aJzux~l%azW?$4)mP7lBjhy6?R<_-t~1}^mKkx+UGm&0@EnH)^u`AHQ;y_a zv%|h>I$cIjw3y2RGh(myn)Gtq8~UathZv=hIn7n>UKL+d$GhAXPYV+P3%zcD<5&>l zI->Rb@%s4qySM-H%Q0+eF7uyCYo386cVzZ)K zQ{KgxE3c6JRqo1#^=$t}x|?dn^trl`c{mS2rO92>;n#43VxF6@O^O}UHCrqY4Ycg} zvHZR5>x0u6D8s{d|1+wMEZ}6!vBQl$Uuvc{MsnZ!c3lg*+o>jmQh(nV2YQASP;tzP zydai1)}nY3%j)}$;Xyq6gZS+l`Nf0^_uCU>isXGWYRl8lN4>+OloUG5=G~6$86_~U zpCbj|PA!8Ln%UvcjLw2FOG-PQ)9tY3i}I_%5!HE837GGN9AU60$CLuL!&7_F%Qg=L zFl6__XGkSvR=}cc-Dxs@l_g(io1Ynt_fXSgoCP~QJS+WB-ytU=Gib4>;RTWD$o0qh z8`4x~Mvap^v_ih@Ml5Ld48E!gF%Pw(FFuwAbOF{2ib7w9ZOUC9aTDcBH@tF|l$mS$ z9(N=88CAEnPD$BvOx{U9&|vFpq}1_nCNHs6N_YpYRBTyScVy&!&y%85^Ia5O3|T0m zh63)k#9K|>;|18hL<)AmQyr<(>FUr~sOp4xe(Vl}BPu4(V%94!KlQl5P^Stm4GNU0 zK+pDVB!~S)?nqgy>Ll}U?M0&5W@Lsc9(paCn+fi&!#Bv5it881pdX`U;k_C?=<9QY zS{N8ij{ZMA2#VlLe0uE3^w3J`q#H2SH1o@;Nco8}s zg!x6UgAkCCX{nwP1FQ8~((Tui6G-J>#p%&X$Xlw_=&J;Cn2s4)?bS5J(Uf|2H|~TG-m$($#UKlMm#DcY-fHImA;R-~L{yiWc9LedSBe{O6 z-y5b`B?h}EchwgUiLg_u7{vsDLXZ_l=|b02?s#1{N~5?@L<*I@RVQU{;Q1y-v>r2C zha|C}`eBC<|yI z^gm6qw36nrER#^2jENe=VLMDR97GJng^Ua1D`oT`)>>>gVyg93a=O(C&82|Z%tZp` zyyi12b-Z-?@lFYJ8g$*oa1*ha4xWWAgJc_^la6PZPHYg3z-#uH3D#*oaLjiAZUFoc zFth(Ga%Xh4{7tbet@ODbRK#Gz9XNY{rbQ+%X1E7uR8y?j$fB+6DE8rbH>&&aNphk` zuTtGpicQF@kfO(=MTq(U4rtU5Xp0@nLfLjh<>T6mq~c+nrzLvTAs{x>vZBn0ULYfo~k^&^G#%1kp9sm4;5=P>~-knf2i*9|^I4zLEVF&^Yh4yLeBOdipysWJ7pMrVyne8|sCxAsfmH zb##ym>IxS;3O+exLs%ajvZ0hBeAL;{U4VV~{F4jnN)^p0ux1l4J4EU@ckDi#BFDMp zRY6Ml_L{irZHCL42)m1{gMzRP{-;<_`c5VM5%v z*?3#(x#>>?@53Y#@`!g>|B8#^ zGt2l!~#axXIOt7)?atx%W)CD^$&6D@*(T5bVmOF68}xv|I^Hm zb8si87W(eyV85^7er`#rUF&#nC4aKPkgxm&Wt{74-@wT4sDEb8j_J#IZH3o~qVD?z rwH#l-8gkT4vJm`b@!xMh!e15*yaqPI4%5zA`v^@Y^rh%xeC)?(~N diff --git a/testdata/v1.31.0/core.v1.ReplicationController.yaml b/testdata/v1.31.0/core.v1.ReplicationController.yaml deleted file mode 100644 index 8563deeb60..0000000000 --- a/testdata/v1.31.0/core.v1.ReplicationController.yaml +++ /dev/null @@ -1,1222 +0,0 @@ -apiVersion: v1 -kind: ReplicationController -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - minReadySeconds: 4 - replicas: 1 - selector: - selectorKey: selectorValue - template: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - activeDeadlineSeconds: 5 - affinity: - nodeAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - preference: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - nodeSelectorTerms: - - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - podAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - podAntiAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - automountServiceAccountToken: true - containers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - dnsConfig: - nameservers: - - nameserversValue - options: - - name: nameValue - value: valueValue - searches: - - searchesValue - dnsPolicy: dnsPolicyValue - enableServiceLinks: true - ephemeralContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - targetContainerName: targetContainerNameValue - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - hostAliases: - - hostnames: - - hostnamesValue - ip: ipValue - hostIPC: true - hostNetwork: true - hostPID: true - hostUsers: true - hostname: hostnameValue - imagePullSecrets: - - name: nameValue - initContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - nodeName: nodeNameValue - nodeSelector: - nodeSelectorKey: nodeSelectorValue - os: - name: nameValue - overhead: - overheadKey: "0" - preemptionPolicy: preemptionPolicyValue - priority: 25 - priorityClassName: priorityClassNameValue - readinessGates: - - conditionType: conditionTypeValue - resourceClaims: - - name: nameValue - resourceClaimName: resourceClaimNameValue - resourceClaimTemplateName: resourceClaimTemplateNameValue - restartPolicy: restartPolicyValue - runtimeClassName: runtimeClassNameValue - schedulerName: schedulerNameValue - schedulingGates: - - name: nameValue - securityContext: - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - fsGroup: 5 - fsGroupChangePolicy: fsGroupChangePolicyValue - runAsGroup: 6 - runAsNonRoot: true - runAsUser: 2 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - supplementalGroups: - - 4 - supplementalGroupsPolicy: supplementalGroupsPolicyValue - sysctls: - - name: nameValue - value: valueValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - serviceAccount: serviceAccountValue - serviceAccountName: serviceAccountNameValue - setHostnameAsFQDN: true - shareProcessNamespace: true - subdomain: subdomainValue - terminationGracePeriodSeconds: 4 - tolerations: - - effect: effectValue - key: keyValue - operator: operatorValue - tolerationSeconds: 5 - value: valueValue - topologySpreadConstraints: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - maxSkew: 1 - minDomains: 5 - nodeAffinityPolicy: nodeAffinityPolicyValue - nodeTaintsPolicy: nodeTaintsPolicyValue - topologyKey: topologyKeyValue - whenUnsatisfiable: whenUnsatisfiableValue - volumes: - - awsElasticBlockStore: - fsType: fsTypeValue - partition: 3 - readOnly: true - volumeID: volumeIDValue - azureDisk: - cachingMode: cachingModeValue - diskName: diskNameValue - diskURI: diskURIValue - fsType: fsTypeValue - kind: kindValue - readOnly: true - azureFile: - readOnly: true - secretName: secretNameValue - shareName: shareNameValue - cephfs: - monitors: - - monitorsValue - path: pathValue - readOnly: true - secretFile: secretFileValue - secretRef: - name: nameValue - user: userValue - cinder: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeID: volumeIDValue - configMap: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - csi: - driver: driverValue - fsType: fsTypeValue - nodePublishSecretRef: - name: nameValue - readOnly: true - volumeAttributes: - volumeAttributesKey: volumeAttributesValue - downwardAPI: - defaultMode: 2 - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - emptyDir: - medium: mediumValue - sizeLimit: "0" - ephemeral: - volumeClaimTemplate: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - accessModes: - - accessModesValue - dataSource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - dataSourceRef: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resources: - limits: - limitsKey: "0" - requests: - requestsKey: "0" - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - storageClassName: storageClassNameValue - volumeAttributesClassName: volumeAttributesClassNameValue - volumeMode: volumeModeValue - volumeName: volumeNameValue - fc: - fsType: fsTypeValue - lun: 2 - readOnly: true - targetWWNs: - - targetWWNsValue - wwids: - - wwidsValue - flexVolume: - driver: driverValue - fsType: fsTypeValue - options: - optionsKey: optionsValue - readOnly: true - secretRef: - name: nameValue - flocker: - datasetName: datasetNameValue - datasetUUID: datasetUUIDValue - gcePersistentDisk: - fsType: fsTypeValue - partition: 3 - pdName: pdNameValue - readOnly: true - gitRepo: - directory: directoryValue - repository: repositoryValue - revision: revisionValue - glusterfs: - endpoints: endpointsValue - path: pathValue - readOnly: true - hostPath: - path: pathValue - type: typeValue - image: - pullPolicy: pullPolicyValue - reference: referenceValue - iscsi: - chapAuthDiscovery: true - chapAuthSession: true - fsType: fsTypeValue - initiatorName: initiatorNameValue - iqn: iqnValue - iscsiInterface: iscsiInterfaceValue - lun: 3 - portals: - - portalsValue - readOnly: true - secretRef: - name: nameValue - targetPortal: targetPortalValue - name: nameValue - nfs: - path: pathValue - readOnly: true - server: serverValue - persistentVolumeClaim: - claimName: claimNameValue - readOnly: true - photonPersistentDisk: - fsType: fsTypeValue - pdID: pdIDValue - portworxVolume: - fsType: fsTypeValue - readOnly: true - volumeID: volumeIDValue - projected: - defaultMode: 2 - sources: - - clusterTrustBundle: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - name: nameValue - optional: true - path: pathValue - signerName: signerNameValue - configMap: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - downwardAPI: - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secret: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - serviceAccountToken: - audience: audienceValue - expirationSeconds: 2 - path: pathValue - quobyte: - group: groupValue - readOnly: true - registry: registryValue - tenant: tenantValue - user: userValue - volume: volumeValue - rbd: - fsType: fsTypeValue - image: imageValue - keyring: keyringValue - monitors: - - monitorsValue - pool: poolValue - readOnly: true - secretRef: - name: nameValue - user: userValue - scaleIO: - fsType: fsTypeValue - gateway: gatewayValue - protectionDomain: protectionDomainValue - readOnly: true - secretRef: - name: nameValue - sslEnabled: true - storageMode: storageModeValue - storagePool: storagePoolValue - system: systemValue - volumeName: volumeNameValue - secret: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - optional: true - secretName: secretNameValue - storageos: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeName: volumeNameValue - volumeNamespace: volumeNamespaceValue - vsphereVolume: - fsType: fsTypeValue - storagePolicyID: storagePolicyIDValue - storagePolicyName: storagePolicyNameValue - volumePath: volumePathValue -status: - availableReplicas: 5 - conditions: - - lastTransitionTime: "2003-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue - fullyLabeledReplicas: 2 - observedGeneration: 3 - readyReplicas: 4 - replicas: 1 diff --git a/testdata/v1.31.0/core.v1.ResourceQuota.json b/testdata/v1.31.0/core.v1.ResourceQuota.json deleted file mode 100644 index 7dca13cebc..0000000000 --- a/testdata/v1.31.0/core.v1.ResourceQuota.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "kind": "ResourceQuota", - "apiVersion": "v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "hard": { - "hardKey": "0" - }, - "scopes": [ - "scopesValue" - ], - "scopeSelector": { - "matchExpressions": [ - { - "scopeName": "scopeNameValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - }, - "status": { - "hard": { - "hardKey": "0" - }, - "used": { - "usedKey": "0" - } - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/core.v1.ResourceQuota.pb b/testdata/v1.31.0/core.v1.ResourceQuota.pb deleted file mode 100644 index 200c4e27d658cb353021f57449598c1b1cd530b5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 500 zcmZXQ%}&BV5P(}C0R|~`^?8OF zCfs}gnsnb6R*_;rcV@PzTP{?V+YY@nm|wpgmq5cv0;84z$-c&(!*%Y+cS=xm9_;`&CX~|=3Y{QMoMij2^u50rU+wU*_%6CuTfs0I$g6o` zF4HYR;r^lL$~4F?p^thB4wP@G7-Xv!!ETY74AmUt;O)a6I69FZoz#s+Y^=Q6ECVh3 QcmLrOK9!i`J1gh5cbAFKCk~Smw>DjX|6)9z!H*`24SM0gdd%fh$0p1^Vr#Vy?ff-i!g`> zASDeF6%;hkQNkM_oGCH(YcT0j2nKXGI6&2ii zdzHTDUB3VMb=@x=80*uoZ^nx8NgG!g830ocU>4MzX)6X1ZW7LgCfb15uwQuFoU_}w zI-%S(4p;o6oK2@iQd%T(6ZMd6jVLFKJ~sp{&IKCa`jl`o25B8ZQ>63xm-NGbVInib zkIUa>ztlBgz=rC0mO5p2*74elmwjJlgIozK>W4DEUlh5KN})v}m~GiEM^`=Mm%^4N zatt~aQrp0dD_x(YXxsDIdOu$UP zAG_IiwiKxOp6-r}Dpb#GNq>_GGVBvZc#`8BY!{tJcFBi?kHH}wZY;6$t2qgmu473I zei92t6W8Kt{S--~m4`0SCQbLql(JbN{u;INF0nqx$Ms< zq}tsSFXsUv(+e5+Mdkis1 pDHdmR2d|_LYRcSl=E#|C=NHteNg!(RQMz^W%al1px5-je`U7|;N^1ZB diff --git a/testdata/v1.31.0/core.v1.Service.yaml b/testdata/v1.31.0/core.v1.Service.yaml deleted file mode 100644 index cde3000626..0000000000 --- a/testdata/v1.31.0/core.v1.Service.yaml +++ /dev/null @@ -1,85 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - allocateLoadBalancerNodePorts: true - clusterIP: clusterIPValue - clusterIPs: - - clusterIPsValue - externalIPs: - - externalIPsValue - externalName: externalNameValue - externalTrafficPolicy: externalTrafficPolicyValue - healthCheckNodePort: 12 - internalTrafficPolicy: internalTrafficPolicyValue - ipFamilies: - - ipFamiliesValue - ipFamilyPolicy: ipFamilyPolicyValue - loadBalancerClass: loadBalancerClassValue - loadBalancerIP: loadBalancerIPValue - loadBalancerSourceRanges: - - loadBalancerSourceRangesValue - ports: - - appProtocol: appProtocolValue - name: nameValue - nodePort: 5 - port: 3 - protocol: protocolValue - targetPort: targetPortValue - publishNotReadyAddresses: true - selector: - selectorKey: selectorValue - sessionAffinity: sessionAffinityValue - sessionAffinityConfig: - clientIP: - timeoutSeconds: 1 - trafficDistribution: trafficDistributionValue - type: typeValue -status: - conditions: - - lastTransitionTime: "2004-01-01T01:01:01Z" - message: messageValue - observedGeneration: 3 - reason: reasonValue - status: statusValue - type: typeValue - loadBalancer: - ingress: - - hostname: hostnameValue - ip: ipValue - ipMode: ipModeValue - ports: - - error: errorValue - port: 1 - protocol: protocolValue diff --git a/testdata/v1.31.0/core.v1.ServiceAccount.json b/testdata/v1.31.0/core.v1.ServiceAccount.json deleted file mode 100644 index 540385147c..0000000000 --- a/testdata/v1.31.0/core.v1.ServiceAccount.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "kind": "ServiceAccount", - "apiVersion": "v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "secrets": [ - { - "kind": "kindValue", - "namespace": "namespaceValue", - "name": "nameValue", - "uid": "uidValue", - "apiVersion": "apiVersionValue", - "resourceVersion": "resourceVersionValue", - "fieldPath": "fieldPathValue" - } - ], - "imagePullSecrets": [ - { - "name": "nameValue" - } - ], - "automountServiceAccountToken": true -} \ No newline at end of file diff --git a/testdata/v1.31.0/core.v1.ServiceAccount.pb b/testdata/v1.31.0/core.v1.ServiceAccount.pb deleted file mode 100644 index 9e3d69cf63a1db399edbe95bfe26dd4f7102515d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 508 zcmd0{C}!Xi;bJN?6ygg`Eh@`QPIXL9&M(a?5xULH^?-?sGcPeWH7qfwG*w72JvA@2 zD6u5f4<;nV2a+u=NKA$(QQ|F5%}Mjg%*zJr(Bde~OaZfuM2b?2^Gl0>>Qak}GxPJn zq898<92{pCKHJSAz~BXBt^RNd$O_Vj79uunR$shnN>gsg3ak- zOyc6nP0UM7Pb~rq2=V0?fcy`0z7)DKN5`=mSlh(FU5@%l?sef3`z_Dt^2TJ diff --git a/testdata/v1.31.0/core.v1.ServiceAccount.yaml b/testdata/v1.31.0/core.v1.ServiceAccount.yaml deleted file mode 100644 index 876293f9d6..0000000000 --- a/testdata/v1.31.0/core.v1.ServiceAccount.yaml +++ /dev/null @@ -1,45 +0,0 @@ -apiVersion: v1 -automountServiceAccountToken: true -imagePullSecrets: -- name: nameValue -kind: ServiceAccount -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -secrets: -- apiVersion: apiVersionValue - fieldPath: fieldPathValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resourceVersion: resourceVersionValue - uid: uidValue diff --git a/testdata/v1.31.0/core.v1.ServiceProxyOptions.json b/testdata/v1.31.0/core.v1.ServiceProxyOptions.json deleted file mode 100644 index 358429d442..0000000000 --- a/testdata/v1.31.0/core.v1.ServiceProxyOptions.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "kind": "ServiceProxyOptions", - "apiVersion": "v1", - "path": "pathValue" -} \ No newline at end of file diff --git a/testdata/v1.31.0/core.v1.ServiceProxyOptions.pb b/testdata/v1.31.0/core.v1.ServiceProxyOptions.pb deleted file mode 100644 index 26b157fb32d980460c31d91beebb9034c78f60e5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 48 zcmd0{C}!Z2hJm3^crw(zU)zqJ+yg(eqw%hM{VoDW6I1p5F5Uq#9Q diff --git a/testdata/v1.31.0/core.v1.Status.yaml b/testdata/v1.31.0/core.v1.Status.yaml deleted file mode 100644 index 6fa05d9a6d..0000000000 --- a/testdata/v1.31.0/core.v1.Status.yaml +++ /dev/null @@ -1,21 +0,0 @@ -apiVersion: v1 -code: 6 -details: - causes: - - field: fieldValue - message: messageValue - reason: reasonValue - group: groupValue - kind: kindValue - name: nameValue - retryAfterSeconds: 5 - uid: uidValue -kind: Status -message: messageValue -metadata: - continue: continueValue - remainingItemCount: 4 - resourceVersion: resourceVersionValue - selfLink: selfLinkValue -reason: reasonValue -status: statusValue diff --git a/testdata/v1.31.0/core.v1.UpdateOptions.json b/testdata/v1.31.0/core.v1.UpdateOptions.json deleted file mode 100644 index 3cf8627071..0000000000 --- a/testdata/v1.31.0/core.v1.UpdateOptions.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "kind": "UpdateOptions", - "apiVersion": "v1", - "dryRun": [ - "dryRunValue" - ], - "fieldManager": "fieldManagerValue", - "fieldValidation": "fieldValidationValue" -} \ No newline at end of file diff --git a/testdata/v1.31.0/core.v1.UpdateOptions.pb b/testdata/v1.31.0/core.v1.UpdateOptions.pb deleted file mode 100644 index 0534a05eeec9997f0237bcd11c85b243b9d83424..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 85 zcmd0{C}!Xi=3*){6ygmnNJ%V7^)D#N%+D(pGUMV-DXI)A%?nG+DNPj;Ov_BoN%2k0 aOH5BK0t-orfQ5kUOrSoX9*8J|5(5BiA{&SR diff --git a/testdata/v1.31.0/core.v1.UpdateOptions.yaml b/testdata/v1.31.0/core.v1.UpdateOptions.yaml deleted file mode 100644 index 1d2d9943ef..0000000000 --- a/testdata/v1.31.0/core.v1.UpdateOptions.yaml +++ /dev/null @@ -1,6 +0,0 @@ -apiVersion: v1 -dryRun: -- dryRunValue -fieldManager: fieldManagerValue -fieldValidation: fieldValidationValue -kind: UpdateOptions diff --git a/testdata/v1.31.0/core.v1.WatchEvent.json b/testdata/v1.31.0/core.v1.WatchEvent.json deleted file mode 100644 index 64a45ac66b..0000000000 --- a/testdata/v1.31.0/core.v1.WatchEvent.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "type": "typeValue", - "object": { - "apiVersion": "example.com/v1", - "kind": "CustomType", - "spec": { - "replicas": 1 - }, - "status": { - "available": 1 - } - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/core.v1.WatchEvent.pb b/testdata/v1.31.0/core.v1.WatchEvent.pb deleted file mode 100644 index 6d7c78307c4ae78af710386b01ef615676382f6d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 129 zcmWm6u@1s83h7il-Lj diff --git a/testdata/v1.31.0/core.v1.WatchEvent.yaml b/testdata/v1.31.0/core.v1.WatchEvent.yaml deleted file mode 100644 index 6b24f40117..0000000000 --- a/testdata/v1.31.0/core.v1.WatchEvent.yaml +++ /dev/null @@ -1,8 +0,0 @@ -object: - apiVersion: example.com/v1 - kind: CustomType - spec: - replicas: 1 - status: - available: 1 -type: typeValue diff --git a/testdata/v1.31.0/discovery.k8s.io.v1.EndpointSlice.json b/testdata/v1.31.0/discovery.k8s.io.v1.EndpointSlice.json deleted file mode 100644 index 37944092e1..0000000000 --- a/testdata/v1.31.0/discovery.k8s.io.v1.EndpointSlice.json +++ /dev/null @@ -1,89 +0,0 @@ -{ - "kind": "EndpointSlice", - "apiVersion": "discovery.k8s.io/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "addressType": "addressTypeValue", - "endpoints": [ - { - "addresses": [ - "addressesValue" - ], - "conditions": { - "ready": true, - "serving": true, - "terminating": true - }, - "hostname": "hostnameValue", - "targetRef": { - "kind": "kindValue", - "namespace": "namespaceValue", - "name": "nameValue", - "uid": "uidValue", - "apiVersion": "apiVersionValue", - "resourceVersion": "resourceVersionValue", - "fieldPath": "fieldPathValue" - }, - "deprecatedTopology": { - "deprecatedTopologyKey": "deprecatedTopologyValue" - }, - "nodeName": "nodeNameValue", - "zone": "zoneValue", - "hints": { - "forZones": [ - { - "name": "nameValue" - } - ] - } - } - ], - "ports": [ - { - "name": "nameValue", - "protocol": "protocolValue", - "port": 3, - "appProtocol": "appProtocolValue" - } - ] -} \ No newline at end of file diff --git a/testdata/v1.31.0/discovery.k8s.io.v1.EndpointSlice.pb b/testdata/v1.31.0/discovery.k8s.io.v1.EndpointSlice.pb deleted file mode 100644 index 6ba3d21b3b52d72772ec2db86432150f53f47001..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 708 zcma)4K~4fO6rE92s1A&yMl#EZD;B6ECWIx48#RVR;=)~-exXv@rX5JocmcPbz_my4 z1}5CWxNzgf8))eSoTv+TzpwwlzW09nb?u-Xv_Ytj#R$~6+OO*>6}zMTz&qqb3d)l+ zMq>!>m(a@sDsVi2bIgVitapKf!U>$tps+Z-)e^^POXO)_mnW3>?L;L%q{LRWO$AyE zmFWYeso)l^uQc=d$-~=I&UcPX_4x5@susE^qXNSnVEP!w!D?FCiB5!ym~)Zf#E{r) zKXbM{R|lxjr#yW){MH}M)l^DY(yWj@x9+OaCFPjWYa`I|+_@dJHozQrL0KRu3OV&Z zlOO)1iHwKW$>*Z))C?IgqT6GcCez5Fg`3-^uZNv^5;oL#*Ek}?fEv7muk7YeJHL*Pjz5)lh#Ny>|nkELv7F@vPh%ySH#$oT@z?Dh-* diff --git a/testdata/v1.31.0/discovery.k8s.io.v1.EndpointSlice.yaml b/testdata/v1.31.0/discovery.k8s.io.v1.EndpointSlice.yaml deleted file mode 100644 index 4f396707cd..0000000000 --- a/testdata/v1.31.0/discovery.k8s.io.v1.EndpointSlice.yaml +++ /dev/null @@ -1,63 +0,0 @@ -addressType: addressTypeValue -apiVersion: discovery.k8s.io/v1 -endpoints: -- addresses: - - addressesValue - conditions: - ready: true - serving: true - terminating: true - deprecatedTopology: - deprecatedTopologyKey: deprecatedTopologyValue - hints: - forZones: - - name: nameValue - hostname: hostnameValue - nodeName: nodeNameValue - targetRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resourceVersion: resourceVersionValue - uid: uidValue - zone: zoneValue -kind: EndpointSlice -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -ports: -- appProtocol: appProtocolValue - name: nameValue - port: 3 - protocol: protocolValue diff --git a/testdata/v1.31.0/discovery.k8s.io.v1beta1.EndpointSlice.json b/testdata/v1.31.0/discovery.k8s.io.v1beta1.EndpointSlice.json deleted file mode 100644 index 50d012652c..0000000000 --- a/testdata/v1.31.0/discovery.k8s.io.v1beta1.EndpointSlice.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "kind": "EndpointSlice", - "apiVersion": "discovery.k8s.io/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "addressType": "addressTypeValue", - "endpoints": [ - { - "addresses": [ - "addressesValue" - ], - "conditions": { - "ready": true, - "serving": true, - "terminating": true - }, - "hostname": "hostnameValue", - "targetRef": { - "kind": "kindValue", - "namespace": "namespaceValue", - "name": "nameValue", - "uid": "uidValue", - "apiVersion": "apiVersionValue", - "resourceVersion": "resourceVersionValue", - "fieldPath": "fieldPathValue" - }, - "topology": { - "topologyKey": "topologyValue" - }, - "nodeName": "nodeNameValue", - "hints": { - "forZones": [ - { - "name": "nameValue" - } - ] - } - } - ], - "ports": [ - { - "name": "nameValue", - "protocol": "protocolValue", - "port": 3, - "appProtocol": "appProtocolValue" - } - ] -} \ No newline at end of file diff --git a/testdata/v1.31.0/discovery.k8s.io.v1beta1.EndpointSlice.pb b/testdata/v1.31.0/discovery.k8s.io.v1beta1.EndpointSlice.pb deleted file mode 100644 index 0dc5eec8758798fe14d9aa1287c3cdcadedc287f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 682 zcma)4Jx;?g7){y=T9>pTVu&K9Y;-8J5>nK$5(^+y3Bq2gvF4}P&#iXfoNlPIO~K+!j5B|(1GP#x8>cFI{(4o>0Nl8sMqr4DI74%%o`rfM^g#ns$|RI( zi7wlPT=(1_gIa=VcGz3<_j5L_CgiwCOGHU2zDlr!Wg9*a2kv+ z^{?oAn`?Zf;bZYrwvDb@hDao?<~(zzR{^E_hrTVQVeW)B_03d@qDX-PWp|yes%e|9 z=~-hYWNyD77i2jb#{W;|->=YXXs!b&$697=pn3 diff --git a/testdata/v1.31.0/discovery.k8s.io.v1beta1.EndpointSlice.yaml b/testdata/v1.31.0/discovery.k8s.io.v1beta1.EndpointSlice.yaml deleted file mode 100644 index c9d67a57fe..0000000000 --- a/testdata/v1.31.0/discovery.k8s.io.v1beta1.EndpointSlice.yaml +++ /dev/null @@ -1,62 +0,0 @@ -addressType: addressTypeValue -apiVersion: discovery.k8s.io/v1beta1 -endpoints: -- addresses: - - addressesValue - conditions: - ready: true - serving: true - terminating: true - hints: - forZones: - - name: nameValue - hostname: hostnameValue - nodeName: nodeNameValue - targetRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resourceVersion: resourceVersionValue - uid: uidValue - topology: - topologyKey: topologyValue -kind: EndpointSlice -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -ports: -- appProtocol: appProtocolValue - name: nameValue - port: 3 - protocol: protocolValue diff --git a/testdata/v1.31.0/events.k8s.io.v1.Event.json b/testdata/v1.31.0/events.k8s.io.v1.Event.json deleted file mode 100644 index e7bb7a4c06..0000000000 --- a/testdata/v1.31.0/events.k8s.io.v1.Event.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "kind": "Event", - "apiVersion": "events.k8s.io/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "eventTime": "2002-01-01T01:01:01.000002Z", - "series": { - "count": 1, - "lastObservedTime": "2002-01-01T01:01:01.000002Z" - }, - "reportingController": "reportingControllerValue", - "reportingInstance": "reportingInstanceValue", - "action": "actionValue", - "reason": "reasonValue", - "regarding": { - "kind": "kindValue", - "namespace": "namespaceValue", - "name": "nameValue", - "uid": "uidValue", - "apiVersion": "apiVersionValue", - "resourceVersion": "resourceVersionValue", - "fieldPath": "fieldPathValue" - }, - "related": { - "kind": "kindValue", - "namespace": "namespaceValue", - "name": "nameValue", - "uid": "uidValue", - "apiVersion": "apiVersionValue", - "resourceVersion": "resourceVersionValue", - "fieldPath": "fieldPathValue" - }, - "note": "noteValue", - "type": "typeValue", - "deprecatedSource": { - "component": "componentValue", - "host": "hostValue" - }, - "deprecatedFirstTimestamp": "2013-01-01T01:01:01Z", - "deprecatedLastTimestamp": "2014-01-01T01:01:01Z", - "deprecatedCount": 15 -} \ No newline at end of file diff --git a/testdata/v1.31.0/events.k8s.io.v1.Event.pb b/testdata/v1.31.0/events.k8s.io.v1.Event.pb deleted file mode 100644 index 9ea014ffe5324cd2e90e2c2debcd535578701af2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 778 zcmchVyGjE=6oz+=!QF{&)Vqp{sA{KVD$z(IhW@ee0h!?CC!A|V0 zeFR%8A)s%dA{JJ@flg*~BUo73{d3NlGynO{H1k{o3&2K)hzP#a%=0Bomk(E+&x52jm?zyL87a4Z^i=kMEh z$J=;vhPTdl!q#%K849a>?>LId6ehvM=~>a{ZGS*QK{bue^}}nzeoDJDhVBfHUWTEF zGJ#33PKjVN40}GZ^MlML;R2E#{agxG2IdMWh9K{OE(Rk=oUx_-4bkr#ELdvJG8A=% zsPtbC?V9ov#Apvp(WmS$0;@t>5hd~i$2&9Yl*h6mxAS>%p0qV4)$`SjR7Yu7^Ryol CG!s$) diff --git a/testdata/v1.31.0/events.k8s.io.v1.Event.yaml b/testdata/v1.31.0/events.k8s.io.v1.Event.yaml deleted file mode 100644 index a3e4cf5617..0000000000 --- a/testdata/v1.31.0/events.k8s.io.v1.Event.yaml +++ /dev/null @@ -1,66 +0,0 @@ -action: actionValue -apiVersion: events.k8s.io/v1 -deprecatedCount: 15 -deprecatedFirstTimestamp: "2013-01-01T01:01:01Z" -deprecatedLastTimestamp: "2014-01-01T01:01:01Z" -deprecatedSource: - component: componentValue - host: hostValue -eventTime: "2002-01-01T01:01:01.000002Z" -kind: Event -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -note: noteValue -reason: reasonValue -regarding: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resourceVersion: resourceVersionValue - uid: uidValue -related: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resourceVersion: resourceVersionValue - uid: uidValue -reportingController: reportingControllerValue -reportingInstance: reportingInstanceValue -series: - count: 1 - lastObservedTime: "2002-01-01T01:01:01.000002Z" -type: typeValue diff --git a/testdata/v1.31.0/events.k8s.io.v1beta1.Event.json b/testdata/v1.31.0/events.k8s.io.v1beta1.Event.json deleted file mode 100644 index a4659adf84..0000000000 --- a/testdata/v1.31.0/events.k8s.io.v1beta1.Event.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "kind": "Event", - "apiVersion": "events.k8s.io/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "eventTime": "2002-01-01T01:01:01.000002Z", - "series": { - "count": 1, - "lastObservedTime": "2002-01-01T01:01:01.000002Z" - }, - "reportingController": "reportingControllerValue", - "reportingInstance": "reportingInstanceValue", - "action": "actionValue", - "reason": "reasonValue", - "regarding": { - "kind": "kindValue", - "namespace": "namespaceValue", - "name": "nameValue", - "uid": "uidValue", - "apiVersion": "apiVersionValue", - "resourceVersion": "resourceVersionValue", - "fieldPath": "fieldPathValue" - }, - "related": { - "kind": "kindValue", - "namespace": "namespaceValue", - "name": "nameValue", - "uid": "uidValue", - "apiVersion": "apiVersionValue", - "resourceVersion": "resourceVersionValue", - "fieldPath": "fieldPathValue" - }, - "note": "noteValue", - "type": "typeValue", - "deprecatedSource": { - "component": "componentValue", - "host": "hostValue" - }, - "deprecatedFirstTimestamp": "2013-01-01T01:01:01Z", - "deprecatedLastTimestamp": "2014-01-01T01:01:01Z", - "deprecatedCount": 15 -} \ No newline at end of file diff --git a/testdata/v1.31.0/events.k8s.io.v1beta1.Event.pb b/testdata/v1.31.0/events.k8s.io.v1beta1.Event.pb deleted file mode 100644 index fa18d6ad275275e6569be3d142ca5f73ebdaaba5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 783 zcmchVJxc>Y5QZ;m@NQ!+=b<7eSX`MRYCs4nBNl!jB4S~;7bnS@%kHte34UO$2zFv` z?N6|^5(4@URK&u{f1sPaBnGjtvU_)CcJ`fTwq6hhnnjb)0xCtWUJyCL=2{B@NW9=C zmpftiHHn^vkVSC=c5v7Pcf1M|IF_){3wd@YDEeu(D2QUEj!>O|qv|eu9Hw zO|I&I3&N<57Dh{^*}i_e9dV3RrEWg%mD)tR)5r>O0HIieLpK#meIxLZjVWakOVvcD zoq@Bi*7)V74{n^WTxgf<^SF!c$;OhW`XrutYnRZ6x#_9<1Ah$CM$yw?e3a!#Xa4< z-96(t2#F0sTIB+YgoIWCDUpz(a6s}g91uB$70Y2yh!YADhZTpwiJt?!uIitfiIX*2 zM?~7Wbyrnay;t?UpYK&~&j&-~lZ3J>A#(!mI>F1`S2kH_yh00S4Ayp?3oN8>t&>0H zNWn4M?CXZzVf1*5Im|ag_FB@URifU&GfX)|F9*zSu5f2td{NJLxFw$EMtv5z9UsRr zKUz_=&L3OM=ij^emtP&J4K3r-FCM;&Ppf2Ok`!!Xli9&n*)A>0NAbm`PAZ1uxSGQl)FkyIlN5lHX>#^0_Ppaiv^Zu^UY#rKWqUgJXO8$M(DPtWaoijwxOP(YOlKRF!9(9lRRV1742ztRtj zU2;4${1yvWT|YEzDPx|$DGhsaSRdhm8SryX$oyvF9_p$Rv(PAc;$sQi)38=lHuMeH zq}<^lH&B68;N_E~!W_$Uxf8~CSH)VRq+;3zZ>JyBVB;I4j2Ljyp^#xM1jL-;FJR~ja>oM-G!MDhUitFb| zzt^J`;p*leYx0C@xt?>uy(2q2 z+>)I);8Ty{xDsp`eioM|;T`-&)t5dA>9=5oRHeD4TJ)HtHXa~+5Hzc<&CT6ZDSfo3 zJ>IiBut-qb77xP2GK+F{aoCffXQxyrE#K{U5@|&Y$A%M%mpwQ~$`%i{)5T~hdR<>T zC;GLTX_#9G%k!=k2VWI@GccD0!MlI~)wA|7fB8CaNg#jII+lMN4bp8-o#`xYt#A-S3gwH*2iMs zv1A)TkOFlsUN!X}jZdSQdHl<%JEfTeR9L{`s|OmU_c5F0Q~h}D73c5pJgNAs$^6vJ zY1Ql4wu~48-1Ns~)z;NCq-45nq#Ba5=mpHI=jS$a$_75=MECp zE?Z-U^)<(qp>OSHKz<0MLVC`No>vp3Y94As=-@H6m0MkiPDDKF#lYNRF`ceYD3bS_ z%?Z*!2UX^%<$;!>yqu@u1he%cGe>7XF@J31Sr>5g?HqaQ|Ga}a+`(r+hRe?(H)>RBJ2bxmG(cmV9P02ML&c!DD9XcGy= zI$|>&JPjK<$poNdwrd)8WDu*q+f0}VR&_pf%=ZA^2KW(RX8$sBXLPmviddFbdt480 zM1R9AIJwVGi%ee3a0gDPrdYL*MVr}C?7_2cRCnPsi@5BfTAB^jbNZ zARY4td>gjFznLTd8=5f^g7krn$GO$TLxuJ7WHS({#?qGIB)m{+bO10P$S6(*9nZ5d zTp*RU#ailNTvc=MYfz4C%1P?7*P((T&B_Sa4ftoC+ySyiR>?sNi3c5b5#8zG&-&+K z@>e+I(r7i>Ai-*6cBR!q*K=*RwTn;|hj+-S>qu6`#TDeDbK`9u?9)#F2Dp(QFP*i) zDIZSJ|CvViJ3ynn*Xr0xW^fAzYzXhv6rwa>LrM4=u%WC_NBg;;rf|W-;FAM3ghi17 z8%im{$DIw`2H1lyDEFd$m+eXwO)s)$6RD6$9cPZ-g(-53OFm93NkT5OzI!n4`P}t+ zxZ7Jeybn|FLxa>rYASA9=6gN&naQK9W7adMzYglJ-Rwr}Biy=t#QH0pl>fghJ@V7cPjYZ8rxyBd=U}g=;cjk8sap}th{QkV;9~?%D4Grr}JMato2M>#By}li4z+9SMuNYAL74~I^HN7LHtW-y@VCI N=q5x=tPSZy{{`@35lR36 diff --git a/testdata/v1.31.0/extensions.v1beta1.DaemonSet.yaml b/testdata/v1.31.0/extensions.v1beta1.DaemonSet.yaml deleted file mode 100644 index 76ab0b6062..0000000000 --- a/testdata/v1.31.0/extensions.v1beta1.DaemonSet.yaml +++ /dev/null @@ -1,1238 +0,0 @@ -apiVersion: extensions/v1beta1 -kind: DaemonSet -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - minReadySeconds: 4 - revisionHistoryLimit: 6 - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - template: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - activeDeadlineSeconds: 5 - affinity: - nodeAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - preference: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - nodeSelectorTerms: - - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - podAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - podAntiAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - automountServiceAccountToken: true - containers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - dnsConfig: - nameservers: - - nameserversValue - options: - - name: nameValue - value: valueValue - searches: - - searchesValue - dnsPolicy: dnsPolicyValue - enableServiceLinks: true - ephemeralContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - targetContainerName: targetContainerNameValue - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - hostAliases: - - hostnames: - - hostnamesValue - ip: ipValue - hostIPC: true - hostNetwork: true - hostPID: true - hostUsers: true - hostname: hostnameValue - imagePullSecrets: - - name: nameValue - initContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - nodeName: nodeNameValue - nodeSelector: - nodeSelectorKey: nodeSelectorValue - os: - name: nameValue - overhead: - overheadKey: "0" - preemptionPolicy: preemptionPolicyValue - priority: 25 - priorityClassName: priorityClassNameValue - readinessGates: - - conditionType: conditionTypeValue - resourceClaims: - - name: nameValue - resourceClaimName: resourceClaimNameValue - resourceClaimTemplateName: resourceClaimTemplateNameValue - restartPolicy: restartPolicyValue - runtimeClassName: runtimeClassNameValue - schedulerName: schedulerNameValue - schedulingGates: - - name: nameValue - securityContext: - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - fsGroup: 5 - fsGroupChangePolicy: fsGroupChangePolicyValue - runAsGroup: 6 - runAsNonRoot: true - runAsUser: 2 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - supplementalGroups: - - 4 - supplementalGroupsPolicy: supplementalGroupsPolicyValue - sysctls: - - name: nameValue - value: valueValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - serviceAccount: serviceAccountValue - serviceAccountName: serviceAccountNameValue - setHostnameAsFQDN: true - shareProcessNamespace: true - subdomain: subdomainValue - terminationGracePeriodSeconds: 4 - tolerations: - - effect: effectValue - key: keyValue - operator: operatorValue - tolerationSeconds: 5 - value: valueValue - topologySpreadConstraints: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - maxSkew: 1 - minDomains: 5 - nodeAffinityPolicy: nodeAffinityPolicyValue - nodeTaintsPolicy: nodeTaintsPolicyValue - topologyKey: topologyKeyValue - whenUnsatisfiable: whenUnsatisfiableValue - volumes: - - awsElasticBlockStore: - fsType: fsTypeValue - partition: 3 - readOnly: true - volumeID: volumeIDValue - azureDisk: - cachingMode: cachingModeValue - diskName: diskNameValue - diskURI: diskURIValue - fsType: fsTypeValue - kind: kindValue - readOnly: true - azureFile: - readOnly: true - secretName: secretNameValue - shareName: shareNameValue - cephfs: - monitors: - - monitorsValue - path: pathValue - readOnly: true - secretFile: secretFileValue - secretRef: - name: nameValue - user: userValue - cinder: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeID: volumeIDValue - configMap: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - csi: - driver: driverValue - fsType: fsTypeValue - nodePublishSecretRef: - name: nameValue - readOnly: true - volumeAttributes: - volumeAttributesKey: volumeAttributesValue - downwardAPI: - defaultMode: 2 - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - emptyDir: - medium: mediumValue - sizeLimit: "0" - ephemeral: - volumeClaimTemplate: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - accessModes: - - accessModesValue - dataSource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - dataSourceRef: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resources: - limits: - limitsKey: "0" - requests: - requestsKey: "0" - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - storageClassName: storageClassNameValue - volumeAttributesClassName: volumeAttributesClassNameValue - volumeMode: volumeModeValue - volumeName: volumeNameValue - fc: - fsType: fsTypeValue - lun: 2 - readOnly: true - targetWWNs: - - targetWWNsValue - wwids: - - wwidsValue - flexVolume: - driver: driverValue - fsType: fsTypeValue - options: - optionsKey: optionsValue - readOnly: true - secretRef: - name: nameValue - flocker: - datasetName: datasetNameValue - datasetUUID: datasetUUIDValue - gcePersistentDisk: - fsType: fsTypeValue - partition: 3 - pdName: pdNameValue - readOnly: true - gitRepo: - directory: directoryValue - repository: repositoryValue - revision: revisionValue - glusterfs: - endpoints: endpointsValue - path: pathValue - readOnly: true - hostPath: - path: pathValue - type: typeValue - image: - pullPolicy: pullPolicyValue - reference: referenceValue - iscsi: - chapAuthDiscovery: true - chapAuthSession: true - fsType: fsTypeValue - initiatorName: initiatorNameValue - iqn: iqnValue - iscsiInterface: iscsiInterfaceValue - lun: 3 - portals: - - portalsValue - readOnly: true - secretRef: - name: nameValue - targetPortal: targetPortalValue - name: nameValue - nfs: - path: pathValue - readOnly: true - server: serverValue - persistentVolumeClaim: - claimName: claimNameValue - readOnly: true - photonPersistentDisk: - fsType: fsTypeValue - pdID: pdIDValue - portworxVolume: - fsType: fsTypeValue - readOnly: true - volumeID: volumeIDValue - projected: - defaultMode: 2 - sources: - - clusterTrustBundle: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - name: nameValue - optional: true - path: pathValue - signerName: signerNameValue - configMap: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - downwardAPI: - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secret: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - serviceAccountToken: - audience: audienceValue - expirationSeconds: 2 - path: pathValue - quobyte: - group: groupValue - readOnly: true - registry: registryValue - tenant: tenantValue - user: userValue - volume: volumeValue - rbd: - fsType: fsTypeValue - image: imageValue - keyring: keyringValue - monitors: - - monitorsValue - pool: poolValue - readOnly: true - secretRef: - name: nameValue - user: userValue - scaleIO: - fsType: fsTypeValue - gateway: gatewayValue - protectionDomain: protectionDomainValue - readOnly: true - secretRef: - name: nameValue - sslEnabled: true - storageMode: storageModeValue - storagePool: storagePoolValue - system: systemValue - volumeName: volumeNameValue - secret: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - optional: true - secretName: secretNameValue - storageos: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeName: volumeNameValue - volumeNamespace: volumeNamespaceValue - vsphereVolume: - fsType: fsTypeValue - storagePolicyID: storagePolicyIDValue - storagePolicyName: storagePolicyNameValue - volumePath: volumePathValue - templateGeneration: 5 - updateStrategy: - rollingUpdate: - maxSurge: maxSurgeValue - maxUnavailable: maxUnavailableValue - type: typeValue -status: - collisionCount: 9 - conditions: - - lastTransitionTime: "2003-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue - currentNumberScheduled: 1 - desiredNumberScheduled: 3 - numberAvailable: 7 - numberMisscheduled: 2 - numberReady: 4 - numberUnavailable: 8 - observedGeneration: 5 - updatedNumberScheduled: 6 diff --git a/testdata/v1.31.0/extensions.v1beta1.Deployment.json b/testdata/v1.31.0/extensions.v1beta1.Deployment.json deleted file mode 100644 index a50d48b57e..0000000000 --- a/testdata/v1.31.0/extensions.v1beta1.Deployment.json +++ /dev/null @@ -1,1806 +0,0 @@ -{ - "kind": "Deployment", - "apiVersion": "extensions/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "replicas": 1, - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "template": { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "volumes": [ - { - "name": "nameValue", - "hostPath": { - "path": "pathValue", - "type": "typeValue" - }, - "emptyDir": { - "medium": "mediumValue", - "sizeLimit": "0" - }, - "gcePersistentDisk": { - "pdName": "pdNameValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "awsElasticBlockStore": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "gitRepo": { - "repository": "repositoryValue", - "revision": "revisionValue", - "directory": "directoryValue" - }, - "secret": { - "secretName": "secretNameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "defaultMode": 3, - "optional": true - }, - "nfs": { - "server": "serverValue", - "path": "pathValue", - "readOnly": true - }, - "iscsi": { - "targetPortal": "targetPortalValue", - "iqn": "iqnValue", - "lun": 3, - "iscsiInterface": "iscsiInterfaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "portals": [ - "portalsValue" - ], - "chapAuthDiscovery": true, - "chapAuthSession": true, - "secretRef": { - "name": "nameValue" - }, - "initiatorName": "initiatorNameValue" - }, - "glusterfs": { - "endpoints": "endpointsValue", - "path": "pathValue", - "readOnly": true - }, - "persistentVolumeClaim": { - "claimName": "claimNameValue", - "readOnly": true - }, - "rbd": { - "monitors": [ - "monitorsValue" - ], - "image": "imageValue", - "fsType": "fsTypeValue", - "pool": "poolValue", - "user": "userValue", - "keyring": "keyringValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true - }, - "flexVolume": { - "driver": "driverValue", - "fsType": "fsTypeValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true, - "options": { - "optionsKey": "optionsValue" - } - }, - "cinder": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "name": "nameValue" - } - }, - "cephfs": { - "monitors": [ - "monitorsValue" - ], - "path": "pathValue", - "user": "userValue", - "secretFile": "secretFileValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true - }, - "flocker": { - "datasetName": "datasetNameValue", - "datasetUUID": "datasetUUIDValue" - }, - "downwardAPI": { - "items": [ - { - "path": "pathValue", - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "mode": 4 - } - ], - "defaultMode": 2 - }, - "fc": { - "targetWWNs": [ - "targetWWNsValue" - ], - "lun": 2, - "fsType": "fsTypeValue", - "readOnly": true, - "wwids": [ - "wwidsValue" - ] - }, - "azureFile": { - "secretName": "secretNameValue", - "shareName": "shareNameValue", - "readOnly": true - }, - "configMap": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "defaultMode": 3, - "optional": true - }, - "vsphereVolume": { - "volumePath": "volumePathValue", - "fsType": "fsTypeValue", - "storagePolicyName": "storagePolicyNameValue", - "storagePolicyID": "storagePolicyIDValue" - }, - "quobyte": { - "registry": "registryValue", - "volume": "volumeValue", - "readOnly": true, - "user": "userValue", - "group": "groupValue", - "tenant": "tenantValue" - }, - "azureDisk": { - "diskName": "diskNameValue", - "diskURI": "diskURIValue", - "cachingMode": "cachingModeValue", - "fsType": "fsTypeValue", - "readOnly": true, - "kind": "kindValue" - }, - "photonPersistentDisk": { - "pdID": "pdIDValue", - "fsType": "fsTypeValue" - }, - "projected": { - "sources": [ - { - "secret": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "optional": true - }, - "downwardAPI": { - "items": [ - { - "path": "pathValue", - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "mode": 4 - } - ] - }, - "configMap": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "optional": true - }, - "serviceAccountToken": { - "audience": "audienceValue", - "expirationSeconds": 2, - "path": "pathValue" - }, - "clusterTrustBundle": { - "name": "nameValue", - "signerName": "signerNameValue", - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "optional": true, - "path": "pathValue" - } - } - ], - "defaultMode": 2 - }, - "portworxVolume": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "scaleIO": { - "gateway": "gatewayValue", - "system": "systemValue", - "secretRef": { - "name": "nameValue" - }, - "sslEnabled": true, - "protectionDomain": "protectionDomainValue", - "storagePool": "storagePoolValue", - "storageMode": "storageModeValue", - "volumeName": "volumeNameValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "storageos": { - "volumeName": "volumeNameValue", - "volumeNamespace": "volumeNamespaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "name": "nameValue" - } - }, - "csi": { - "driver": "driverValue", - "readOnly": true, - "fsType": "fsTypeValue", - "volumeAttributes": { - "volumeAttributesKey": "volumeAttributesValue" - }, - "nodePublishSecretRef": { - "name": "nameValue" - } - }, - "ephemeral": { - "volumeClaimTemplate": { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "accessModes": [ - "accessModesValue" - ], - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - } - }, - "volumeName": "volumeNameValue", - "storageClassName": "storageClassNameValue", - "volumeMode": "volumeModeValue", - "dataSource": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue" - }, - "dataSourceRef": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue", - "namespace": "namespaceValue" - }, - "volumeAttributesClassName": "volumeAttributesClassNameValue" - } - } - }, - "image": { - "reference": "referenceValue", - "pullPolicy": "pullPolicyValue" - } - } - ], - "initContainers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "ephemeralContainers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true, - "targetContainerName": "targetContainerNameValue" - } - ], - "restartPolicy": "restartPolicyValue", - "terminationGracePeriodSeconds": 4, - "activeDeadlineSeconds": 5, - "dnsPolicy": "dnsPolicyValue", - "nodeSelector": { - "nodeSelectorKey": "nodeSelectorValue" - }, - "serviceAccountName": "serviceAccountNameValue", - "serviceAccount": "serviceAccountValue", - "automountServiceAccountToken": true, - "nodeName": "nodeNameValue", - "hostNetwork": true, - "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": true, - "securityContext": { - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 2, - "runAsGroup": 6, - "runAsNonRoot": true, - "supplementalGroups": [ - 4 - ], - "supplementalGroupsPolicy": "supplementalGroupsPolicyValue", - "fsGroup": 5, - "sysctls": [ - { - "name": "nameValue", - "value": "valueValue" - } - ], - "fsGroupChangePolicy": "fsGroupChangePolicyValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "imagePullSecrets": [ - { - "name": "nameValue" - } - ], - "hostname": "hostnameValue", - "subdomain": "subdomainValue", - "affinity": { - "nodeAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": { - "nodeSelectorTerms": [ - { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - ] - }, - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "preference": { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - } - ] - }, - "podAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": [ - { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - ], - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "podAffinityTerm": { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - } - ] - }, - "podAntiAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": [ - { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - ], - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "podAffinityTerm": { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - } - ] - } - }, - "schedulerName": "schedulerNameValue", - "tolerations": [ - { - "key": "keyValue", - "operator": "operatorValue", - "value": "valueValue", - "effect": "effectValue", - "tolerationSeconds": 5 - } - ], - "hostAliases": [ - { - "ip": "ipValue", - "hostnames": [ - "hostnamesValue" - ] - } - ], - "priorityClassName": "priorityClassNameValue", - "priority": 25, - "dnsConfig": { - "nameservers": [ - "nameserversValue" - ], - "searches": [ - "searchesValue" - ], - "options": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "readinessGates": [ - { - "conditionType": "conditionTypeValue" - } - ], - "runtimeClassName": "runtimeClassNameValue", - "enableServiceLinks": true, - "preemptionPolicy": "preemptionPolicyValue", - "overhead": { - "overheadKey": "0" - }, - "topologySpreadConstraints": [ - { - "maxSkew": 1, - "topologyKey": "topologyKeyValue", - "whenUnsatisfiable": "whenUnsatisfiableValue", - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "minDomains": 5, - "nodeAffinityPolicy": "nodeAffinityPolicyValue", - "nodeTaintsPolicy": "nodeTaintsPolicyValue", - "matchLabelKeys": [ - "matchLabelKeysValue" - ] - } - ], - "setHostnameAsFQDN": true, - "os": { - "name": "nameValue" - }, - "hostUsers": true, - "schedulingGates": [ - { - "name": "nameValue" - } - ], - "resourceClaims": [ - { - "name": "nameValue", - "resourceClaimName": "resourceClaimNameValue", - "resourceClaimTemplateName": "resourceClaimTemplateNameValue" - } - ] - } - }, - "strategy": { - "type": "typeValue", - "rollingUpdate": { - "maxUnavailable": "maxUnavailableValue", - "maxSurge": "maxSurgeValue" - } - }, - "minReadySeconds": 5, - "revisionHistoryLimit": 6, - "paused": true, - "rollbackTo": { - "revision": 1 - }, - "progressDeadlineSeconds": 9 - }, - "status": { - "observedGeneration": 1, - "replicas": 2, - "updatedReplicas": 3, - "readyReplicas": 7, - "availableReplicas": 4, - "unavailableReplicas": 5, - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "lastUpdateTime": "2006-01-01T01:01:01Z", - "lastTransitionTime": "2007-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ], - "collisionCount": 8 - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/extensions.v1beta1.Deployment.pb b/testdata/v1.31.0/extensions.v1beta1.Deployment.pb deleted file mode 100644 index 7e512c7f3d370918516658d832e53d00a6b02a5e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10940 zcmeHNUx*w@8Q*U#nM<`o5~)_viOjZ=DK8$PA(EO30jmyH4mE%8M?-{qEgnjiOB;C6i+ z$NXqX(R%7gGoOFw=3jqys5Y{MPd|SDZG2iG>(iuQ8yn0HzQ}fHQ9g<4UemW%)u$}t1a#rHouAjig~WX1}Sw6$7nNO zG|-CcMfxY=YlGA1sKfnt{xez|na9bPZ3P#1Jh?NCLnQajZ#8Q{cO%^iv8liPavtb; zf_im~(A+$qs$EmwQcI%6RtA>o(HYQZNV(_Q-3~i36+LuCs4rhDM43^Lq*Y zm40aU$kEX7+bmph{m`(bjCua5H0|k8eT)ZYz|T1$^IM67sH;lML8Ih}k0o$V!)j64 z&{trCa)*c9Km}5Pmrjrhb1cv0PAEU4s#vR(R7~68o%Dkmtbdi1J1)-T#+FS9@1Ru+ zku_B!z2Ld7RHa_%qUvJEdV)ZEo(Q zO6lW$?eU)7fhIw1+dK#p%Ph*-#bHl_o}E&iw0*bhNu(7qA{$O9UUuOeDO)_)N*AN0 z=yh%NoaonTreSU(ESFs?4!#z_#Ti_8{_`A5xbdU zuoHw#db2^0Pk6o?qSL`BdB*J^1f*uQbf01aYa}hH_|5nPQhk?HeOBOI_)U)dDo1Ab zcdj!)zxFthizwe0zR;H+CuO5+apuH%62d#P*!s5O^k_BUZPjYD1I-Q4!6imI3$@%I zU@?Jxy6JRWA~kBrGP^-@R5ia3m->8Q4f;mwpCV&&%7rlW`9?QnB5|7-Y!pE0^HJ}? z?Zf1)!^3pu@uxFC&ykv8nk)z+dyFINv!sTZIPdUKoLJl3l>ShS5GNP#*ZubTRg#wXCsJpNMZPHE-<6&}!habLsq0dBK&auBcm;`{@iCKaEx zn4g+Ct$JPCmJvgMoBp7z+Pa#CluWmSWJ9tRy?~jOJcD|5+x3yow9oK38+lHdqL#x% zs~mY;*Gv+Z;-(vf=T^jmjW#(DhV0Zr2IZD6W@~a;0ze3EAtro`Df9VRG{kFN+49z2eDTZcJk0 z+(oL|W2?-tzU0_4^sW8~$m>8Vr0=}wvYH@O^H3W>2al<(-0DJfBH~dm2IeM<33Yu+ zk-YD0j+4PTs4_l%NmLuQ!Kkr};ckl_2;qp_+ zjXGF$h=90^t~bgrllbh93zD+Z??JBq6UYR~81aZT@;4w3GymacpP6>4C zcb$b`4Y8RHo`H3pWCG9$+cgb4GKdx5Z6(YE>pCAe=Gy?T0el}Yvwt4BGrC%SMJ!9J zeXa*LVzA*BoY-ThMJ6w1xC6&kQ>ax|e=>E2U{O~|Z}qDQ1f zsCp0fXw>#-iyX>)#c~4WR@_sf!U(05Y^v~stsa^=2YyQ7ECk3R4UKXSbv8Y zy;_bYNXNVa-+)cv=YY3#8JvSW7*Ot7;B@4a$*CIZ0*qI#e*ESs4Ml0sqRAJ3v;+3fX5Nk?wcgMRcbJ zKkHvc$=`q+XeLRk(FO@tBeN^57P_8myX_r>vN*g0PF=^cDlV=d7oDH%@L-R2`gg#M z{AlT{4Nv(%ivCYFvflt2<-JzdRx*QIFl0k`tELd8Asb4<*N_cmg*rOO1vP~W9t58p zvLP&r4B1dh5kBf{=r+JEd{(&^9k^^)s%UzVwOUApMCv$u_%0kHN4VtUw2~y`GV8ks zlb+9ApNBjBg~MOMv3H?CY9ciix2^I6ia%2rK8DRWRecz(`8~jW7#BBg7T%V+PWscq zdoY27JmekLzvBA<{|3CLVXPyrBNc{sEr<187jH8+vFa7kyQt=SJ@<1N7L>(9Lk||V~QFE`X`$lfJOokc9 zFyk23Ux)SAF4HmV8P;Ei_19i@BlaO~T|Q*}l}^k5Ult$uY37GHxRp~2eYbP4+t+Y6 zx2V*vHN3ZyKU!kQSN?+1PxiH6#K>=}e{$-dQw#8OrhFG(x`Y4=X86cWc22J4Vw;$W0wP+|Z83S=h6 diff --git a/testdata/v1.31.0/extensions.v1beta1.DeploymentRollback.yaml b/testdata/v1.31.0/extensions.v1beta1.DeploymentRollback.yaml deleted file mode 100644 index 67ed04692a..0000000000 --- a/testdata/v1.31.0/extensions.v1beta1.DeploymentRollback.yaml +++ /dev/null @@ -1,7 +0,0 @@ -apiVersion: extensions/v1beta1 -kind: DeploymentRollback -name: nameValue -rollbackTo: - revision: 1 -updatedAnnotations: - updatedAnnotationsKey: updatedAnnotationsValue diff --git a/testdata/v1.31.0/extensions.v1beta1.Ingress.json b/testdata/v1.31.0/extensions.v1beta1.Ingress.json deleted file mode 100644 index aeb0351951..0000000000 --- a/testdata/v1.31.0/extensions.v1beta1.Ingress.json +++ /dev/null @@ -1,105 +0,0 @@ -{ - "kind": "Ingress", - "apiVersion": "extensions/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "ingressClassName": "ingressClassNameValue", - "backend": { - "serviceName": "serviceNameValue", - "servicePort": "servicePortValue", - "resource": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue" - } - }, - "tls": [ - { - "hosts": [ - "hostsValue" - ], - "secretName": "secretNameValue" - } - ], - "rules": [ - { - "host": "hostValue", - "http": { - "paths": [ - { - "path": "pathValue", - "pathType": "pathTypeValue", - "backend": { - "serviceName": "serviceNameValue", - "servicePort": "servicePortValue", - "resource": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue" - } - } - } - ] - } - } - ] - }, - "status": { - "loadBalancer": { - "ingress": [ - { - "ip": "ipValue", - "hostname": "hostnameValue", - "ports": [ - { - "port": 1, - "protocol": "protocolValue", - "error": "errorValue" - } - ] - } - ] - } - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/extensions.v1beta1.Ingress.pb b/testdata/v1.31.0/extensions.v1beta1.Ingress.pb deleted file mode 100644 index d1203f1177d4bc0103f907f196d93a9e38216a7a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 726 zcmb`F!EVz)5QgovDE1U5W>pZfl#3-Uy+A7=LVHUOh=NcmAr9Qu?lfKE?3&$mL|V1? z_APpbH{cB_d0GpV@!DncZ<;dC&ub-!yW?1Xs_en;B}lN!oAu zNTO2Y#{>A)f{@b*exgN%~rw|r2!$Q5o8Ci3oy^*ERp_~g%wShM2 z_}^{f~zwgWLA>*`Q$2Fk!x$rZ1IH8=5P+Ea>L}}(< z;3t3Er1cEH=Qk^{w^f^AaiBiVO1GKqRcM`@4q{bh%T3s&p0{8hVufDX6$DHmEU7+n!vE(< zBICYXM*5h!Kek&?r5daqcnzxw8%war36q);T|XPQtuYL C!1gu( diff --git a/testdata/v1.31.0/extensions.v1beta1.Ingress.yaml b/testdata/v1.31.0/extensions.v1beta1.Ingress.yaml deleted file mode 100644 index 13cedd0d4c..0000000000 --- a/testdata/v1.31.0/extensions.v1beta1.Ingress.yaml +++ /dev/null @@ -1,69 +0,0 @@ -apiVersion: extensions/v1beta1 -kind: Ingress -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - backend: - resource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - serviceName: serviceNameValue - servicePort: servicePortValue - ingressClassName: ingressClassNameValue - rules: - - host: hostValue - http: - paths: - - backend: - resource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - serviceName: serviceNameValue - servicePort: servicePortValue - path: pathValue - pathType: pathTypeValue - tls: - - hosts: - - hostsValue - secretName: secretNameValue -status: - loadBalancer: - ingress: - - hostname: hostnameValue - ip: ipValue - ports: - - error: errorValue - port: 1 - protocol: protocolValue diff --git a/testdata/v1.31.0/extensions.v1beta1.NetworkPolicy.json b/testdata/v1.31.0/extensions.v1beta1.NetworkPolicy.json deleted file mode 100644 index 41d542a9bb..0000000000 --- a/testdata/v1.31.0/extensions.v1beta1.NetworkPolicy.json +++ /dev/null @@ -1,163 +0,0 @@ -{ - "kind": "NetworkPolicy", - "apiVersion": "extensions/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "podSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "ingress": [ - { - "ports": [ - { - "protocol": "protocolValue", - "port": "portValue", - "endPort": 3 - } - ], - "from": [ - { - "podSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "ipBlock": { - "cidr": "cidrValue", - "except": [ - "exceptValue" - ] - } - } - ] - } - ], - "egress": [ - { - "ports": [ - { - "protocol": "protocolValue", - "port": "portValue", - "endPort": 3 - } - ], - "to": [ - { - "podSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "ipBlock": { - "cidr": "cidrValue", - "except": [ - "exceptValue" - ] - } - } - ] - } - ], - "policyTypes": [ - "policyTypesValue" - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/extensions.v1beta1.NetworkPolicy.pb b/testdata/v1.31.0/extensions.v1beta1.NetworkPolicy.pb deleted file mode 100644 index 4c7ce5ac9cbe0c9bb442c01cf47cd081b9649266..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 950 zcmds$F;4<96vyv`grf+Y7YB0VnK-a0Bqqd>Q3+u%4sN~Uf%T5|(iQ}btAn3HXLlFB zfe9bM#5g$n4Ybz^5@#m2e_vnU`~6?rxFsyKgFKi@pn@ z@_=Vub+lDzJI?&!<2mnIM@l_@z9`j0XEjtza0rPwhM89~QlAI|RKb)oiDibKZM!RL zopW)3iZP+4vH!~-ENSXhoRU?LeY<7z>VQz3kShhK>)hEP+8kkuhro5ftFSclzrgqZ zmI;)H_xV@OwVJ9JBzU|z{ka9J`GCJ=pO}i^=(|i{> zG0coE8xUr={L&;VWvIPZTa_!PoJkh3#N<~U+qL{+%DB{lTF!g2*W7olE`0R@BGUhv bdkLlyqz2vp=l%jW)!#3BIp#)vE3m!+^a4PJ diff --git a/testdata/v1.31.0/extensions.v1beta1.NetworkPolicy.yaml b/testdata/v1.31.0/extensions.v1beta1.NetworkPolicy.yaml deleted file mode 100644 index 176cbe3313..0000000000 --- a/testdata/v1.31.0/extensions.v1beta1.NetworkPolicy.yaml +++ /dev/null @@ -1,97 +0,0 @@ -apiVersion: extensions/v1beta1 -kind: NetworkPolicy -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - egress: - - ports: - - endPort: 3 - port: portValue - protocol: protocolValue - to: - - ipBlock: - cidr: cidrValue - except: - - exceptValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - podSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - ingress: - - from: - - ipBlock: - cidr: cidrValue - except: - - exceptValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - podSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - ports: - - endPort: 3 - port: portValue - protocol: protocolValue - podSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - policyTypes: - - policyTypesValue diff --git a/testdata/v1.31.0/extensions.v1beta1.ReplicaSet.json b/testdata/v1.31.0/extensions.v1beta1.ReplicaSet.json deleted file mode 100644 index 9947335378..0000000000 --- a/testdata/v1.31.0/extensions.v1beta1.ReplicaSet.json +++ /dev/null @@ -1,1790 +0,0 @@ -{ - "kind": "ReplicaSet", - "apiVersion": "extensions/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "replicas": 1, - "minReadySeconds": 4, - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "template": { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "volumes": [ - { - "name": "nameValue", - "hostPath": { - "path": "pathValue", - "type": "typeValue" - }, - "emptyDir": { - "medium": "mediumValue", - "sizeLimit": "0" - }, - "gcePersistentDisk": { - "pdName": "pdNameValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "awsElasticBlockStore": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "gitRepo": { - "repository": "repositoryValue", - "revision": "revisionValue", - "directory": "directoryValue" - }, - "secret": { - "secretName": "secretNameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "defaultMode": 3, - "optional": true - }, - "nfs": { - "server": "serverValue", - "path": "pathValue", - "readOnly": true - }, - "iscsi": { - "targetPortal": "targetPortalValue", - "iqn": "iqnValue", - "lun": 3, - "iscsiInterface": "iscsiInterfaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "portals": [ - "portalsValue" - ], - "chapAuthDiscovery": true, - "chapAuthSession": true, - "secretRef": { - "name": "nameValue" - }, - "initiatorName": "initiatorNameValue" - }, - "glusterfs": { - "endpoints": "endpointsValue", - "path": "pathValue", - "readOnly": true - }, - "persistentVolumeClaim": { - "claimName": "claimNameValue", - "readOnly": true - }, - "rbd": { - "monitors": [ - "monitorsValue" - ], - "image": "imageValue", - "fsType": "fsTypeValue", - "pool": "poolValue", - "user": "userValue", - "keyring": "keyringValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true - }, - "flexVolume": { - "driver": "driverValue", - "fsType": "fsTypeValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true, - "options": { - "optionsKey": "optionsValue" - } - }, - "cinder": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "name": "nameValue" - } - }, - "cephfs": { - "monitors": [ - "monitorsValue" - ], - "path": "pathValue", - "user": "userValue", - "secretFile": "secretFileValue", - "secretRef": { - "name": "nameValue" - }, - "readOnly": true - }, - "flocker": { - "datasetName": "datasetNameValue", - "datasetUUID": "datasetUUIDValue" - }, - "downwardAPI": { - "items": [ - { - "path": "pathValue", - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "mode": 4 - } - ], - "defaultMode": 2 - }, - "fc": { - "targetWWNs": [ - "targetWWNsValue" - ], - "lun": 2, - "fsType": "fsTypeValue", - "readOnly": true, - "wwids": [ - "wwidsValue" - ] - }, - "azureFile": { - "secretName": "secretNameValue", - "shareName": "shareNameValue", - "readOnly": true - }, - "configMap": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "defaultMode": 3, - "optional": true - }, - "vsphereVolume": { - "volumePath": "volumePathValue", - "fsType": "fsTypeValue", - "storagePolicyName": "storagePolicyNameValue", - "storagePolicyID": "storagePolicyIDValue" - }, - "quobyte": { - "registry": "registryValue", - "volume": "volumeValue", - "readOnly": true, - "user": "userValue", - "group": "groupValue", - "tenant": "tenantValue" - }, - "azureDisk": { - "diskName": "diskNameValue", - "diskURI": "diskURIValue", - "cachingMode": "cachingModeValue", - "fsType": "fsTypeValue", - "readOnly": true, - "kind": "kindValue" - }, - "photonPersistentDisk": { - "pdID": "pdIDValue", - "fsType": "fsTypeValue" - }, - "projected": { - "sources": [ - { - "secret": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "optional": true - }, - "downwardAPI": { - "items": [ - { - "path": "pathValue", - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "mode": 4 - } - ] - }, - "configMap": { - "name": "nameValue", - "items": [ - { - "key": "keyValue", - "path": "pathValue", - "mode": 3 - } - ], - "optional": true - }, - "serviceAccountToken": { - "audience": "audienceValue", - "expirationSeconds": 2, - "path": "pathValue" - }, - "clusterTrustBundle": { - "name": "nameValue", - "signerName": "signerNameValue", - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "optional": true, - "path": "pathValue" - } - } - ], - "defaultMode": 2 - }, - "portworxVolume": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "scaleIO": { - "gateway": "gatewayValue", - "system": "systemValue", - "secretRef": { - "name": "nameValue" - }, - "sslEnabled": true, - "protectionDomain": "protectionDomainValue", - "storagePool": "storagePoolValue", - "storageMode": "storageModeValue", - "volumeName": "volumeNameValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "storageos": { - "volumeName": "volumeNameValue", - "volumeNamespace": "volumeNamespaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "name": "nameValue" - } - }, - "csi": { - "driver": "driverValue", - "readOnly": true, - "fsType": "fsTypeValue", - "volumeAttributes": { - "volumeAttributesKey": "volumeAttributesValue" - }, - "nodePublishSecretRef": { - "name": "nameValue" - } - }, - "ephemeral": { - "volumeClaimTemplate": { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "accessModes": [ - "accessModesValue" - ], - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - } - }, - "volumeName": "volumeNameValue", - "storageClassName": "storageClassNameValue", - "volumeMode": "volumeModeValue", - "dataSource": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue" - }, - "dataSourceRef": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue", - "namespace": "namespaceValue" - }, - "volumeAttributesClassName": "volumeAttributesClassNameValue" - } - } - }, - "image": { - "reference": "referenceValue", - "pullPolicy": "pullPolicyValue" - } - } - ], - "initContainers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "ephemeralContainers": [ - { - "name": "nameValue", - "image": "imageValue", - "command": [ - "commandValue" - ], - "args": [ - "argsValue" - ], - "workingDir": "workingDirValue", - "ports": [ - { - "name": "nameValue", - "hostPort": 2, - "containerPort": 3, - "protocol": "protocolValue", - "hostIP": "hostIPValue" - } - ], - "envFrom": [ - { - "prefix": "prefixValue", - "configMapRef": { - "name": "nameValue", - "optional": true - }, - "secretRef": { - "name": "nameValue", - "optional": true - } - } - ], - "env": [ - { - "name": "nameValue", - "value": "valueValue", - "valueFrom": { - "fieldRef": { - "apiVersion": "apiVersionValue", - "fieldPath": "fieldPathValue" - }, - "resourceFieldRef": { - "containerName": "containerNameValue", - "resource": "resourceValue", - "divisor": "0" - }, - "configMapKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - }, - "secretKeyRef": { - "name": "nameValue", - "key": "keyValue", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "limitsKey": "0" - }, - "requests": { - "requestsKey": "0" - }, - "claims": [ - { - "name": "nameValue", - "request": "requestValue" - } - ] - }, - "resizePolicy": [ - { - "resourceName": "resourceNameValue", - "restartPolicy": "restartPolicyValue" - } - ], - "restartPolicy": "restartPolicyValue", - "volumeMounts": [ - { - "name": "nameValue", - "readOnly": true, - "recursiveReadOnly": "recursiveReadOnlyValue", - "mountPath": "mountPathValue", - "subPath": "subPathValue", - "mountPropagation": "mountPropagationValue", - "subPathExpr": "subPathExprValue" - } - ], - "volumeDevices": [ - { - "name": "nameValue", - "devicePath": "devicePathValue" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "readinessProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "startupProbe": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "grpc": { - "port": 1, - "service": "serviceValue" - }, - "initialDelaySeconds": 2, - "timeoutSeconds": 3, - "periodSeconds": 4, - "successThreshold": 5, - "failureThreshold": 6, - "terminationGracePeriodSeconds": 7 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - }, - "preStop": { - "exec": { - "command": [ - "commandValue" - ] - }, - "httpGet": { - "path": "pathValue", - "port": "portValue", - "host": "hostValue", - "scheme": "schemeValue", - "httpHeaders": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "tcpSocket": { - "port": "portValue", - "host": "hostValue" - }, - "sleep": { - "seconds": 1 - } - } - }, - "terminationMessagePath": "terminationMessagePathValue", - "terminationMessagePolicy": "terminationMessagePolicyValue", - "imagePullPolicy": "imagePullPolicyValue", - "securityContext": { - "capabilities": { - "add": [ - "addValue" - ], - "drop": [ - "dropValue" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 4, - "runAsGroup": 8, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "procMountValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true, - "targetContainerName": "targetContainerNameValue" - } - ], - "restartPolicy": "restartPolicyValue", - "terminationGracePeriodSeconds": 4, - "activeDeadlineSeconds": 5, - "dnsPolicy": "dnsPolicyValue", - "nodeSelector": { - "nodeSelectorKey": "nodeSelectorValue" - }, - "serviceAccountName": "serviceAccountNameValue", - "serviceAccount": "serviceAccountValue", - "automountServiceAccountToken": true, - "nodeName": "nodeNameValue", - "hostNetwork": true, - "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": true, - "securityContext": { - "seLinuxOptions": { - "user": "userValue", - "role": "roleValue", - "type": "typeValue", - "level": "levelValue" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "gmsaCredentialSpecNameValue", - "gmsaCredentialSpec": "gmsaCredentialSpecValue", - "runAsUserName": "runAsUserNameValue", - "hostProcess": true - }, - "runAsUser": 2, - "runAsGroup": 6, - "runAsNonRoot": true, - "supplementalGroups": [ - 4 - ], - "supplementalGroupsPolicy": "supplementalGroupsPolicyValue", - "fsGroup": 5, - "sysctls": [ - { - "name": "nameValue", - "value": "valueValue" - } - ], - "fsGroupChangePolicy": "fsGroupChangePolicyValue", - "seccompProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - }, - "appArmorProfile": { - "type": "typeValue", - "localhostProfile": "localhostProfileValue" - } - }, - "imagePullSecrets": [ - { - "name": "nameValue" - } - ], - "hostname": "hostnameValue", - "subdomain": "subdomainValue", - "affinity": { - "nodeAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": { - "nodeSelectorTerms": [ - { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - ] - }, - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "preference": { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - } - ] - }, - "podAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": [ - { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - ], - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "podAffinityTerm": { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - } - ] - }, - "podAntiAffinity": { - "requiredDuringSchedulingIgnoredDuringExecution": [ - { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - ], - "preferredDuringSchedulingIgnoredDuringExecution": [ - { - "weight": 1, - "podAffinityTerm": { - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "namespaces": [ - "namespacesValue" - ], - "topologyKey": "topologyKeyValue", - "namespaceSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "matchLabelKeys": [ - "matchLabelKeysValue" - ], - "mismatchLabelKeys": [ - "mismatchLabelKeysValue" - ] - } - } - ] - } - }, - "schedulerName": "schedulerNameValue", - "tolerations": [ - { - "key": "keyValue", - "operator": "operatorValue", - "value": "valueValue", - "effect": "effectValue", - "tolerationSeconds": 5 - } - ], - "hostAliases": [ - { - "ip": "ipValue", - "hostnames": [ - "hostnamesValue" - ] - } - ], - "priorityClassName": "priorityClassNameValue", - "priority": 25, - "dnsConfig": { - "nameservers": [ - "nameserversValue" - ], - "searches": [ - "searchesValue" - ], - "options": [ - { - "name": "nameValue", - "value": "valueValue" - } - ] - }, - "readinessGates": [ - { - "conditionType": "conditionTypeValue" - } - ], - "runtimeClassName": "runtimeClassNameValue", - "enableServiceLinks": true, - "preemptionPolicy": "preemptionPolicyValue", - "overhead": { - "overheadKey": "0" - }, - "topologySpreadConstraints": [ - { - "maxSkew": 1, - "topologyKey": "topologyKeyValue", - "whenUnsatisfiable": "whenUnsatisfiableValue", - "labelSelector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "minDomains": 5, - "nodeAffinityPolicy": "nodeAffinityPolicyValue", - "nodeTaintsPolicy": "nodeTaintsPolicyValue", - "matchLabelKeys": [ - "matchLabelKeysValue" - ] - } - ], - "setHostnameAsFQDN": true, - "os": { - "name": "nameValue" - }, - "hostUsers": true, - "schedulingGates": [ - { - "name": "nameValue" - } - ], - "resourceClaims": [ - { - "name": "nameValue", - "resourceClaimName": "resourceClaimNameValue", - "resourceClaimTemplateName": "resourceClaimTemplateNameValue" - } - ] - } - } - }, - "status": { - "replicas": 1, - "fullyLabeledReplicas": 2, - "readyReplicas": 4, - "availableReplicas": 5, - "observedGeneration": 3, - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "lastTransitionTime": "2003-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/extensions.v1beta1.ReplicaSet.pb b/testdata/v1.31.0/extensions.v1beta1.ReplicaSet.pb deleted file mode 100644 index 16dadda0fb960f5b7b9beb850b77a666f0055987..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10853 zcmeHNO>7)V74{oD#8dN|ivQA^MBZjutXW{a7Ar*~A;oqAvauKA*kol8qTO9HQ*lps zZ+Fi)4nl$;#3~n1BqX#FNQs0Lg#(gLC>#(uEi0D8o)9M#Bn~SMffGLmcwN;$H4`Um zw2p|hbL+0Eu6nQPdq3Z+-Z>Wxk!eEN)sQ&>cb(wn?kn3YG+v=(oq0AljY}+~zuX{y z%8|TdwAoh-yTj;-CUcl?gzUAXNh?RafoGU#znT2!UR~p*|6!YAGZBlF-j?rYk zXrN`+i}X*#*ZQZ?QHKZb{%5#4G>4Nh+X^=JJh?OV5t94nw-%~FXFJ^qv8mtx@+i<1 zf_k-$&}^-wYFCwax%`V{bcgN9=aLk~m6BZ*+AVf!K}SUykpNS#hohfYIHBgFMm$5o7< z#jICedg5_|u1@7&>{lq;0xgqUj}QCv+?Kl5)JbOH+6$y=8KDuVct~0{H)Gsghp&?@ z71z&`e!oY{!rQGS(AQ=NHC-n(IL3?gAZV$_^J$S4OpjD^HvnNNp>+B3Yw}F1xt?>u zy(7E3+>)I);p30uxE!<$KZ{IL@D_ff>Pw%5^xLpPD$?9iEqY8+n+Om-2%0q)(rtfwYdq9d!jQhJr>}CqV zUJx?r&H6z;?)h$rP6wmp1-Fe5keXG~eTogNp0uRmFT^L1>btD!vj*?M?{nn0IWlv& zbDakIwWo<(MERlcg}(eWDH$D$GbhfI5Z;-^)^-)AM=Jqus#c>NX>NcHE-}&>sOJ6% ziwW%0O{ZfLsZm3g+4Y;Fs`&%B+~WhQ&@)>96gerUoDV~vZ+Ai_61VaGMgf!_AN4-m zIYxeVY>>`8{dDHnIZ`!DlLbL!k8xyukyJ4g=WQN}6N@}{l*{<+4NNw(Hm%=q^&-tD%niqJSjl85xQO#kZ zRf;^WYbJ?Hq2&hQ(wbPX{u59}Q__uSg6Pq{3*>_%IX!eF*G~0%!<4FEuzP&h!u%l- zc1l&F7z0o!vTQ3|=z7X+x8sCq6xWMLxze}Vxa{>^&%lV5FuA#imqmjvUiIWI*C#M> z?jTj|vUO%yUvg|2`qqC6pLZ~aJNOL9aOFAV zMs2J*L_l0c*Bj-RNqqLl1W8%z^&r>&0c4zv8kTevG;bl41+)M3}Vf98woSPy3PlV`8L3t06zrG>|aLijINen70c2} zkL$sW=x?|UXAanDk;#i0?!sx+6e||8Xfr#CeR$T5>K=TOoJiVzwwNMD@25YJ*r}VKR13^QIYLDwSvXWN(KU zy-ZnDlV=d7oD4E^WcDX`ZvIh z{AlT{4Nmz;ivG_wvflz4<-JzNRx*RzFknM?tELd80UJuf*MJRWg*w{L1vP~W9tEEq zupump4A@Xg5kBf{=nlX>d{(&^?YnGOs%UzFH5y2TMCv$m>>ivV$GPO=w45a5GV8k! z6Q0jqpND(Bg~PYu)O%1TRgs#C+gAAj#h)n*AH!yxsy>d^`~lzrjENgJ3vWwZC;jQ* zeHceV9`ZKpUGX8nzX0!P7;B5`NQL2D&tZMn#oNplR=py67u9@k) zIh#&^1&pABF;DP2MydkMcVp!)Ukn=Orgq*77og~Z|3$(WRP(T zGLAw0bx?opFdeg=LH%`5f9+;BVjtqx6HBcW$}@pW`3N5+c~w+cP9t?Jq`DA zi%RWU!+R_Fqa}uX_uo1+6a@LAiR*SALL?WaO=|leoIaU4j diff --git a/testdata/v1.31.0/extensions.v1beta1.ReplicaSet.yaml b/testdata/v1.31.0/extensions.v1beta1.ReplicaSet.yaml deleted file mode 100644 index bf4285d5e1..0000000000 --- a/testdata/v1.31.0/extensions.v1beta1.ReplicaSet.yaml +++ /dev/null @@ -1,1228 +0,0 @@ -apiVersion: extensions/v1beta1 -kind: ReplicaSet -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - minReadySeconds: 4 - replicas: 1 - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - template: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - activeDeadlineSeconds: 5 - affinity: - nodeAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - preference: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - nodeSelectorTerms: - - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - podAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - podAntiAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - podAffinityTerm: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - weight: 1 - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - mismatchLabelKeys: - - mismatchLabelKeysValue - namespaceSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - namespaces: - - namespacesValue - topologyKey: topologyKeyValue - automountServiceAccountToken: true - containers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - dnsConfig: - nameservers: - - nameserversValue - options: - - name: nameValue - value: valueValue - searches: - - searchesValue - dnsPolicy: dnsPolicyValue - enableServiceLinks: true - ephemeralContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - targetContainerName: targetContainerNameValue - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - hostAliases: - - hostnames: - - hostnamesValue - ip: ipValue - hostIPC: true - hostNetwork: true - hostPID: true - hostUsers: true - hostname: hostnameValue - imagePullSecrets: - - name: nameValue - initContainers: - - args: - - argsValue - command: - - commandValue - env: - - name: nameValue - value: valueValue - valueFrom: - configMapKeyRef: - key: keyValue - name: nameValue - optional: true - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secretKeyRef: - key: keyValue - name: nameValue - optional: true - envFrom: - - configMapRef: - name: nameValue - optional: true - prefix: prefixValue - secretRef: - name: nameValue - optional: true - image: imageValue - imagePullPolicy: imagePullPolicyValue - lifecycle: - postStart: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - preStop: - exec: - command: - - commandValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - sleep: - seconds: 1 - tcpSocket: - host: hostValue - port: portValue - livenessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - name: nameValue - ports: - - containerPort: 3 - hostIP: hostIPValue - hostPort: 2 - name: nameValue - protocol: protocolValue - readinessProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - resizePolicy: - - resourceName: resourceNameValue - restartPolicy: restartPolicyValue - resources: - claims: - - name: nameValue - request: requestValue - limits: - limitsKey: "0" - requests: - requestsKey: "0" - restartPolicy: restartPolicyValue - securityContext: - allowPrivilegeEscalation: true - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - capabilities: - add: - - addValue - drop: - - dropValue - privileged: true - procMount: procMountValue - readOnlyRootFilesystem: true - runAsGroup: 8 - runAsNonRoot: true - runAsUser: 4 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - startupProbe: - exec: - command: - - commandValue - failureThreshold: 6 - grpc: - port: 1 - service: serviceValue - httpGet: - host: hostValue - httpHeaders: - - name: nameValue - value: valueValue - path: pathValue - port: portValue - scheme: schemeValue - initialDelaySeconds: 2 - periodSeconds: 4 - successThreshold: 5 - tcpSocket: - host: hostValue - port: portValue - terminationGracePeriodSeconds: 7 - timeoutSeconds: 3 - stdin: true - stdinOnce: true - terminationMessagePath: terminationMessagePathValue - terminationMessagePolicy: terminationMessagePolicyValue - tty: true - volumeDevices: - - devicePath: devicePathValue - name: nameValue - volumeMounts: - - mountPath: mountPathValue - mountPropagation: mountPropagationValue - name: nameValue - readOnly: true - recursiveReadOnly: recursiveReadOnlyValue - subPath: subPathValue - subPathExpr: subPathExprValue - workingDir: workingDirValue - nodeName: nodeNameValue - nodeSelector: - nodeSelectorKey: nodeSelectorValue - os: - name: nameValue - overhead: - overheadKey: "0" - preemptionPolicy: preemptionPolicyValue - priority: 25 - priorityClassName: priorityClassNameValue - readinessGates: - - conditionType: conditionTypeValue - resourceClaims: - - name: nameValue - resourceClaimName: resourceClaimNameValue - resourceClaimTemplateName: resourceClaimTemplateNameValue - restartPolicy: restartPolicyValue - runtimeClassName: runtimeClassNameValue - schedulerName: schedulerNameValue - schedulingGates: - - name: nameValue - securityContext: - appArmorProfile: - localhostProfile: localhostProfileValue - type: typeValue - fsGroup: 5 - fsGroupChangePolicy: fsGroupChangePolicyValue - runAsGroup: 6 - runAsNonRoot: true - runAsUser: 2 - seLinuxOptions: - level: levelValue - role: roleValue - type: typeValue - user: userValue - seccompProfile: - localhostProfile: localhostProfileValue - type: typeValue - supplementalGroups: - - 4 - supplementalGroupsPolicy: supplementalGroupsPolicyValue - sysctls: - - name: nameValue - value: valueValue - windowsOptions: - gmsaCredentialSpec: gmsaCredentialSpecValue - gmsaCredentialSpecName: gmsaCredentialSpecNameValue - hostProcess: true - runAsUserName: runAsUserNameValue - serviceAccount: serviceAccountValue - serviceAccountName: serviceAccountNameValue - setHostnameAsFQDN: true - shareProcessNamespace: true - subdomain: subdomainValue - terminationGracePeriodSeconds: 4 - tolerations: - - effect: effectValue - key: keyValue - operator: operatorValue - tolerationSeconds: 5 - value: valueValue - topologySpreadConstraints: - - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - matchLabelKeys: - - matchLabelKeysValue - maxSkew: 1 - minDomains: 5 - nodeAffinityPolicy: nodeAffinityPolicyValue - nodeTaintsPolicy: nodeTaintsPolicyValue - topologyKey: topologyKeyValue - whenUnsatisfiable: whenUnsatisfiableValue - volumes: - - awsElasticBlockStore: - fsType: fsTypeValue - partition: 3 - readOnly: true - volumeID: volumeIDValue - azureDisk: - cachingMode: cachingModeValue - diskName: diskNameValue - diskURI: diskURIValue - fsType: fsTypeValue - kind: kindValue - readOnly: true - azureFile: - readOnly: true - secretName: secretNameValue - shareName: shareNameValue - cephfs: - monitors: - - monitorsValue - path: pathValue - readOnly: true - secretFile: secretFileValue - secretRef: - name: nameValue - user: userValue - cinder: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeID: volumeIDValue - configMap: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - csi: - driver: driverValue - fsType: fsTypeValue - nodePublishSecretRef: - name: nameValue - readOnly: true - volumeAttributes: - volumeAttributesKey: volumeAttributesValue - downwardAPI: - defaultMode: 2 - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - emptyDir: - medium: mediumValue - sizeLimit: "0" - ephemeral: - volumeClaimTemplate: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - accessModes: - - accessModesValue - dataSource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - dataSourceRef: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - namespace: namespaceValue - resources: - limits: - limitsKey: "0" - requests: - requestsKey: "0" - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - storageClassName: storageClassNameValue - volumeAttributesClassName: volumeAttributesClassNameValue - volumeMode: volumeModeValue - volumeName: volumeNameValue - fc: - fsType: fsTypeValue - lun: 2 - readOnly: true - targetWWNs: - - targetWWNsValue - wwids: - - wwidsValue - flexVolume: - driver: driverValue - fsType: fsTypeValue - options: - optionsKey: optionsValue - readOnly: true - secretRef: - name: nameValue - flocker: - datasetName: datasetNameValue - datasetUUID: datasetUUIDValue - gcePersistentDisk: - fsType: fsTypeValue - partition: 3 - pdName: pdNameValue - readOnly: true - gitRepo: - directory: directoryValue - repository: repositoryValue - revision: revisionValue - glusterfs: - endpoints: endpointsValue - path: pathValue - readOnly: true - hostPath: - path: pathValue - type: typeValue - image: - pullPolicy: pullPolicyValue - reference: referenceValue - iscsi: - chapAuthDiscovery: true - chapAuthSession: true - fsType: fsTypeValue - initiatorName: initiatorNameValue - iqn: iqnValue - iscsiInterface: iscsiInterfaceValue - lun: 3 - portals: - - portalsValue - readOnly: true - secretRef: - name: nameValue - targetPortal: targetPortalValue - name: nameValue - nfs: - path: pathValue - readOnly: true - server: serverValue - persistentVolumeClaim: - claimName: claimNameValue - readOnly: true - photonPersistentDisk: - fsType: fsTypeValue - pdID: pdIDValue - portworxVolume: - fsType: fsTypeValue - readOnly: true - volumeID: volumeIDValue - projected: - defaultMode: 2 - sources: - - clusterTrustBundle: - labelSelector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - name: nameValue - optional: true - path: pathValue - signerName: signerNameValue - configMap: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - downwardAPI: - items: - - fieldRef: - apiVersion: apiVersionValue - fieldPath: fieldPathValue - mode: 4 - path: pathValue - resourceFieldRef: - containerName: containerNameValue - divisor: "0" - resource: resourceValue - secret: - items: - - key: keyValue - mode: 3 - path: pathValue - name: nameValue - optional: true - serviceAccountToken: - audience: audienceValue - expirationSeconds: 2 - path: pathValue - quobyte: - group: groupValue - readOnly: true - registry: registryValue - tenant: tenantValue - user: userValue - volume: volumeValue - rbd: - fsType: fsTypeValue - image: imageValue - keyring: keyringValue - monitors: - - monitorsValue - pool: poolValue - readOnly: true - secretRef: - name: nameValue - user: userValue - scaleIO: - fsType: fsTypeValue - gateway: gatewayValue - protectionDomain: protectionDomainValue - readOnly: true - secretRef: - name: nameValue - sslEnabled: true - storageMode: storageModeValue - storagePool: storagePoolValue - system: systemValue - volumeName: volumeNameValue - secret: - defaultMode: 3 - items: - - key: keyValue - mode: 3 - path: pathValue - optional: true - secretName: secretNameValue - storageos: - fsType: fsTypeValue - readOnly: true - secretRef: - name: nameValue - volumeName: volumeNameValue - volumeNamespace: volumeNamespaceValue - vsphereVolume: - fsType: fsTypeValue - storagePolicyID: storagePolicyIDValue - storagePolicyName: storagePolicyNameValue - volumePath: volumePathValue -status: - availableReplicas: 5 - conditions: - - lastTransitionTime: "2003-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue - fullyLabeledReplicas: 2 - observedGeneration: 3 - readyReplicas: 4 - replicas: 1 diff --git a/testdata/v1.31.0/extensions.v1beta1.Scale.json b/testdata/v1.31.0/extensions.v1beta1.Scale.json deleted file mode 100644 index 74603e1ccb..0000000000 --- a/testdata/v1.31.0/extensions.v1beta1.Scale.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "kind": "Scale", - "apiVersion": "extensions/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "replicas": 1 - }, - "status": { - "replicas": 1, - "selector": { - "selectorKey": "selectorValue" - }, - "targetSelector": "targetSelectorValue" - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/extensions.v1beta1.Scale.pb b/testdata/v1.31.0/extensions.v1beta1.Scale.pb deleted file mode 100644 index 394e86eef4d5ec60b24297c5c75f9b79d9ffcdb2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 454 zcmZ8dyG{Z@6x{`k%b>817G|~Dl13pRA(oVCj0wiV?k-%&$S}K^nKh#E2mA;VYd^t1 zFySAJg|&a6GqVBF?%Z=9=iD>tDv#_DinkhtVyRFEH?0IUwCGxY037L4nY@=sRlpQ4 zf#*oK#wbvN#Mu{pkOh*!=J@|1O7K+Z;na zR2Q?XNami!?ni@hI% C=$oVf diff --git a/testdata/v1.31.0/extensions.v1beta1.Scale.yaml b/testdata/v1.31.0/extensions.v1beta1.Scale.yaml deleted file mode 100644 index 4d8465601b..0000000000 --- a/testdata/v1.31.0/extensions.v1beta1.Scale.yaml +++ /dev/null @@ -1,41 +0,0 @@ -apiVersion: extensions/v1beta1 -kind: Scale -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - replicas: 1 -status: - replicas: 1 - selector: - selectorKey: selectorValue - targetSelector: targetSelectorValue diff --git a/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1.FlowSchema.json b/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1.FlowSchema.json deleted file mode 100644 index 2afc3cf008..0000000000 --- a/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1.FlowSchema.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "kind": "FlowSchema", - "apiVersion": "flowcontrol.apiserver.k8s.io/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "priorityLevelConfiguration": { - "name": "nameValue" - }, - "matchingPrecedence": 2, - "distinguisherMethod": { - "type": "typeValue" - }, - "rules": [ - { - "subjects": [ - { - "kind": "kindValue", - "user": { - "name": "nameValue" - }, - "group": { - "name": "nameValue" - }, - "serviceAccount": { - "namespace": "namespaceValue", - "name": "nameValue" - } - } - ], - "resourceRules": [ - { - "verbs": [ - "verbsValue" - ], - "apiGroups": [ - "apiGroupsValue" - ], - "resources": [ - "resourcesValue" - ], - "clusterScope": true, - "namespaces": [ - "namespacesValue" - ] - } - ], - "nonResourceRules": [ - { - "verbs": [ - "verbsValue" - ], - "nonResourceURLs": [ - "nonResourceURLsValue" - ] - } - ] - } - ] - }, - "status": { - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "lastTransitionTime": "2003-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1.FlowSchema.pb b/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1.FlowSchema.pb deleted file mode 100644 index e146421bd86ac2588ecb7734a8b39e17c3e55ef9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 681 zcmZ8f%SyvQ6isTu_Eyt4xRAI|W?8UmK`4Ra1tpH`gdi=&Y-I!)=nXGQuDC06Ns*vsFjl7 z)I^PG#kEWn;<(a*6sFo7Z#rh>TP~SDrsmYda)Y^8fpRwx>BHV1e>!4QtD^QiktMrnt7<0@EDWxZpxJY0`!LaCf}L?? z3dE7oK>v`w_kRsV4ezf%W3JV}Wjs99hgVVR%xVz|H@7WUC;rF@W9qXFm7K|L!NW8j zj?o7jS~)o+j~yUK*P*lU?-=B-N!9`I(0(e6I4FNp$s|g1&lyrm^Le{g9o;p9(ENhN yw2)#yJLu8=PKH^BwH$R)(RigK>!CB>&tK>attifP_5o@W_kbPkje%X>VO#7-1b_TxOQYGMFsH#`~@?g zzz-m#ZhQb@VD8QUu0u=2_I&s5?!D)zDGhXlwg;5o^f*fdry-7s1Th8?Mok$KzB}Ic z{Ei@8kYv(^G0+pv24t8DoDj~uHw(QNki+l@E-_8PTOR@g)r9j!$*;`2GRD1(60Av} zgEnE2o~YX?>1)*36d-vj6c2<{+jX_M+OqBGoI0jglec%mihwwrrv&h-IuBEqu6{-6F}sit04S>%Q6nN3qv2ZUitZk0g2=fUiv z@(43L1fdIFg~xOM3;F*4HG%T*G5xk&qoI}o?aPZvoF#KuM1{NimMhclG6@}Oh@50W z^0sW#+sGGIY||~&teUk`^ow)sAFFT8O_ZdHBFzN*>ipNsOq~x(0BE`K~De$IUlZZhM;Y$YN zVLy^1JJG6T(V2}pD;kZ;G~rO2NJ(4mF7#@(``-_Ls=o7;qPwTR6z#+5N2tdl#Mpep zE7r(EI}vj5gp?{3DJ`*Wzm!|d_fJqCMKXUlc;nCKY+6kcpiE@b?Yg=-jHHO8pG45^ z`Q?VNI2KZzqqYU+sbqTpjDGNb4W}Fa-@knDoenL-_{F{uiyXB+mnHMk&wN z+*Wh$YXRZq1)UYCjmN19Nu1)*76d-vj6c2<{+jX_I+P19e?d0B?bA5p9h_LLi_ov@qs%g|zAbBBsX3G?{0b!VuTP0BM zc`!p%8DWNpAaud4@_6olA>aGI##bIbrr$-!XsTsE`|@HEXUQCvP~q;r?Z`A-CZR(O zkew_@?v`b`8~MVDWjcj=v0mIRd8Ik_j?qz`P?jo+G!yKp^ItDBb>1%v!16ccMn!#* LR4%j$&+v^Oagw;N diff --git a/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta1.PriorityLevelConfiguration.yaml b/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta1.PriorityLevelConfiguration.yaml deleted file mode 100644 index f185e6dbce..0000000000 --- a/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta1.PriorityLevelConfiguration.yaml +++ /dev/null @@ -1,56 +0,0 @@ -apiVersion: flowcontrol.apiserver.k8s.io/v1beta1 -kind: PriorityLevelConfiguration -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - exempt: - lendablePercent: 2 - nominalConcurrencyShares: 1 - limited: - assuredConcurrencyShares: 1 - borrowingLimitPercent: 4 - lendablePercent: 3 - limitResponse: - queuing: - handSize: 2 - queueLengthLimit: 3 - queues: 1 - type: typeValue - type: typeValue -status: - conditions: - - lastTransitionTime: "2003-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue diff --git a/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta2.FlowSchema.json b/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta2.FlowSchema.json deleted file mode 100644 index 9270c20610..0000000000 --- a/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta2.FlowSchema.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "kind": "FlowSchema", - "apiVersion": "flowcontrol.apiserver.k8s.io/v1beta2", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "priorityLevelConfiguration": { - "name": "nameValue" - }, - "matchingPrecedence": 2, - "distinguisherMethod": { - "type": "typeValue" - }, - "rules": [ - { - "subjects": [ - { - "kind": "kindValue", - "user": { - "name": "nameValue" - }, - "group": { - "name": "nameValue" - }, - "serviceAccount": { - "namespace": "namespaceValue", - "name": "nameValue" - } - } - ], - "resourceRules": [ - { - "verbs": [ - "verbsValue" - ], - "apiGroups": [ - "apiGroupsValue" - ], - "resources": [ - "resourcesValue" - ], - "clusterScope": true, - "namespaces": [ - "namespacesValue" - ] - } - ], - "nonResourceRules": [ - { - "verbs": [ - "verbsValue" - ], - "nonResourceURLs": [ - "nonResourceURLsValue" - ] - } - ] - } - ] - }, - "status": { - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "lastTransitionTime": "2003-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta2.FlowSchema.pb b/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta2.FlowSchema.pb deleted file mode 100644 index e62f711aebf5d7507fb3a1bb1ff2bd29737e404a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 686 zcmZ8f%}(1u5Vk|4CKGVXiUTqiwBnRQ082;_5<<#>N-e4o&>pz0!-SeRyVkA^0>lgO z796WSLSFz?;vK3UdM$SjFj+gn;x<3u%zpEIJL(w+LRcFn>T;lDrd84vX>3qmpze-( zrW>pEi_Hi#5i-~#)Y0HOjs^Q)hd(uFN-@T7BFT|0o}ol7GW;?v1>U4hnRPIMZ1d}^a`NuyD@CLC%LD`~5}5B)~t@&4bhy6=3V=;zaKiVomp8JdZRFfpI; zinWT+PDC6$A*IShMoVnlujCeUz6H%uEQ^POH~xIarqdg)-Z9sNLN5eUnEsC9J3q zF0?8l`?Y}5Y&yn&xX`bh!>ZT`a^?jmN19Nuf?er+W>2Q_`PD4B-62u5Zm_#xpe0Q`T zLy8-o-xh=ml8#$20(!z(kMuKvQ^J||W}){2au^=KC8im8>wRFLns7cZ`IT8$4sj=^ z1Zxs#uSHm*C+c=ax*9b$1xTI=#RDPLc3q8Do3=f9{CqCD#;HP2(^rMs=&FVsiesSi z48~q5hk7CoPz5u_Q!P=q-KDqYTpu7OAuK=a|LG4FYU))L$g+?esPBVV|27kC`lDXmJ9aP`LCC$IvZv@5fM7@dM0u3RzF`=fAxJm>>39;uri3%SzpOitGF$a$e=z&-5z#L zJ5sBsYayoM3xltO`rbdmkzh|%xUWE6iV^-2afWRE7$s_v;@+ebc;l`~L_de{IfL{;ZU1MNn7oH>eXs@{~oWazOzly)$=Vy`*64j^;m=$n;kr7 zjXbmyAqP)LsZx>B65IAmxyAfmhx#y*`NP3Ge?Dc?YLWnDBA?x^tDA#Jia5F;f_Bee zH-y=dkm4A%Eig|dqEzQ+N0hd@zH(H`x{dxgF+*F^|swrd5{YdEiYb<@vJP zYEFGEAiTVwvmli`C=C61uv=iZV6#M>H4M3w6+Kes<>r}`;SG(#6d#~9OTWjEz*gVD G;m#ZRg6l8< diff --git a/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta3.FlowSchema.yaml b/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta3.FlowSchema.yaml deleted file mode 100644 index 7e5c4329c0..0000000000 --- a/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta3.FlowSchema.yaml +++ /dev/null @@ -1,72 +0,0 @@ -apiVersion: flowcontrol.apiserver.k8s.io/v1beta3 -kind: FlowSchema -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - distinguisherMethod: - type: typeValue - matchingPrecedence: 2 - priorityLevelConfiguration: - name: nameValue - rules: - - nonResourceRules: - - nonResourceURLs: - - nonResourceURLsValue - verbs: - - verbsValue - resourceRules: - - apiGroups: - - apiGroupsValue - clusterScope: true - namespaces: - - namespacesValue - resources: - - resourcesValue - verbs: - - verbsValue - subjects: - - group: - name: nameValue - kind: kindValue - serviceAccount: - name: nameValue - namespace: namespaceValue - user: - name: nameValue -status: - conditions: - - lastTransitionTime: "2003-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue diff --git a/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.json b/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.json deleted file mode 100644 index 9bcd0b5ab2..0000000000 --- a/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "kind": "PriorityLevelConfiguration", - "apiVersion": "flowcontrol.apiserver.k8s.io/v1beta3", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "type": "typeValue", - "limited": { - "nominalConcurrencyShares": 1, - "limitResponse": { - "type": "typeValue", - "queuing": { - "queues": 1, - "handSize": 2, - "queueLengthLimit": 3 - } - }, - "lendablePercent": 3, - "borrowingLimitPercent": 4 - }, - "exempt": { - "nominalConcurrencyShares": 1, - "lendablePercent": 2 - } - }, - "status": { - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "lastTransitionTime": "2003-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.pb b/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.pb deleted file mode 100644 index f7d8d446bbcb5ae53a77dc4c377af7b60eb47d9b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 547 zcmZ8eu};G<5KY<&61S8P7^<+Kh^a$>BBTllA(ag()B!QDIqkJFaqY-XiVETf_zPw} zfgeCf-S_~+z}%eyT!)s3?fLHA-FwebQyQp+w)>RdbU8}|rvZ+M1Tg{;L`@kGzBAej zA;J5u*AavZl8oCh0(!z(pA1rg6T+GMRz&XwWHUU3OH5O6*9O2qHQ{_-@~X40jBz)k z_$v}2K7Yfqbg>MCt9LzJGr;!Tpu7iA}l-X{pt4?YU-;hki3vxvuTReK4F-WTP0BM zc`!p%8DfS9Aaud4@_6QdF5mmV##bIbCf`NJXsBgCd-7r&XUQCvP~q;r<;XN#B%wnM zke$p)?xtnB>-oZxWjcjgu~ytFd8HZlj?qz`P?jo+G!yKp^ItDhb>1%v!16ccdPRMa LR4%j$&+v^Ob%MCD diff --git a/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.yaml b/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.yaml deleted file mode 100644 index 2bb7ded37f..0000000000 --- a/testdata/v1.31.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.yaml +++ /dev/null @@ -1,56 +0,0 @@ -apiVersion: flowcontrol.apiserver.k8s.io/v1beta3 -kind: PriorityLevelConfiguration -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - exempt: - lendablePercent: 2 - nominalConcurrencyShares: 1 - limited: - borrowingLimitPercent: 4 - lendablePercent: 3 - limitResponse: - queuing: - handSize: 2 - queueLengthLimit: 3 - queues: 1 - type: typeValue - nominalConcurrencyShares: 1 - type: typeValue -status: - conditions: - - lastTransitionTime: "2003-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue diff --git a/testdata/v1.31.0/imagepolicy.k8s.io.v1alpha1.ImageReview.json b/testdata/v1.31.0/imagepolicy.k8s.io.v1alpha1.ImageReview.json deleted file mode 100644 index c05070e537..0000000000 --- a/testdata/v1.31.0/imagepolicy.k8s.io.v1alpha1.ImageReview.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "kind": "ImageReview", - "apiVersion": "imagepolicy.k8s.io/v1alpha1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "containers": [ - { - "image": "imageValue" - } - ], - "annotations": { - "annotationsKey": "annotationsValue" - }, - "namespace": "namespaceValue" - }, - "status": { - "allowed": true, - "reason": "reasonValue", - "auditAnnotations": { - "auditAnnotationsKey": "auditAnnotationsValue" - } - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/imagepolicy.k8s.io.v1alpha1.ImageReview.pb b/testdata/v1.31.0/imagepolicy.k8s.io.v1alpha1.ImageReview.pb deleted file mode 100644 index b71c3c9ceaad4f2fa6b596b5047a23cb0164cfbb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 541 zcma)3%}&BV5N?6QvLMu|iK(|9i9sPDX-quG&7T-!j0bO17;x>fZFXA>8ehP-@a!Y_ z1}40N@xa+P&}A!#oVi`GAT_d02hhhjVze`=hrX=SXm{8E7T-X_DIHCV z7dWJN=S=eCJx7Wh26zQ5MQ5##90eqJHly6iv?^ohWG&vRMAkc{Jk%34E2UkHni~RT zlnT{{Lehw9)?aB`*7$kyTCj~{g^C#teDlo?d|{wnV$2N8aRq? zaKo|M3FEjA9pHj6>OAGpM+Oxr9zq94DL5N_pulkg=X1!lrdbi=t}gM`1w_3wLIJnxb2#m`Y2y z0vwCQ)BWXS^>+W#cyfo&$xqfcnvx8nP+X2eKpY)vZbQ7 zy36sQ9##R`Wg(&cRiW-y2ol9XG&fRf^)}T}!&$8c9kDr3TbGn cyQS5XX~RX)>BNh6)lWLcmK8RSRO(TYC^c5D((Pi)`C%U7PNP-9)M43wZJs zJo^Z~fzWpl58eddKsUSg1M%o>c4qd!zyHkkYQlhJC{i3>Gu|V#Tj|wAg|OADbuYI^ zyBrJQJoO&p2?Jn-gpsBSa^$RkQwjAALG z%I?%z^;~X%Ej{Un{Rw|CrYRRtM5aO3%$msy9YRq^ZX}@6xi_0I-$xX6F;@vM&!W`- z2;cuL6G#tl!><|Fs7f&$w#CUH(v#WFLgx0a?uw*2o`f3ehY1aT1sqAV%UKfXm;N^3 zPjADSI=C6H1aQGbtkJ!Kz%7pB$)X~#)3R1?0fKX|BNSig#D5U@PO3LH94yLjmHwkf sh=iDc?7$XmLXP|xbyBMI6Dg3OWSO25aTc={3suSo%sJBw@QuLu1{;OzG5`Po diff --git a/testdata/v1.31.0/networking.k8s.io.v1.Ingress.yaml b/testdata/v1.31.0/networking.k8s.io.v1.Ingress.yaml deleted file mode 100644 index b01d1b3445..0000000000 --- a/testdata/v1.31.0/networking.k8s.io.v1.Ingress.yaml +++ /dev/null @@ -1,75 +0,0 @@ -apiVersion: networking.k8s.io/v1 -kind: Ingress -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - defaultBackend: - resource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - service: - name: nameValue - port: - name: nameValue - number: 2 - ingressClassName: ingressClassNameValue - rules: - - host: hostValue - http: - paths: - - backend: - resource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - service: - name: nameValue - port: - name: nameValue - number: 2 - path: pathValue - pathType: pathTypeValue - tls: - - hosts: - - hostsValue - secretName: secretNameValue -status: - loadBalancer: - ingress: - - hostname: hostnameValue - ip: ipValue - ports: - - error: errorValue - port: 1 - protocol: protocolValue diff --git a/testdata/v1.31.0/networking.k8s.io.v1.IngressClass.json b/testdata/v1.31.0/networking.k8s.io.v1.IngressClass.json deleted file mode 100644 index 99065b04ec..0000000000 --- a/testdata/v1.31.0/networking.k8s.io.v1.IngressClass.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "kind": "IngressClass", - "apiVersion": "networking.k8s.io/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "controller": "controllerValue", - "parameters": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue", - "scope": "scopeValue", - "namespace": "namespaceValue" - } - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/networking.k8s.io.v1.IngressClass.pb b/testdata/v1.31.0/networking.k8s.io.v1.IngressClass.pb deleted file mode 100644 index 1f883673983eec5d648e44c34fbafc3fb0b5df87..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 490 zcmZuuJ5Iwu5OqEh$&in+QXrQWm5Tt8kSsbvf%phfL=<#uXJaki>{>f^P(WOOTTpWX z#0`*g2Sh>54PdiYLKM-xoq6--z1bu{3wEF*Xm%%6!bIFn0_-xmJK1*{ry^Dq@t6}t z=d}VKWvB}>rq_h$)Y*!upo(Pla#3x!A8GUn>~NMRc-4`qnGb@jjrHk8|s{dl;b&_I-3PF6QKt!B81FHrbSHKUU?hN z?E%zvuwt?M=ighp@!KS2t48)pK}oeoOc2iQwLzovR0^RnCW6FNnS#@j={*0!zPm2t z=?tH4?>98A;VGKWj-<$xdvJ3>`;Kn!e7>K2pKj_jlm5Gw;;0W&)b ze}L3aKtc@6`~f&NEfsSow)6S<-rchu`CJ2Aph-}AL0N>!q!anPgXzv}&#?xI9nu(w zxpP|uZzW(7I7KHg&XBV?K?E_FqQQc4>%}flV5mwwi=%kl$0U*`+D3*)5_Ovlahfqv zhZx6{NY=0R3}gQA@m#UBLxCPYUj!P0(-tse7@(LRq1>q{C{F|)s6#?%3R58>x9yd+ ztU2EYrbwn5yTAUurJHsGCV17zuI}rsF~$VO_(~X*I(K>iHl~ok31X6P>NF|xFYLR2 zWjvALeg0LpwXP6D@rWPiiJHto1(dFDdN$939Uq|-h=Oj7U(DjouC;4}0^$PPfr6SN za08^=0Z~wM1K6yU575o~&6}AtR2FQ3&oRFhGNnA}q@n6iv3=7eEW09I&psR+#IZ!B zyr&wxSHb3Fgy)16=&dKnQIZ@_XD#2EPE|%O%ax$1kPS~LPt8TUQP9|+-iD?Wh17c} z6&2ic!*LJeULAd#ZT${)>N<9`7!?D$q-{Q%x9 Bp%efB diff --git a/testdata/v1.31.0/networking.k8s.io.v1alpha1.IPAddress.yaml b/testdata/v1.31.0/networking.k8s.io.v1alpha1.IPAddress.yaml deleted file mode 100644 index 0bf2b17cb8..0000000000 --- a/testdata/v1.31.0/networking.k8s.io.v1alpha1.IPAddress.yaml +++ /dev/null @@ -1,40 +0,0 @@ -apiVersion: networking.k8s.io/v1alpha1 -kind: IPAddress -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - parentRef: - group: groupValue - name: nameValue - namespace: namespaceValue - resource: resourceValue diff --git a/testdata/v1.31.0/networking.k8s.io.v1alpha1.ServiceCIDR.json b/testdata/v1.31.0/networking.k8s.io.v1alpha1.ServiceCIDR.json deleted file mode 100644 index cd77b39a0f..0000000000 --- a/testdata/v1.31.0/networking.k8s.io.v1alpha1.ServiceCIDR.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "kind": "ServiceCIDR", - "apiVersion": "networking.k8s.io/v1alpha1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "cidrs": [ - "cidrsValue" - ] - }, - "status": { - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "observedGeneration": 3, - "lastTransitionTime": "2004-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/networking.k8s.io.v1alpha1.ServiceCIDR.pb b/testdata/v1.31.0/networking.k8s.io.v1alpha1.ServiceCIDR.pb deleted file mode 100644 index 970393e6fae7b73bd208f08e7c39637234fb65c7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 490 zcmZ8eJ5Iwu6m&ik@j4{NqKI6&BSj#QkSv;rK*L7}0ivLLPF}*|&Dz?vg973L+=7~x zjvFB54v2!98^C6rpXg@aXWq2tba;*s5k1Rl=d`gZ3>i8 zD%2bbNh7YS{#vJ0n!J3!7j5HMq1T@eh0e)MjhGAqWby>Zj+H^Z5qP8moJR>HibS{V zmA9U`+a;!QmmPMO`n`pkdKF^2Dr6_;=R~znIWYR51Ztk=TtLc0;4na;3r;19r~c>i z-TyS6^6)kJE!aj&ks<5Jt8ttqvsWbf$ES`h(_oQ=4z)~3m-c2S-F?y~W-?!LEUAp9 bnVec-Nnf`Ff}Ew;DyuJ$N~IR*8lLe7;gG2b diff --git a/testdata/v1.31.0/networking.k8s.io.v1alpha1.ServiceCIDR.yaml b/testdata/v1.31.0/networking.k8s.io.v1alpha1.ServiceCIDR.yaml deleted file mode 100644 index 4bf6b492dc..0000000000 --- a/testdata/v1.31.0/networking.k8s.io.v1alpha1.ServiceCIDR.yaml +++ /dev/null @@ -1,45 +0,0 @@ -apiVersion: networking.k8s.io/v1alpha1 -kind: ServiceCIDR -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - cidrs: - - cidrsValue -status: - conditions: - - lastTransitionTime: "2004-01-01T01:01:01Z" - message: messageValue - observedGeneration: 3 - reason: reasonValue - status: statusValue - type: typeValue diff --git a/testdata/v1.31.0/networking.k8s.io.v1beta1.IPAddress.json b/testdata/v1.31.0/networking.k8s.io.v1beta1.IPAddress.json deleted file mode 100644 index 68b4d2e1ba..0000000000 --- a/testdata/v1.31.0/networking.k8s.io.v1beta1.IPAddress.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "kind": "IPAddress", - "apiVersion": "networking.k8s.io/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "parentRef": { - "group": "groupValue", - "resource": "resourceValue", - "namespace": "namespaceValue", - "name": "nameValue" - } - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/networking.k8s.io.v1beta1.IPAddress.pb b/testdata/v1.31.0/networking.k8s.io.v1beta1.IPAddress.pb deleted file mode 100644 index 2f1f28ce8668a9307fa0ee7c118f7d2617faf5a9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 464 zcmZWlJ5Iwu6tt5_*bm|uivnD_phyu&B#=c%IzB=v5Cz>DzgUZ%U2E3{1;hoo0|hll z;08#!1EQej2C!KxAE2A}n>RCQC=J+#Er!J{7b#^)CkaoAjAI#OXTO_B;LUzs26s;j;B%^mqpyqirBUl>|MiLad;W<2?`k%@7|I!4? z!^h;i?ixKshFL7n$9a{^K?7>{4}Djb(L4zqY6$xPiQr{k{b>Fg{|k6w$2S7w2OQ3z Ar~m)} diff --git a/testdata/v1.31.0/networking.k8s.io.v1beta1.IPAddress.yaml b/testdata/v1.31.0/networking.k8s.io.v1beta1.IPAddress.yaml deleted file mode 100644 index b16eff5d7f..0000000000 --- a/testdata/v1.31.0/networking.k8s.io.v1beta1.IPAddress.yaml +++ /dev/null @@ -1,40 +0,0 @@ -apiVersion: networking.k8s.io/v1beta1 -kind: IPAddress -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - parentRef: - group: groupValue - name: nameValue - namespace: namespaceValue - resource: resourceValue diff --git a/testdata/v1.31.0/networking.k8s.io.v1beta1.Ingress.json b/testdata/v1.31.0/networking.k8s.io.v1beta1.Ingress.json deleted file mode 100644 index 7a95be4a58..0000000000 --- a/testdata/v1.31.0/networking.k8s.io.v1beta1.Ingress.json +++ /dev/null @@ -1,105 +0,0 @@ -{ - "kind": "Ingress", - "apiVersion": "networking.k8s.io/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "ingressClassName": "ingressClassNameValue", - "backend": { - "serviceName": "serviceNameValue", - "servicePort": "servicePortValue", - "resource": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue" - } - }, - "tls": [ - { - "hosts": [ - "hostsValue" - ], - "secretName": "secretNameValue" - } - ], - "rules": [ - { - "host": "hostValue", - "http": { - "paths": [ - { - "path": "pathValue", - "pathType": "pathTypeValue", - "backend": { - "serviceName": "serviceNameValue", - "servicePort": "servicePortValue", - "resource": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue" - } - } - } - ] - } - } - ] - }, - "status": { - "loadBalancer": { - "ingress": [ - { - "ip": "ipValue", - "hostname": "hostnameValue", - "ports": [ - { - "port": 1, - "protocol": "protocolValue", - "error": "errorValue" - } - ] - } - ] - } - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/networking.k8s.io.v1beta1.Ingress.pb b/testdata/v1.31.0/networking.k8s.io.v1beta1.Ingress.pb deleted file mode 100644 index 1c582df7cf5f64ec230e992295bed0a0e1e12380..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 733 zcmb`F!A{#i5QgnQ6?=*kv!aMv;$pQI4zwU40=3t zt(Iqur6{GDL#deHR&CYWL2!F zOJ)N<_L8B#Bc!$n$$N+l`=%6S;h6pzmCOSi3Z-2T(p1=ysK?iK4q?@H4nILaAHss_ zLnr)yo+PT=N6Sdxn0Hsbv5lN6HOBe`Yp@D+_BUEoF;)-EVx{wePohE!Ejl8%QUWNY KaF>&KsrLj^Z1{!% diff --git a/testdata/v1.31.0/networking.k8s.io.v1beta1.Ingress.yaml b/testdata/v1.31.0/networking.k8s.io.v1beta1.Ingress.yaml deleted file mode 100644 index 8a8237b25a..0000000000 --- a/testdata/v1.31.0/networking.k8s.io.v1beta1.Ingress.yaml +++ /dev/null @@ -1,69 +0,0 @@ -apiVersion: networking.k8s.io/v1beta1 -kind: Ingress -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - backend: - resource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - serviceName: serviceNameValue - servicePort: servicePortValue - ingressClassName: ingressClassNameValue - rules: - - host: hostValue - http: - paths: - - backend: - resource: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - serviceName: serviceNameValue - servicePort: servicePortValue - path: pathValue - pathType: pathTypeValue - tls: - - hosts: - - hostsValue - secretName: secretNameValue -status: - loadBalancer: - ingress: - - hostname: hostnameValue - ip: ipValue - ports: - - error: errorValue - port: 1 - protocol: protocolValue diff --git a/testdata/v1.31.0/networking.k8s.io.v1beta1.IngressClass.json b/testdata/v1.31.0/networking.k8s.io.v1beta1.IngressClass.json deleted file mode 100644 index 8fd98672b1..0000000000 --- a/testdata/v1.31.0/networking.k8s.io.v1beta1.IngressClass.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "kind": "IngressClass", - "apiVersion": "networking.k8s.io/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "controller": "controllerValue", - "parameters": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue", - "scope": "scopeValue", - "namespace": "namespaceValue" - } - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/networking.k8s.io.v1beta1.IngressClass.pb b/testdata/v1.31.0/networking.k8s.io.v1beta1.IngressClass.pb deleted file mode 100644 index 72f1d490426487d23c8b48dc14d5f1894dd4e868..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 495 zcmZuuJ5Iwu5OqEh$&!z;D8QvVTm%vc$)Y0^h>s9OL_xQ9Cf4H3uC-%>0^$PPf|?T` zZh(|KAPQ=30GqWEqKNM8%$qmw%_ad_WQS}E$nK;{n20+`fE^}xZ@VF6wCglZM63Yu zh*L!8wL(71q%PGk-bt-Qtc5Fl(Tzn(C9psLedyhL1R#+;Iw2q%Rjg8 zuF7~i!{_v;Vp}~e27HKvNm^Xypi0UQk9`~SaB&H9)B$NnQe;YUK3{W4n%dv7l6hL} T{XY)DNc%Aif8`%s%d>s~Whty@ diff --git a/testdata/v1.31.0/networking.k8s.io.v1beta1.IngressClass.yaml b/testdata/v1.31.0/networking.k8s.io.v1beta1.IngressClass.yaml deleted file mode 100644 index a8fd20df75..0000000000 --- a/testdata/v1.31.0/networking.k8s.io.v1beta1.IngressClass.yaml +++ /dev/null @@ -1,42 +0,0 @@ -apiVersion: networking.k8s.io/v1beta1 -kind: IngressClass -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - controller: controllerValue - parameters: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue - namespace: namespaceValue - scope: scopeValue diff --git a/testdata/v1.31.0/networking.k8s.io.v1beta1.ServiceCIDR.json b/testdata/v1.31.0/networking.k8s.io.v1beta1.ServiceCIDR.json deleted file mode 100644 index 2fdd547009..0000000000 --- a/testdata/v1.31.0/networking.k8s.io.v1beta1.ServiceCIDR.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "kind": "ServiceCIDR", - "apiVersion": "networking.k8s.io/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "cidrs": [ - "cidrsValue" - ] - }, - "status": { - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "observedGeneration": 3, - "lastTransitionTime": "2004-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/networking.k8s.io.v1beta1.ServiceCIDR.pb b/testdata/v1.31.0/networking.k8s.io.v1beta1.ServiceCIDR.pb deleted file mode 100644 index 5b45721bd271377b90de0123b68f7f3e73430230..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 489 zcmZ8eJ5Iwu6m&ik@v}*cMG;)OLMZ}?gk+^b1R6d<2oMF`+IfibZUCEgexjRwpLsL0p(ixhhAoEaeau732F=hDO&afvT0W+vWgAz>M>N30 z0!x4T&Yq^-s*Oe^qdkS%n;b=) zaXE)v(3q*Jx7MvxCNJObWlKAe==JAAq6@gKgB}qdBXNpj+sL8X@Li}9#^RKul0>zw zmA9I?+XG#i%MUwC{q90dqec?CDrC3d6?m;r8HwnF6sUNf3qF`b!pH!*D%jOHnfjm0 zcmC73(!2CRX}g@>)6D_c}-j<@W}X~JVV!aYW$v_JCj zwge?kMtDJ3f_8m~93v9r@r-iJRFxqaWG!x0BJ+F`=GDokoOGB$4XFNK(Ny z+g<4ui_@pimx5&+DD?dGs?Z5su0n~CJ~DZT6T6&2{i5%JNjMiViIs_#t%X|m-0VOp zpgbGw{N;D&X__?>(#0U{TsIfhe98%iZI=O7T@`Avt-hrUqT)dnC4ST{s>!`uF53R5#T7++oJD5h-xMP=3Q{2X* z{gp%SOQ^{32re*9!LAR1L5vePo~4{>RuvH*=oYskfCfi|g=(T%NQtjdw-JNjX)OC7 z7KAgE?XC0+h3WI>Yu+*rBzpONljsCpuAw5u9#C-z6T76Ln($my#f!t%X?i z+-##_NSI#i{ONb+YMM11kwqbGvuDP&fG|wSofN2eo=gvwN0{Lu#42G|d6eBhlkfbe zapesk)1RDWbR`*3Uz|@O?aWRdE!{u#Es=V2CzPp=CR&ZP?faPdbhfL3Y*dQ4zejGt z&uqvcv+Z2T-_^3;odJbG!sDz`UrcDFTc{AiMB|E9&Giuu8fSY|$t^(;NE#JvEIWp4 F`~q>}xyb+k diff --git a/testdata/v1.31.0/node.k8s.io.v1alpha1.RuntimeClass.yaml b/testdata/v1.31.0/node.k8s.io.v1alpha1.RuntimeClass.yaml deleted file mode 100644 index 5d76039898..0000000000 --- a/testdata/v1.31.0/node.k8s.io.v1alpha1.RuntimeClass.yaml +++ /dev/null @@ -1,48 +0,0 @@ -apiVersion: node.k8s.io/v1alpha1 -kind: RuntimeClass -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - overhead: - podFixed: - podFixedKey: "0" - runtimeHandler: runtimeHandlerValue - scheduling: - nodeSelector: - nodeSelectorKey: nodeSelectorValue - tolerations: - - effect: effectValue - key: keyValue - operator: operatorValue - tolerationSeconds: 5 - value: valueValue diff --git a/testdata/v1.31.0/node.k8s.io.v1beta1.RuntimeClass.json b/testdata/v1.31.0/node.k8s.io.v1beta1.RuntimeClass.json deleted file mode 100644 index 720d8c5eb9..0000000000 --- a/testdata/v1.31.0/node.k8s.io.v1beta1.RuntimeClass.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "kind": "RuntimeClass", - "apiVersion": "node.k8s.io/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "handler": "handlerValue", - "overhead": { - "podFixed": { - "podFixedKey": "0" - } - }, - "scheduling": { - "nodeSelector": { - "nodeSelectorKey": "nodeSelectorValue" - }, - "tolerations": [ - { - "key": "keyValue", - "operator": "operatorValue", - "value": "valueValue", - "effect": "effectValue", - "tolerationSeconds": 5 - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/node.k8s.io.v1beta1.RuntimeClass.pb b/testdata/v1.31.0/node.k8s.io.v1beta1.RuntimeClass.pb deleted file mode 100644 index 1233b744b6cbca8bd5fbe5fadeccc351963430f2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 533 zcmZ8eJ5Iwu5Vc7V$>isl6v(BaKq*2JffP{&i2@KpfG7~nIv$6`n_bImM+C$LxCJ#w z;08#!144qD8-TqgA)r%KEp|mB^NuL@)r)2!rmjNWMu<|xVbX`8 zq=GB9x6&^Zrca+Qc|$u$(DT=8f==La4T_97$mAhT%u)u`3&(~k;ao%{N=%e&EYzy! zW(SHs<=J5CFTXuc)2xwzE(U4qJw2>>loLkpl7PzRQFov`BAg5{RD@X-LAw7ezV+Y6 zPIh>oe&-CWo0uVU<@qGYF0-45rTd4zA!BEL33b%+HQ_G%onSSgk05vEFgk;w9GL&3*MhAUZCkwv#)oK91cT|&=GY*ewiY-zUk11y%c AB<-MzFW_5v_Tt?) z5cUq@!Lx6mY0BylZ{Pg>etzF%p)|lQuz5~NTpcWqpmn++aY1qhU%KGE18j!o_!`j? z!|fC^EKq?jRw2)+vy!8@De<=?rn7UxGTjkaB}udz?FcOMQm8sCq?)dy;l|jqmQSCr zJ=Zu>>iO$UsVTS_0-K@;Q#rvE>^D+(L_Tm3V|jsUM4fim-n!=Y7}yzM&0_DD-*0Jx z0pesGYMs!gPAn7dgBA_`Yt+#6_qfP8O7-@s{w>WE^b=8CmW`jD;Tu09 Cq@gze diff --git a/testdata/v1.31.0/policy.v1.Eviction.yaml b/testdata/v1.31.0/policy.v1.Eviction.yaml deleted file mode 100644 index ac359dbed1..0000000000 --- a/testdata/v1.31.0/policy.v1.Eviction.yaml +++ /dev/null @@ -1,43 +0,0 @@ -apiVersion: policy/v1 -deleteOptions: - dryRun: - - dryRunValue - gracePeriodSeconds: 1 - orphanDependents: true - preconditions: - resourceVersion: resourceVersionValue - uid: uidValue - propagationPolicy: propagationPolicyValue -kind: Eviction -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue diff --git a/testdata/v1.31.0/policy.v1.PodDisruptionBudget.json b/testdata/v1.31.0/policy.v1.PodDisruptionBudget.json deleted file mode 100644 index 0fb410fd8e..0000000000 --- a/testdata/v1.31.0/policy.v1.PodDisruptionBudget.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "kind": "PodDisruptionBudget", - "apiVersion": "policy/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "minAvailable": "minAvailableValue", - "selector": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "maxUnavailable": "maxUnavailableValue", - "unhealthyPodEvictionPolicy": "unhealthyPodEvictionPolicyValue" - }, - "status": { - "observedGeneration": 1, - "disruptedPods": { - "disruptedPodsKey": null - }, - "disruptionsAllowed": 3, - "currentHealthy": 4, - "desiredHealthy": 5, - "expectedPods": 6, - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "observedGeneration": 3, - "lastTransitionTime": "2004-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/policy.v1.PodDisruptionBudget.pb b/testdata/v1.31.0/policy.v1.PodDisruptionBudget.pb deleted file mode 100644 index b54b69b357031b18c2f6391a8fc2d02bc7acb857..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 665 zcmZ8fJx=356t+oru_q9WK_a+Wl2P6kkXrNGIIYAL+ ziR{BfNDftP&bBP;>Gt)Z>=*|U-M>Fd)FEdzVl(I>6Ni|)6%Eyku1~7Kd6YsSR9!n$ zXVvp}i`YZTHL>@t-=C0HlGg&yN92mWn0@a)wvrFbe;LyiJ72IkR7yifc zz5mDf(!-Pe~A2F86P09bdbwM z*dNhe;jyFEL(TQTGTmk31bRm>kZme_qgGlgZ~WN&xxGW|bZpkG2>C&o=B<^!W2sjX T1o8FzjXAkGLZ+)J4Bz+!{r2Ic diff --git a/testdata/v1.31.0/policy.v1.PodDisruptionBudget.yaml b/testdata/v1.31.0/policy.v1.PodDisruptionBudget.yaml deleted file mode 100644 index e51af35c18..0000000000 --- a/testdata/v1.31.0/policy.v1.PodDisruptionBudget.yaml +++ /dev/null @@ -1,61 +0,0 @@ -apiVersion: policy/v1 -kind: PodDisruptionBudget -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - maxUnavailable: maxUnavailableValue - minAvailable: minAvailableValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - unhealthyPodEvictionPolicy: unhealthyPodEvictionPolicyValue -status: - conditions: - - lastTransitionTime: "2004-01-01T01:01:01Z" - message: messageValue - observedGeneration: 3 - reason: reasonValue - status: statusValue - type: typeValue - currentHealthy: 4 - desiredHealthy: 5 - disruptedPods: - disruptedPodsKey: null - disruptionsAllowed: 3 - expectedPods: 6 - observedGeneration: 1 diff --git a/testdata/v1.31.0/policy.v1beta1.Eviction.json b/testdata/v1.31.0/policy.v1beta1.Eviction.json deleted file mode 100644 index 6abf803d6b..0000000000 --- a/testdata/v1.31.0/policy.v1beta1.Eviction.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "kind": "Eviction", - "apiVersion": "policy/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "deleteOptions": { - "gracePeriodSeconds": 1, - "preconditions": { - "uid": "uidValue", - "resourceVersion": "resourceVersionValue" - }, - "orphanDependents": true, - "propagationPolicy": "propagationPolicyValue", - "dryRun": [ - "dryRunValue" - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/policy.v1beta1.Eviction.pb b/testdata/v1.31.0/policy.v1beta1.Eviction.pb deleted file mode 100644 index df6e8fc884e1911cadc45d87c7665a5f4dd5dabc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 471 zcmZvZPfEi;6vmUbU^3M-4k9Hh$+8=5K`1T@ZmdWVapCTzeJx|BlVK()MDYUN!nGUs z-azOb#D!~bpwkJhMcjS!{{G%K)2?<%L;{&|HY^V3?F2JuQ}1-nh8ar*eW{Z73h@QZ z@EUlIba#RR6=Zm^3Pr&(t0fG}l6XfWAD=TZwH+-lXCtdRdkS@$D^rI`o9Q;%-RgPX z;_36X7CL7}J%7C!H6S-l;&Vul>pm8=UP{}M#3TSA(hQb}HXUxfZO!d5@uy6bi=$uu zcumu4fMlB>M{d_ujWH9z*_{Eja~|DWab6t)}FI^#5P-AV*+iY&FNvS}L$De49_DjSGU7Qmvr=lC_5dOWr~c2tA7 z0JlIadjxKP)H_rxSh3&+FrI0C=j_MLgnq3!t36wPh|H}5(8M-=Rr ze1^b^StS?Y)tpXhk7KnXYOW8q>Fp6W(mR5YY*XPI-Ntk4=*h|E*-O$a7G^z1$PX$t aZ@00ErRU@b;^FuEEx9^ErmHE8!1xEmh~s+z diff --git a/testdata/v1.31.0/policy.v1beta1.PodDisruptionBudget.yaml b/testdata/v1.31.0/policy.v1beta1.PodDisruptionBudget.yaml deleted file mode 100644 index 5cc8d45587..0000000000 --- a/testdata/v1.31.0/policy.v1beta1.PodDisruptionBudget.yaml +++ /dev/null @@ -1,61 +0,0 @@ -apiVersion: policy/v1beta1 -kind: PodDisruptionBudget -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - maxUnavailable: maxUnavailableValue - minAvailable: minAvailableValue - selector: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue - unhealthyPodEvictionPolicy: unhealthyPodEvictionPolicyValue -status: - conditions: - - lastTransitionTime: "2004-01-01T01:01:01Z" - message: messageValue - observedGeneration: 3 - reason: reasonValue - status: statusValue - type: typeValue - currentHealthy: 4 - desiredHealthy: 5 - disruptedPods: - disruptedPodsKey: null - disruptionsAllowed: 3 - expectedPods: 6 - observedGeneration: 1 diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1.ClusterRole.json b/testdata/v1.31.0/rbac.authorization.k8s.io.v1.ClusterRole.json deleted file mode 100644 index c18c88e41b..0000000000 --- a/testdata/v1.31.0/rbac.authorization.k8s.io.v1.ClusterRole.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "kind": "ClusterRole", - "apiVersion": "rbac.authorization.k8s.io/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "rules": [ - { - "verbs": [ - "verbsValue" - ], - "apiGroups": [ - "apiGroupsValue" - ], - "resources": [ - "resourcesValue" - ], - "resourceNames": [ - "resourceNamesValue" - ], - "nonResourceURLs": [ - "nonResourceURLsValue" - ] - } - ], - "aggregationRule": { - "clusterRoleSelectors": [ - { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1.ClusterRole.pb b/testdata/v1.31.0/rbac.authorization.k8s.io.v1.ClusterRole.pb deleted file mode 100644 index 7ab4355c85204b98a89a7e7751cb5a84d898a83d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 579 zcmZ8eO-{l<7%fO53{q;t!ZfbBaDfRbiAm!U7be;eLzIQPDSW`#GSkeoBw)ONp2D?9 z@CGK_!MJek4Rks~k+^&BoA2knH=!pCbcptOfCnv{CKJZV0w;vgR_KWqVMntQyLuj_ zA_3lG5!lZq^if0=il@-WQ403%7$|U@KsPTrX7(y#JkTv}O+YmA2@Tamvz(HlLhS|z z!BQ^!fD3t4RlV&_xx9S&dMjDRr9`ja?-E_3yFFBiZ~&3Gg1KGQP)!6bGBKqrQOeb` zwZT=-{VA%1gzCf2pMH0(rdh`^*%WeI@Cv*>A{0ktAqA>EPlW*OOfkh{;HqGoEYAGr z@}2){TBasoM&I4Yt05_w6{w4w&$-VyU0f}tSL?g6MvnhwZXNg15^%Su5nHKW7@7$on;DF I`wZ9k1%{o<7ytkO diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1.ClusterRole.yaml b/testdata/v1.31.0/rbac.authorization.k8s.io.v1.ClusterRole.yaml deleted file mode 100644 index 6467543328..0000000000 --- a/testdata/v1.31.0/rbac.authorization.k8s.io.v1.ClusterRole.yaml +++ /dev/null @@ -1,54 +0,0 @@ -aggregationRule: - clusterRoleSelectors: - - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue -apiVersion: rbac.authorization.k8s.io/v1 -kind: ClusterRole -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -rules: -- apiGroups: - - apiGroupsValue - nonResourceURLs: - - nonResourceURLsValue - resourceNames: - - resourceNamesValue - resources: - - resourcesValue - verbs: - - verbsValue diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.json b/testdata/v1.31.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.json deleted file mode 100644 index c7c30cc731..0000000000 --- a/testdata/v1.31.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "kind": "ClusterRoleBinding", - "apiVersion": "rbac.authorization.k8s.io/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "subjects": [ - { - "kind": "kindValue", - "apiGroup": "apiGroupValue", - "name": "nameValue", - "namespace": "namespaceValue" - } - ], - "roleRef": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue" - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.pb b/testdata/v1.31.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.pb deleted file mode 100644 index fef76c0d062fcd4e60abe8768fb0d12b963d7b5f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 512 zcmZvYze)o^5XLWmz+^Saxmd_ybzqYsYCt$FVqx6s) zouRsr99v9unCQ`$0(r}mvVcBb0XIn3dniyrhG(-@P@PP53hk*StZ3xjQzjC(Q7;+R zajLnYP)nn%50$omyKc17DwW2MAJ0YKJGScS^VO&TkFI@Wx z{DBGoU|hKN545xl5_k8Ud+xobr*Wtpbc~K1&1!cRH2I^7U&`_MA&yy?wvy>IU5(qADX1Fm(kpylYD{5e3L4oQu?0Hf?VU8_nZ6 zs>YPt!~UQDVB@AyBMIF$a#{!rvNoceFgn);&7PM+g!U$clQBp`U{@ro_viNg|7!yM zhR@|s$#YtI8L*+coh3Gzb{Q3)o;#k(qD>Me)ILH}kdZx!U2W__iY&3%cXP4D0nYL2 U3oO^DbHRJ-bnklI^`sLxzbb*Og8%>k diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1.Role.yaml b/testdata/v1.31.0/rbac.authorization.k8s.io.v1.Role.yaml deleted file mode 100644 index 38b545cd2c..0000000000 --- a/testdata/v1.31.0/rbac.authorization.k8s.io.v1.Role.yaml +++ /dev/null @@ -1,45 +0,0 @@ -apiVersion: rbac.authorization.k8s.io/v1 -kind: Role -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -rules: -- apiGroups: - - apiGroupsValue - nonResourceURLs: - - nonResourceURLsValue - resourceNames: - - resourceNamesValue - resources: - - resourcesValue - verbs: - - verbsValue diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1.RoleBinding.json b/testdata/v1.31.0/rbac.authorization.k8s.io.v1.RoleBinding.json deleted file mode 100644 index 44f5d01efe..0000000000 --- a/testdata/v1.31.0/rbac.authorization.k8s.io.v1.RoleBinding.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "kind": "RoleBinding", - "apiVersion": "rbac.authorization.k8s.io/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "subjects": [ - { - "kind": "kindValue", - "apiGroup": "apiGroupValue", - "name": "nameValue", - "namespace": "namespaceValue" - } - ], - "roleRef": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue" - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1.RoleBinding.pb b/testdata/v1.31.0/rbac.authorization.k8s.io.v1.RoleBinding.pb deleted file mode 100644 index 078c69e8ee11b8d9c59770de9d1672b90858b9c9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 505 zcmZvYy-EW?6oofGU@|euI#|eJwO|t=YCu>l(+DaeA{KUcvo~?v$;>jdD@pECF`zFc@>V2O0Ykh5o*`Wupg;vFp3X;JW4hG|^kx#ju95don27B~tCF$ER-JW) zT4u`VP-*k2odzr2N@eo+@mzMDBU3$nzMATcTy2mlhY-0w#u2T}N_!Fdqya+6)RNn^ zo9nISW}j4JlX*D5Xd63;gP*BZ26TsQn0NT@sLP%DJAYg#X4roIrQ~z^( zZ}}PDczBShrkQC;z<2>Yg=>%C z4NSO$apBq<=yZl6arfT;fBt{(P1KPVY9U{QFl<7aOt~OSNC;=ms3V(%AJ1Dr<0-V< z$~jGCf<>QG>^>LK#||npnBf7?6uSo#%&>q2_wtfwXI&Y?(2V$1iRm~XEYdF;rId^` zYS#spJQZpV3#m@)YGKCDpY+#Hh zTEA{PTU^iFpQ3U^m^tkI>GwBk8a0T?wvdxTryy!$!hn*c5~%k)6+*N>0|pZ;biuWG zocYh?d;iz?%ERaCXV@d9#R3GG|4!^YGYpWEyUg(4h_xnqv`~lb)@FT?n4W zhWmCtYwHVBM diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.ClusterRole.yaml b/testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.ClusterRole.yaml deleted file mode 100644 index 7f0858f61a..0000000000 --- a/testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.ClusterRole.yaml +++ /dev/null @@ -1,54 +0,0 @@ -aggregationRule: - clusterRoleSelectors: - - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue -apiVersion: rbac.authorization.k8s.io/v1alpha1 -kind: ClusterRole -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -rules: -- apiGroups: - - apiGroupsValue - nonResourceURLs: - - nonResourceURLsValue - resourceNames: - - resourceNamesValue - resources: - - resourcesValue - verbs: - - verbsValue diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.json b/testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.json deleted file mode 100644 index 36534c7ad0..0000000000 --- a/testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "kind": "ClusterRoleBinding", - "apiVersion": "rbac.authorization.k8s.io/v1alpha1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "subjects": [ - { - "kind": "kindValue", - "apiVersion": "apiVersionValue", - "name": "nameValue", - "namespace": "namespaceValue" - } - ], - "roleRef": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue" - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.pb b/testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.pb deleted file mode 100644 index b70e6566de6457cc4886c5b14c75e157cbf57e35..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 520 zcmZvYy-EW?6oofGU^1FyT`XkF1)CJn1jNNM7J`b1h=twVgB4A)0SV2692CNWYz!y|MrQ`lo<0>KvNZ+{LzK4R z)kU)Kzr^>~-vq|P=lrMSIvw*2Szp~ulPsCzGATYhc3q{TRT4JTqa3Wa{xDC!7PY@e SYR1K>6gtW1{x$78f%6Lk^tD9* diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.yaml b/testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.yaml deleted file mode 100644 index 6cdb234124..0000000000 --- a/testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.yaml +++ /dev/null @@ -1,43 +0,0 @@ -apiVersion: rbac.authorization.k8s.io/v1alpha1 -kind: ClusterRoleBinding -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -roleRef: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue -subjects: -- apiVersion: apiVersionValue - kind: kindValue - name: nameValue - namespace: namespaceValue diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.Role.json b/testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.Role.json deleted file mode 100644 index ea4a6c314a..0000000000 --- a/testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.Role.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "kind": "Role", - "apiVersion": "rbac.authorization.k8s.io/v1alpha1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "rules": [ - { - "verbs": [ - "verbsValue" - ], - "apiGroups": [ - "apiGroupsValue" - ], - "resources": [ - "resourcesValue" - ], - "resourceNames": [ - "resourceNamesValue" - ], - "nonResourceURLs": [ - "nonResourceURLsValue" - ] - } - ] -} \ No newline at end of file diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.Role.pb b/testdata/v1.31.0/rbac.authorization.k8s.io.v1alpha1.Role.pb deleted file mode 100644 index 31edb183861a442e11407fd5fcb20d91dd6c9137..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 498 zcmZ8e%T59@6dfLkP<0q5EX*vsoCOMr$;71_6D7tFW#R4)6sS|$NjpOV#vkx6T>A<9 zfeHU$T)6fRw6qKocjw%DdhfZXNu(SUA}nJVv>?wWLed3fRPa_3sTLI{vo^4F0&TzA z6O8!F3i>FcI)^Fg1IvkjG$x!#$jD7m3fy&9r7*A(e5eQ;btzBGi?Ei{p+TLdBueB` z>xfi(r>RDJ7q!~z^=n!6oGXpqzTY*vMGwcQ&LAdCU6Z-LZ=rb+W8?zoA~VKK+uPwr z^LU2p3FUTi@aG?I-GmKD>8_E}QdE+S5#_+>LK`%5UP>`Km;#3}k*46gB3<8K*bn}X z!TN^J)lbE9I(iskLv=S#Z8GOoRDOEC@KhdelQ5z75t!ad3M}U*PO<*W9%vVEh7p3uixq zqnioe!8kbk4fMDMY>3-)@4x#!PaG(VbcruR7<3>@$3oIMq*U-u9H0xo>6iQ6e=C6TAhMp}R9ejuKM5T$Q}$va1ppf-t9wc=Q3TD^R~Yjs8L_DGFEh)kX1%&q6rY=k~(0_P$% z{HE;`-e%_hh}2^3!92V_et%8VZb3qeAcuBf%hr%`V05kl&FYgKlI;m_7@;%;w<(gP z{}sNsdB)csJ{Lb_$Li^0$Rc$!OY&q+Dx~!A*mqPGu9GmK9v5KU&4Weyji|kS($FqW OrO1+;?qAcM%sIDO`I5 zZ(zb5j0@M^K&LYliM#i{`F`Ge6MDixEp)^KJZ$1LnKDk6I3bKSLr*jbJDIlwNO0S( zoJXlhfcIGh_Hz+^?4UBmGZ^3~1^ZwE6gWK3;uAR7CGhH9cwO36r} zPMw2bDVKe~g}kh)-d?vsNtAw3uzU+0d4diY%Z>{>=gE`w+!ZWggl=B$Wz9v-`vNP|rhD%1f&bKrqKX`52m1!rlj zxnt(dn!9$+voFxKMx8R+U#EN9_t%p>zsb_t;@Zj9ee%fUZnRcM*rA z0z$~lxo~TLu6LT7T~bP{2iF8Y{NaqIR)v(!gY4v@oT_%20M3RM(49WyVzSx?0X@&)wH$b%_YJR8v-$u4 diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.ClusterRoleBinding.yaml b/testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.ClusterRoleBinding.yaml deleted file mode 100644 index 5e78834997..0000000000 --- a/testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.ClusterRoleBinding.yaml +++ /dev/null @@ -1,43 +0,0 @@ -apiVersion: rbac.authorization.k8s.io/v1beta1 -kind: ClusterRoleBinding -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -roleRef: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue -subjects: -- apiGroup: apiGroupValue - kind: kindValue - name: nameValue - namespace: namespaceValue diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.Role.json b/testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.Role.json deleted file mode 100644 index 6d7db5102b..0000000000 --- a/testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.Role.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "kind": "Role", - "apiVersion": "rbac.authorization.k8s.io/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "rules": [ - { - "verbs": [ - "verbsValue" - ], - "apiGroups": [ - "apiGroupsValue" - ], - "resources": [ - "resourcesValue" - ], - "resourceNames": [ - "resourceNamesValue" - ], - "nonResourceURLs": [ - "nonResourceURLsValue" - ] - } - ] -} \ No newline at end of file diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.Role.pb b/testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.Role.pb deleted file mode 100644 index e50a66e58fb1a965eeb435bbadd3a95a936d7cd4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 497 zcmZ8e%T59@6dfLkP<0p^7G`$NP8KL6CKH!zOq3Wyl!dzvT(C}QC+!Rg7=OUOaP24X z2PXW3apBrO(9$wU+}(5Tx%Zx)#-Vc1F*=eF88k_jJ_t$YB&C8k<4`rJIGMI0NJ$Hq zdx8O8l+Z^JRXLeJpRf$@!5BD5lEQUP`R=N#5;CxoU|#_nbt#X{M5B_?p{d$+2})#A z>p&`f(y-x9r&3wIel5zLbE&Jh?{{6@p!-8qWh4Tou3(0DZD}T=0J(&7ks9Bo?QLPB zc|1eam~wmA|MMSg+%#$=q1#4I3t>UlMwAmq=h~pz^HPY=-h^;625AWFie&Zv+`j*R zO`zZKx%?@4PFpVnHdME>#3plIM#ZP+j;FF{lY|MikI)okWKUvO8@rGqODy)?Tx@ZG XbG-Tj%Qfm;@ZLJzyIyxa=>*O%v^%a^ diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.Role.yaml b/testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.Role.yaml deleted file mode 100644 index c5ff6d5eca..0000000000 --- a/testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.Role.yaml +++ /dev/null @@ -1,45 +0,0 @@ -apiVersion: rbac.authorization.k8s.io/v1beta1 -kind: Role -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -rules: -- apiGroups: - - apiGroupsValue - nonResourceURLs: - - nonResourceURLsValue - resourceNames: - - resourceNamesValue - resources: - - resourcesValue - verbs: - - verbsValue diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.json b/testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.json deleted file mode 100644 index 42b6dc21a5..0000000000 --- a/testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "kind": "RoleBinding", - "apiVersion": "rbac.authorization.k8s.io/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "subjects": [ - { - "kind": "kindValue", - "apiGroup": "apiGroupValue", - "name": "nameValue", - "namespace": "namespaceValue" - } - ], - "roleRef": { - "apiGroup": "apiGroupValue", - "kind": "kindValue", - "name": "nameValue" - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.pb b/testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.pb deleted file mode 100644 index 120f92e51c9f34fb14bbac14abd0b863458e88cf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 510 zcmZvYy-or_6or?cM0OBZCl+QqH?g5WATilk(wL|*#uy8`yKupAhndaHE(sW4z_+mW z5v*)Ycn4!)?HlMY1VpsEKj+ST=ft6QNR#ZU2)Yf((i^GR1X3nNBMxE#P*_I%2>}< z?QMlxX3FSLY4fw4h8vwyY5Mr_T=bk{Q$2mYn(CZf?+}+mgj}ECn3m_Iy@&!*1tDZ= z@$K4M>8oU>pC3KUmV#Yml&2kY+B-sal^2;A~<5?dd}MAU)7_K8Fv*Zu^TG0L; N`K_h@TK1j5`3B{ou?heH diff --git a/testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.yaml b/testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.yaml deleted file mode 100644 index 1e8620b5fc..0000000000 --- a/testdata/v1.31.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.yaml +++ /dev/null @@ -1,43 +0,0 @@ -apiVersion: rbac.authorization.k8s.io/v1beta1 -kind: RoleBinding -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -roleRef: - apiGroup: apiGroupValue - kind: kindValue - name: nameValue -subjects: -- apiGroup: apiGroupValue - kind: kindValue - name: nameValue - namespace: namespaceValue diff --git a/testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.after_roundtrip.json b/testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.after_roundtrip.json deleted file mode 100644 index cc837baa17..0000000000 --- a/testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.after_roundtrip.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "kind": "DeviceClass", - "apiVersion": "resource.k8s.io/v1alpha3", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "selectors": [ - { - "cel": { - "expression": "expressionValue" - } - } - ], - "config": [ - { - "opaque": { - "driver": "driverValue", - "parameters": { - "apiVersion": "example.com/v1", - "kind": "CustomType", - "spec": { - "replicas": 1 - }, - "status": { - "available": 1 - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.after_roundtrip.pb b/testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.after_roundtrip.pb deleted file mode 100644 index 1ed35bed01c1d546665efe8befae054f32c19619..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 552 zcmZ8eJx>Bb5IvAY7?h9Gf>3T_LJW$=giwN&8e?H7?BLP^eoxbo0kFlG3CKVfD&&gvV>a*RdWB_e)Yc$ zGdFy`|E`ss10zPFr!U89mP{)H>B+QR(y_Nl!iM^kf-NXRkw(fC7SXu(5QBz%FXF@b z`W|=_wsg)~j7AtJL3KY2%qOy4mfUUlPOJxEkSsTxR^+qRghiwT_ffM}V`^9vVQjEb P93nRn3rY&ps>7T=04Ke0 diff --git a/testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.after_roundtrip.yaml b/testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.after_roundtrip.yaml deleted file mode 100644 index 9f786dc430..0000000000 --- a/testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.after_roundtrip.yaml +++ /dev/null @@ -1,48 +0,0 @@ -apiVersion: resource.k8s.io/v1alpha3 -kind: DeviceClass -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - config: - - opaque: - driver: driverValue - parameters: - apiVersion: example.com/v1 - kind: CustomType - spec: - replicas: 1 - status: - available: 1 - selectors: - - cel: - expression: expressionValue diff --git a/testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.json b/testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.json deleted file mode 100644 index 1b683f8015..0000000000 --- a/testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.json +++ /dev/null @@ -1,96 +0,0 @@ -{ - "kind": "DeviceClass", - "apiVersion": "resource.k8s.io/v1alpha3", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "selectors": [ - { - "cel": { - "expression": "expressionValue" - } - } - ], - "config": [ - { - "opaque": { - "driver": "driverValue", - "parameters": { - "apiVersion": "example.com/v1", - "kind": "CustomType", - "spec": { - "replicas": 1 - }, - "status": { - "available": 1 - } - } - } - } - ], - "suitableNodes": { - "nodeSelectorTerms": [ - { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - ] - } - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.pb b/testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.pb deleted file mode 100644 index 3952de283d2c1604a464c64ab35b938bcfcc6882..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 636 zcma)3J5Iwu6m%dG$qVFTD3Hr7Ktd?|gcPL&DnJM!L_zoLJYey9z4FF}5aj~gf|?_6 z0ffXI5Ct_ifc07lh>C7J@9n&qaoEugEW=_#I!=>-+F?hxdAycwpio!1<<|Bn;{ojo z)Y^S6!`l>8B}R0HA|iJYF42l&tr%7BKav9neE0vV@EZSTc-#nv4 z^H^H8GqY2vygqz9m7C7KL64s=1|7rsB2)$XB=i9d+*$$c3!gz9rHuR7HzIc2{Pk^j zuD78Ya#m@uJ zpYMS`WIxVXm(eXoN>Dq9Bl8p4D$8>lemB+qILeP3PAdvncgPY_f(NKscVlE&Q(eumqKm21V$(B6M7I;MKC+cF~ag&ppp!&Nto0+3NrR diff --git a/testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.yaml b/testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.yaml deleted file mode 100644 index 634f2e0407..0000000000 --- a/testdata/v1.31.0/resource.k8s.io.v1alpha3.DeviceClass.yaml +++ /dev/null @@ -1,60 +0,0 @@ -apiVersion: resource.k8s.io/v1alpha3 -kind: DeviceClass -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - config: - - opaque: - driver: driverValue - parameters: - apiVersion: example.com/v1 - kind: CustomType - spec: - replicas: 1 - status: - available: 1 - selectors: - - cel: - expression: expressionValue - suitableNodes: - nodeSelectorTerms: - - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue diff --git a/testdata/v1.31.0/resource.k8s.io.v1alpha3.PodSchedulingContext.json b/testdata/v1.31.0/resource.k8s.io.v1alpha3.PodSchedulingContext.json deleted file mode 100644 index 2b46b32ab5..0000000000 --- a/testdata/v1.31.0/resource.k8s.io.v1alpha3.PodSchedulingContext.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "kind": "PodSchedulingContext", - "apiVersion": "resource.k8s.io/v1alpha3", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "selectedNode": "selectedNodeValue", - "potentialNodes": [ - "potentialNodesValue" - ] - }, - "status": { - "resourceClaims": [ - { - "name": "nameValue", - "unsuitableNodes": [ - "unsuitableNodesValue" - ] - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/resource.k8s.io.v1alpha3.PodSchedulingContext.pb b/testdata/v1.31.0/resource.k8s.io.v1alpha3.PodSchedulingContext.pb deleted file mode 100644 index 745c7d5f6397a0ded2cdb4a77be90af0efadffa0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 495 zcmZ8eyH3ME5Of|A$pMLDQbg`B4N4IL2+5)h9iS)@CIdN7=yz8lCo=ys*J$TTAWRZY;;a}s3+Q$ga#TN zG?&YV7)vU+X5F=3r80l|d@Y;CX^Nh|-cmFmS1nRy;31P|IJ4F>s3$y!)PQrLK&2wO zZ06p&=lY0LL&~$o_Md-e<)&SSh~|xS3vMB2j@z)jdxs70Y-><;_7%f#)` z4(0Nc_JYRYG_%hsOM}m=@ZE=6MpHbZyue`n1T$1L$Hy}$Y?fIqY3xc!LnA+a$g-im zu~jWtVx!%S*{esWG!vOc`>T7^>c#t?pH|wH`zHGM>x+pF;MpeBIE|3&2RIJuF0?ly z0!^A_BB!}&V$xrf6Ae==vY)uNIu6WR9qo@yPljB@tU5VU>XdJ(Lp zG@~b|ED$t>EcMUmhnL$Bqv6NJ?P|ihcDLoR2d+Ns3Z7;Y64TUcX)VUKAbW)nf zr+4#Qv8c#hW%$OsTvmXFdZO59ra6IVLKb$B0l_nxN{-!Fq-J->EmE3o@clyPA}tjg zOiPT(U_um1&SI*`VCUSRW^RRvO~(;sX09B|#CiD5hYvn{^`Hl9Q{K+dqrq^v;92+i7?HTYC7PG#$bLT!-oq$5U2rdxTr2us$m1Kb_9M*7cxaW^qr6LfWRG Rk-DUuEVg~|_reOP`~isET`T|q diff --git a/testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaim.after_roundtrip.yaml b/testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaim.after_roundtrip.yaml deleted file mode 100644 index 7ddd6d9c06..0000000000 --- a/testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaim.after_roundtrip.yaml +++ /dev/null @@ -1,100 +0,0 @@ -apiVersion: resource.k8s.io/v1alpha3 -kind: ResourceClaim -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - devices: - config: - - opaque: - driver: driverValue - parameters: - apiVersion: example.com/v1 - kind: CustomType - spec: - replicas: 1 - status: - available: 1 - requests: - - requestsValue - constraints: - - matchAttribute: matchAttributeValue - requests: - - requestsValue - requests: - - adminAccess: true - allocationMode: allocationModeValue - count: 5 - deviceClassName: deviceClassNameValue - name: nameValue - selectors: - - cel: - expression: expressionValue -status: - allocation: - devices: - config: - - opaque: - driver: driverValue - parameters: - apiVersion: example.com/v1 - kind: CustomType - spec: - replicas: 1 - status: - available: 1 - requests: - - requestsValue - source: sourceValue - results: - - adminAccess: null - device: deviceValue - driver: driverValue - pool: poolValue - request: requestValue - nodeSelector: - nodeSelectorTerms: - - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - reservedFor: - - apiGroup: apiGroupValue - name: nameValue - resource: resourceValue - uid: uidValue diff --git a/testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaim.json b/testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaim.json deleted file mode 100644 index 8f838eb64a..0000000000 --- a/testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaim.json +++ /dev/null @@ -1,164 +0,0 @@ -{ - "kind": "ResourceClaim", - "apiVersion": "resource.k8s.io/v1alpha3", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "devices": { - "requests": [ - { - "name": "nameValue", - "deviceClassName": "deviceClassNameValue", - "selectors": [ - { - "cel": { - "expression": "expressionValue" - } - } - ], - "allocationMode": "allocationModeValue", - "count": 5, - "adminAccess": true - } - ], - "constraints": [ - { - "requests": [ - "requestsValue" - ], - "matchAttribute": "matchAttributeValue" - } - ], - "config": [ - { - "requests": [ - "requestsValue" - ], - "opaque": { - "driver": "driverValue", - "parameters": { - "apiVersion": "example.com/v1", - "kind": "CustomType", - "spec": { - "replicas": 1 - }, - "status": { - "available": 1 - } - } - } - } - ] - }, - "controller": "controllerValue" - }, - "status": { - "allocation": { - "devices": { - "results": [ - { - "request": "requestValue", - "driver": "driverValue", - "pool": "poolValue", - "device": "deviceValue" - } - ], - "config": [ - { - "source": "sourceValue", - "requests": [ - "requestsValue" - ], - "opaque": { - "driver": "driverValue", - "parameters": { - "apiVersion": "example.com/v1", - "kind": "CustomType", - "spec": { - "replicas": 1 - }, - "status": { - "available": 1 - } - } - } - } - ] - }, - "nodeSelector": { - "nodeSelectorTerms": [ - { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - ] - }, - "controller": "controllerValue" - }, - "reservedFor": [ - { - "apiGroup": "apiGroupValue", - "resource": "resourceValue", - "name": "nameValue", - "uid": "uidValue" - } - ], - "deallocationRequested": true - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaim.pb b/testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaim.pb deleted file mode 100644 index dc1cc2a907aa46a6376b6286b41bbd80e4a950b3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1056 zcmc&zyKWOf6!k7av9IGt)+wwlM+iZLOcD#paz|1i@r)vrf^K&ACK)`tv&`&TF_tB& z6lviHs3|G=15o|}QBWWu@dq$F;}@>z=sd4<1ytqdYh-1prjc-ow@va5mhM-Z3?L=N^+SxbSRQ z=dB2bEJVEpr4~}RU=td6p6c?sfTTq^7omalL_~Jft?N6EcLQn?U*)JWOU7%(Gz-t} zXPIO{p4m+Q!dXqrK|wW=Y&hc_K`A)+C)%s`mTOyg98#wD%CQJcyhbRJObX7YWBs2le01T916|md60tj2 z2Ip5&A-M6Asuj&9y>*~!kKDfh*24ckB>f{egqu(v;Ao1y|3Xy{+-7&Dt%=ub{1dfAkt$W< zz*}(cBlHcBDqaC`K;p(5fY(cY)H^qBpT8N8$KQN28t8!Z$(BN0Se0ULG|)X(JR0|b z%Tst9-Fx#la=?M*hnPza2BWX5|@H++wtGf&!Hby_`{TtBh(1X_Z3PHS*)< zOpN@E?S^HUN4uM|*N;$XRtV1yR`(l?o6kS4>z&}KLs!4PIP{vl-6Bm633B}m&!e>p z`Wp!)EfAtGU|bO&?kt^s&bue1Ibx!EI9~Km=iO|#L9*pWcEUlZ+Q&=)XCGXHzRssG zA$M~SaDvJcQLB*U|7Y#Tx64rXhwnGPS31G2D~3GNhv%|VW>_b+$#lP?Z8BHFi~6(v zU*&(V@@0)&)X1x4H*aP*W+^()YrQaZmu!$Wo=G>PxlL&oI4@E^_!mW14fMgCoiMsj z))l_Ds7+;=sGEaHPxp*bEU~7_j6a6A(=5?sEmLefb5=%@30;_y4k@02+e7T7Mea70 xKBT3k9e-f8De}@+j?)rTI-F32lCu;v9rmY=b=zSbb`{6K-1cxR1JgL5!5?0EXo&y- diff --git a/testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.after_roundtrip.yaml b/testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.after_roundtrip.yaml deleted file mode 100644 index b0e5939dd5..0000000000 --- a/testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.after_roundtrip.yaml +++ /dev/null @@ -1,94 +0,0 @@ -apiVersion: resource.k8s.io/v1alpha3 -kind: ResourceClaimTemplate -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue - spec: - devices: - config: - - opaque: - driver: driverValue - parameters: - apiVersion: example.com/v1 - kind: CustomType - spec: - replicas: 1 - status: - available: 1 - requests: - - requestsValue - constraints: - - matchAttribute: matchAttributeValue - requests: - - requestsValue - requests: - - adminAccess: true - allocationMode: allocationModeValue - count: 5 - deviceClassName: deviceClassNameValue - name: nameValue - selectors: - - cel: - expression: expressionValue diff --git a/testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.json b/testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.json deleted file mode 100644 index 4db5af07ac..0000000000 --- a/testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.json +++ /dev/null @@ -1,139 +0,0 @@ -{ - "kind": "ResourceClaimTemplate", - "apiVersion": "resource.k8s.io/v1alpha3", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "devices": { - "requests": [ - { - "name": "nameValue", - "deviceClassName": "deviceClassNameValue", - "selectors": [ - { - "cel": { - "expression": "expressionValue" - } - } - ], - "allocationMode": "allocationModeValue", - "count": 5, - "adminAccess": true - } - ], - "constraints": [ - { - "requests": [ - "requestsValue" - ], - "matchAttribute": "matchAttributeValue" - } - ], - "config": [ - { - "requests": [ - "requestsValue" - ], - "opaque": { - "driver": "driverValue", - "parameters": { - "apiVersion": "example.com/v1", - "kind": "CustomType", - "spec": { - "replicas": 1 - }, - "status": { - "available": 1 - } - } - } - } - ] - }, - "controller": "controllerValue" - } - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.pb b/testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceClaimTemplate.pb deleted file mode 100644 index e435caf8d835ab16323f01bda619d6170e398c6c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1054 zcmeHGyKWOf6x}sOu_wfK)q)#>#YH3x9z0pATn0z|!120bD zS@iJTEwjgg<%gIT91KP`E99m|ngVh>0&X!{KS6=YQLkrE+$vdJKw7!bHI4lEB@-k6 zW2<3V=B=HLS@t7Tnn~f&!OCu9-4LxNl%;6=1rnf^yY zNehIK28;{h>CV#I`+Rs#njz8i+R9)4W^xz`DHTrlLBKD;QZ$qehHHks~rv`yxd@I(Dw|3Bq_ zKjp7A@~KANEUS4V!!b+IXK3;GEp}Nlb*gXMzO@2$}|2P-gUD?lhsVI@l076NhWk5N;;%?4(<-Im&)8-Dt$sr zNjrScY9sSfR}Rw!rgS)=3JcCs&~(_JI@Dc5&;9biAa#)ru0 z|5gS*9TD_Wg7*TH8J?0M_7j3OCxnp*$K+y>vZ`5?hj^5?*aj#5_?$9N-e_nEb!F7v zTBr_5#A(1}wzJXIwE5%bbIDXrMfCLbDxw}-)uHTThxq)Aq)5+0dBd@xiWv)H9E%~c zY_6SU&&?5(J<4)nYsGIbX&N;g(shuQ+EJt0m@@3sTLCENJg5#-rkLRgiDUv*gD~5F zfp7gCV~ZU==HEqAX^UaRcll)+=FS|Kpm2BJHF@GJosg!!si3wKYmS?RdeJgi z;I16E`_O|O&^(gnOh(QWLf9dCT|NA)z-Pl ev56FJR0Q(!B@qIBgvCFgahknZ5!9BY*vb!y*V9P= diff --git a/testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceSlice.yaml b/testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceSlice.yaml deleted file mode 100644 index 93d7f2e117..0000000000 --- a/testdata/v1.31.0/resource.k8s.io.v1alpha3.ResourceSlice.yaml +++ /dev/null @@ -1,65 +0,0 @@ -apiVersion: resource.k8s.io/v1alpha3 -kind: ResourceSlice -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - allNodes: true - devices: - - basic: - attributes: - attributesKey: - bool: true - int: 2 - string: stringValue - version: versionValue - capacity: - capacityKey: "0" - name: nameValue - driver: driverValue - nodeName: nodeNameValue - nodeSelector: - nodeSelectorTerms: - - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchFields: - - key: keyValue - operator: operatorValue - values: - - valuesValue - pool: - generation: 2 - name: nameValue - resourceSliceCount: 3 diff --git a/testdata/v1.31.0/scheduling.k8s.io.v1.PriorityClass.json b/testdata/v1.31.0/scheduling.k8s.io.v1.PriorityClass.json deleted file mode 100644 index fb75f776b8..0000000000 --- a/testdata/v1.31.0/scheduling.k8s.io.v1.PriorityClass.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "kind": "PriorityClass", - "apiVersion": "scheduling.k8s.io/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "value": 2, - "globalDefault": true, - "description": "descriptionValue", - "preemptionPolicy": "preemptionPolicyValue" -} \ No newline at end of file diff --git a/testdata/v1.31.0/scheduling.k8s.io.v1.PriorityClass.pb b/testdata/v1.31.0/scheduling.k8s.io.v1.PriorityClass.pb deleted file mode 100644 index 499f3653208a4856253bad405ad1b82561d09aa5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 450 zcmZ8dK}y3w6iwQK?P%K=DwHe(Zn~&i5Q59PQ;{shg}X`eTgOai!u&)?#S6Id3a&kZ zHxPOUapBq<=yXDBarfr^_ust#(f}>8PkI>NLQ-%hro%MAA(IF9M{YY*Oe&U_r<@|X z&vo)qBP~H^a7}pu?(P%>D4N6Nit;+kDP}aTBz_x#PcE29&BmZvu*9HIPXWq8X&oqJ zQW!Sa8aJDZm#?>mW1VUA`u(m^NN)P1#c2c_&!Kd;D`++%pLD1YGN-vVF=J=rZ8Ues zq?IyJeeC_^_t$9#U7E4YAcuBftL}se%Gq28G(JyuM0RFW&?zWGxE+}-?_b6D{@eKa zhR?-M-LXd640wW9WmYwF(jc{m$FYM&v~FTqs#ELRzLNmPie+o(!Cs~SW`+nQXK`r) Ic$RPd0`MZ7sQ>@~ diff --git a/testdata/v1.31.0/scheduling.k8s.io.v1.PriorityClass.yaml b/testdata/v1.31.0/scheduling.k8s.io.v1.PriorityClass.yaml deleted file mode 100644 index 275260df3a..0000000000 --- a/testdata/v1.31.0/scheduling.k8s.io.v1.PriorityClass.yaml +++ /dev/null @@ -1,38 +0,0 @@ -apiVersion: scheduling.k8s.io/v1 -description: descriptionValue -globalDefault: true -kind: PriorityClass -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -preemptionPolicy: preemptionPolicyValue -value: 2 diff --git a/testdata/v1.31.0/scheduling.k8s.io.v1alpha1.PriorityClass.json b/testdata/v1.31.0/scheduling.k8s.io.v1alpha1.PriorityClass.json deleted file mode 100644 index dc20dd4f91..0000000000 --- a/testdata/v1.31.0/scheduling.k8s.io.v1alpha1.PriorityClass.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "kind": "PriorityClass", - "apiVersion": "scheduling.k8s.io/v1alpha1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "value": 2, - "globalDefault": true, - "description": "descriptionValue", - "preemptionPolicy": "preemptionPolicyValue" -} \ No newline at end of file diff --git a/testdata/v1.31.0/scheduling.k8s.io.v1alpha1.PriorityClass.pb b/testdata/v1.31.0/scheduling.k8s.io.v1alpha1.PriorityClass.pb deleted file mode 100644 index d359c56527d559d442b1bf02b1b2e9c416a3e99b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 456 zcmZ8dK}y3w6iwQK&1l;g6iSv^R;ach1ebNEB3+0JcR$H*J7zi=W)dNa7jWejTzdp> zAoLF6!nHTh>4ete?#=t}zj^yHn&SA;-%V<+qnpB_OUOK}#W3Yv{5AZ_40%OTe$X6$af zjpp{4I4R}T$NpdbV4bGd0YNu|9ND2QI}^%*(R&@x_&nJW*_i`}DM~|l?My81U&Z(T z+XVWC&&5yOwT9XZS)#5=Q8jbYAhn0bk*kVm-Ndp~x7M`-H$fFkD%Q@ueIXI&h8Smz L#-$11TY>cp=xLtp diff --git a/testdata/v1.31.0/scheduling.k8s.io.v1alpha1.PriorityClass.yaml b/testdata/v1.31.0/scheduling.k8s.io.v1alpha1.PriorityClass.yaml deleted file mode 100644 index 23476e4b56..0000000000 --- a/testdata/v1.31.0/scheduling.k8s.io.v1alpha1.PriorityClass.yaml +++ /dev/null @@ -1,38 +0,0 @@ -apiVersion: scheduling.k8s.io/v1alpha1 -description: descriptionValue -globalDefault: true -kind: PriorityClass -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -preemptionPolicy: preemptionPolicyValue -value: 2 diff --git a/testdata/v1.31.0/scheduling.k8s.io.v1beta1.PriorityClass.json b/testdata/v1.31.0/scheduling.k8s.io.v1beta1.PriorityClass.json deleted file mode 100644 index 44cb32f460..0000000000 --- a/testdata/v1.31.0/scheduling.k8s.io.v1beta1.PriorityClass.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "kind": "PriorityClass", - "apiVersion": "scheduling.k8s.io/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "value": 2, - "globalDefault": true, - "description": "descriptionValue", - "preemptionPolicy": "preemptionPolicyValue" -} \ No newline at end of file diff --git a/testdata/v1.31.0/scheduling.k8s.io.v1beta1.PriorityClass.pb b/testdata/v1.31.0/scheduling.k8s.io.v1beta1.PriorityClass.pb deleted file mode 100644 index a61387a182eeac29563f1b9df53571faf81ef59c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 455 zcmZ8dF;2rk5VVs>BnL^11yXS7(nTPVkSxm30YWJd1>M=+gu|CR>()kc5Feo83)DP; zA0Xuqh=Q6Qz~!ujh;D9nc5Zgk5G@jr1B`DWDL50;ei~w*$;10W1UVhJ?XhA~vAjIx z6w!UIlaCr{2|9yo$_sFJryxMl94=Rs*I7<6qj4qi+X#Ge!9;2{f@Z-IgNAzwP!>w- zKp~UDu;JFI*<8GQy)_)`OrzKDca6s6rbk+wM!@kLN_V@0W+U=RhYBHcnrjm?b~fHd zb9YQyDHGMl-d}!yohIngjBN%vvO`;SCrnVz<~pG9d9ow2Goyk|K^emB$ZUE4D!%vM z#@9D|E`I8cHPmLn6TB+3s+p4psXaW794w-B6U$PaTF>^K1Ta=CTRR8)nF5#@Vk|j} KOB2AeeCrn~^`3wL diff --git a/testdata/v1.31.0/scheduling.k8s.io.v1beta1.PriorityClass.yaml b/testdata/v1.31.0/scheduling.k8s.io.v1beta1.PriorityClass.yaml deleted file mode 100644 index 046a8a448d..0000000000 --- a/testdata/v1.31.0/scheduling.k8s.io.v1beta1.PriorityClass.yaml +++ /dev/null @@ -1,38 +0,0 @@ -apiVersion: scheduling.k8s.io/v1beta1 -description: descriptionValue -globalDefault: true -kind: PriorityClass -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -preemptionPolicy: preemptionPolicyValue -value: 2 diff --git a/testdata/v1.31.0/storage.k8s.io.v1.CSIDriver.json b/testdata/v1.31.0/storage.k8s.io.v1.CSIDriver.json deleted file mode 100644 index 3acd8ccac4..0000000000 --- a/testdata/v1.31.0/storage.k8s.io.v1.CSIDriver.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "kind": "CSIDriver", - "apiVersion": "storage.k8s.io/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "attachRequired": true, - "podInfoOnMount": true, - "volumeLifecycleModes": [ - "volumeLifecycleModesValue" - ], - "storageCapacity": true, - "fsGroupPolicy": "fsGroupPolicyValue", - "tokenRequests": [ - { - "audience": "audienceValue", - "expirationSeconds": 2 - } - ], - "requiresRepublish": true, - "seLinuxMount": true - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/storage.k8s.io.v1.CSIDriver.pb b/testdata/v1.31.0/storage.k8s.io.v1.CSIDriver.pb deleted file mode 100644 index 6b6621c28b86ba2ee83fcb255c60d2f8b74ad861..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 476 zcmZ9I%}T>S6or$vU^8l)1{a!zNS0kxEeOGtR6*1#1;vHCNpe%hOlQJOQi$RU_!h2R zx%Lf&zJs`M?HlNHVry}C=Kh@d?n!)UpiR`085ej6oy3awNzYg!58G z?-gV*Jc4UXb8uQiU?6Y?7qgPvn094~!*ax1l|bV@VTs;o*K-nS)m;-Hc`no(2uV28 zRez~huTP#nUu(8;s?_t>n^FUGvyLo^1EBH@3TL^LdL!^q12e`moGBCCwin)d=5`NR z31Q{O?jOH5r)f8FN)|zOOy3mEm@rJqodVQ8k7j^YMwqF9gf2J@o=)$d;k*BBJaxmz zK}cpAhA~C9RZRTLd}7Ygfm?Y z+Y`%LzI?s49OFc(*Y9_w&e8QQ>QEd3m8Vd8-Ad{oQGjgB7|(I8Omy3+z4grP0qUfL zRg3+<{J|zozlSqY53+BDrs&NH!<5{sfZFHDjL_BsGlfU!f@kw=b^kiP|KBE1H+(LC znvOA6W0L>m$s>Ie<%jJr&spC0RdzMJ!mQ=XIxLzO9LSf+0T F#xF_Km~;RD diff --git a/testdata/v1.31.0/storage.k8s.io.v1.CSINode.yaml b/testdata/v1.31.0/storage.k8s.io.v1.CSINode.yaml deleted file mode 100644 index 4f780e15c6..0000000000 --- a/testdata/v1.31.0/storage.k8s.io.v1.CSINode.yaml +++ /dev/null @@ -1,42 +0,0 @@ -apiVersion: storage.k8s.io/v1 -kind: CSINode -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - drivers: - - allocatable: - count: 1 - name: nameValue - nodeID: nodeIDValue - topologyKeys: - - topologyKeysValue diff --git a/testdata/v1.31.0/storage.k8s.io.v1.CSIStorageCapacity.json b/testdata/v1.31.0/storage.k8s.io.v1.CSIStorageCapacity.json deleted file mode 100644 index 38c75991ec..0000000000 --- a/testdata/v1.31.0/storage.k8s.io.v1.CSIStorageCapacity.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "kind": "CSIStorageCapacity", - "apiVersion": "storage.k8s.io/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "nodeTopology": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "storageClassName": "storageClassNameValue", - "capacity": "0", - "maximumVolumeSize": "0" -} \ No newline at end of file diff --git a/testdata/v1.31.0/storage.k8s.io.v1.CSIStorageCapacity.pb b/testdata/v1.31.0/storage.k8s.io.v1.CSIStorageCapacity.pb deleted file mode 100644 index 29c136467f1ae9d12e7c37604295293c22099ee9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 518 zcmZ8e!A`pfJZ5MV0KaOTuBR26}T8o(G&Adw;}Y;XKk z&h0U(hJ@+H?w^0JaMNx=L^h3dP2Y^0Gs1w9J84kqJemR8UI3GuiWT8Bc$Ck-w(tIz z@#G92tM9UH^rRT3Q*oI^dNchBD&0Q}Y>@`VCe%_#NRG6CWO6eqCbl>Jy7NA=LY!$_ i*Dkm=<<^$Dj<)RX{+@P7L5Si^UKyF)cK*1AXZ!$bh_NpK diff --git a/testdata/v1.31.0/storage.k8s.io.v1.CSIStorageCapacity.yaml b/testdata/v1.31.0/storage.k8s.io.v1.CSIStorageCapacity.yaml deleted file mode 100644 index 4781557d73..0000000000 --- a/testdata/v1.31.0/storage.k8s.io.v1.CSIStorageCapacity.yaml +++ /dev/null @@ -1,45 +0,0 @@ -apiVersion: storage.k8s.io/v1 -capacity: "0" -kind: CSIStorageCapacity -maximumVolumeSize: "0" -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -nodeTopology: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue -storageClassName: storageClassNameValue diff --git a/testdata/v1.31.0/storage.k8s.io.v1.StorageClass.json b/testdata/v1.31.0/storage.k8s.io.v1.StorageClass.json deleted file mode 100644 index 82d3874817..0000000000 --- a/testdata/v1.31.0/storage.k8s.io.v1.StorageClass.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "kind": "StorageClass", - "apiVersion": "storage.k8s.io/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "provisioner": "provisionerValue", - "parameters": { - "parametersKey": "parametersValue" - }, - "reclaimPolicy": "reclaimPolicyValue", - "mountOptions": [ - "mountOptionsValue" - ], - "allowVolumeExpansion": true, - "volumeBindingMode": "volumeBindingModeValue", - "allowedTopologies": [ - { - "matchLabelExpressions": [ - { - "key": "keyValue", - "values": [ - "valuesValue" - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/testdata/v1.31.0/storage.k8s.io.v1.StorageClass.pb b/testdata/v1.31.0/storage.k8s.io.v1.StorageClass.pb deleted file mode 100644 index b1e32d4c891dd3118bdf3f0f77a75a71de1d4a5c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 545 zcmZ9INlwEs6o!+w5~(|-5n{*+vh1RiN=Q+cVaHer#DbmEx|NAzM|KjaATGcySaSq! zfYdu67Oast05~=s#O}TSP2c+?Ul?E?v_;A|oT6^zi!Npd`Jq$4($X=3LO9=L@LmE{ z3S)EwNrs&E6j8)siY^wC+bpUgfg|1GH3TA)GfX2j(Xlc-R#AVGBf&B*`w$nHQKkAD zfo08~KVK`haU!FauQwSD!R-#H5*Q*PPSMP%=}=9C9%w>JSqf9RM3wEeT=m=?fog=Q zKJ2dey(LYj1rxju(ldRNwp7mnk*^)U*Nm{*Ld=WkNHp8 zHu`cIB4cqqOSChC3Mf512DZq;r4!0jJK-$Hg(ZJi+&$1pAeX+TlB6)8wMrF-=WsM4 z5XVDC@MxyAPCI59O)nGWi;{ZgU@K=Ni%}rmz;t@f#u_Hr1>3-ikREkvc|oF|b`8(? E1xN0_;Q#;t diff --git a/testdata/v1.31.0/storage.k8s.io.v1.StorageClass.yaml b/testdata/v1.31.0/storage.k8s.io.v1.StorageClass.yaml deleted file mode 100644 index 943b34f21d..0000000000 --- a/testdata/v1.31.0/storage.k8s.io.v1.StorageClass.yaml +++ /dev/null @@ -1,47 +0,0 @@ -allowVolumeExpansion: true -allowedTopologies: -- matchLabelExpressions: - - key: keyValue - values: - - valuesValue -apiVersion: storage.k8s.io/v1 -kind: StorageClass -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -mountOptions: -- mountOptionsValue -parameters: - parametersKey: parametersValue -provisioner: provisionerValue -reclaimPolicy: reclaimPolicyValue -volumeBindingMode: volumeBindingModeValue diff --git a/testdata/v1.31.0/storage.k8s.io.v1.VolumeAttachment.json b/testdata/v1.31.0/storage.k8s.io.v1.VolumeAttachment.json deleted file mode 100644 index 8589231efb..0000000000 --- a/testdata/v1.31.0/storage.k8s.io.v1.VolumeAttachment.json +++ /dev/null @@ -1,326 +0,0 @@ -{ - "kind": "VolumeAttachment", - "apiVersion": "storage.k8s.io/v1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "attacher": "attacherValue", - "source": { - "persistentVolumeName": "persistentVolumeNameValue", - "inlineVolumeSpec": { - "capacity": { - "capacityKey": "0" - }, - "gcePersistentDisk": { - "pdName": "pdNameValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "awsElasticBlockStore": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "hostPath": { - "path": "pathValue", - "type": "typeValue" - }, - "glusterfs": { - "endpoints": "endpointsValue", - "path": "pathValue", - "readOnly": true, - "endpointsNamespace": "endpointsNamespaceValue" - }, - "nfs": { - "server": "serverValue", - "path": "pathValue", - "readOnly": true - }, - "rbd": { - "monitors": [ - "monitorsValue" - ], - "image": "imageValue", - "fsType": "fsTypeValue", - "pool": "poolValue", - "user": "userValue", - "keyring": "keyringValue", - "secretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - }, - "readOnly": true - }, - "iscsi": { - "targetPortal": "targetPortalValue", - "iqn": "iqnValue", - "lun": 3, - "iscsiInterface": "iscsiInterfaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "portals": [ - "portalsValue" - ], - "chapAuthDiscovery": true, - "chapAuthSession": true, - "secretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - }, - "initiatorName": "initiatorNameValue" - }, - "cinder": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - } - }, - "cephfs": { - "monitors": [ - "monitorsValue" - ], - "path": "pathValue", - "user": "userValue", - "secretFile": "secretFileValue", - "secretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - }, - "readOnly": true - }, - "fc": { - "targetWWNs": [ - "targetWWNsValue" - ], - "lun": 2, - "fsType": "fsTypeValue", - "readOnly": true, - "wwids": [ - "wwidsValue" - ] - }, - "flocker": { - "datasetName": "datasetNameValue", - "datasetUUID": "datasetUUIDValue" - }, - "flexVolume": { - "driver": "driverValue", - "fsType": "fsTypeValue", - "secretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - }, - "readOnly": true, - "options": { - "optionsKey": "optionsValue" - } - }, - "azureFile": { - "secretName": "secretNameValue", - "shareName": "shareNameValue", - "readOnly": true, - "secretNamespace": "secretNamespaceValue" - }, - "vsphereVolume": { - "volumePath": "volumePathValue", - "fsType": "fsTypeValue", - "storagePolicyName": "storagePolicyNameValue", - "storagePolicyID": "storagePolicyIDValue" - }, - "quobyte": { - "registry": "registryValue", - "volume": "volumeValue", - "readOnly": true, - "user": "userValue", - "group": "groupValue", - "tenant": "tenantValue" - }, - "azureDisk": { - "diskName": "diskNameValue", - "diskURI": "diskURIValue", - "cachingMode": "cachingModeValue", - "fsType": "fsTypeValue", - "readOnly": true, - "kind": "kindValue" - }, - "photonPersistentDisk": { - "pdID": "pdIDValue", - "fsType": "fsTypeValue" - }, - "portworxVolume": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "scaleIO": { - "gateway": "gatewayValue", - "system": "systemValue", - "secretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - }, - "sslEnabled": true, - "protectionDomain": "protectionDomainValue", - "storagePool": "storagePoolValue", - "storageMode": "storageModeValue", - "volumeName": "volumeNameValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "local": { - "path": "pathValue", - "fsType": "fsTypeValue" - }, - "storageos": { - "volumeName": "volumeNameValue", - "volumeNamespace": "volumeNamespaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "kind": "kindValue", - "namespace": "namespaceValue", - "name": "nameValue", - "uid": "uidValue", - "apiVersion": "apiVersionValue", - "resourceVersion": "resourceVersionValue", - "fieldPath": "fieldPathValue" - } - }, - "csi": { - "driver": "driverValue", - "volumeHandle": "volumeHandleValue", - "readOnly": true, - "fsType": "fsTypeValue", - "volumeAttributes": { - "volumeAttributesKey": "volumeAttributesValue" - }, - "controllerPublishSecretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - }, - "nodeStageSecretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - }, - "nodePublishSecretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - }, - "controllerExpandSecretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - }, - "nodeExpandSecretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - } - }, - "accessModes": [ - "accessModesValue" - ], - "claimRef": { - "kind": "kindValue", - "namespace": "namespaceValue", - "name": "nameValue", - "uid": "uidValue", - "apiVersion": "apiVersionValue", - "resourceVersion": "resourceVersionValue", - "fieldPath": "fieldPathValue" - }, - "persistentVolumeReclaimPolicy": "persistentVolumeReclaimPolicyValue", - "storageClassName": "storageClassNameValue", - "mountOptions": [ - "mountOptionsValue" - ], - "volumeMode": "volumeModeValue", - "nodeAffinity": { - "required": { - "nodeSelectorTerms": [ - { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - ] - } - }, - "volumeAttributesClassName": "volumeAttributesClassNameValue" - } - }, - "nodeName": "nodeNameValue" - }, - "status": { - "attached": true, - "attachmentMetadata": { - "attachmentMetadataKey": "attachmentMetadataValue" - }, - "attachError": { - "time": "2001-01-01T01:01:01Z", - "message": "messageValue" - }, - "detachError": { - "time": "2001-01-01T01:01:01Z", - "message": "messageValue" - } - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/storage.k8s.io.v1.VolumeAttachment.pb b/testdata/v1.31.0/storage.k8s.io.v1.VolumeAttachment.pb deleted file mode 100644 index e167dcd124957608ff53503adafe9a125f014d21..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2603 zcmcguy^kA36!+Xk!hZhRo4ZTQBArevK*)-Y!xHE)O)wGSjwD!CoS<~$-8tXH>)mB$ zd?yFdfP_#=BpMn79UvN73VNh8`~`@Df&$S}!R*X_ojI0N>1N)%c^|*`dv9iTAS&=2 zYzP^0GNpU71F^@#7f)Zp)}7E_%<1b=68B_I1Bw6IgkRR67LYl;L;MBB8&eukP9(jR zitJW=Dk9<<6{jhve|&=lGkv35T`*6tdRv@|aKV)x<${HQmL5Dcs8%0+`P&bdtjdvE zef#H6YBhv=9jN(aLVfWzUE;b~>KhXWS|kWUNu)BOkFCO9>)d}CYBLrX$95jSlSR{Q zlZX`q*+&P6w~tvseD**EsO>yN6KKpypm5?^fLmb{=bwgeubOdG4!=J7d)=z^lridi z;`TB!$n-D4+WQ|2EU}nmNN7;MwxCHg=&6@aEO=V^5ll!`22+*{ar}E5Fw|Y5FlTZZ zdl}z4+Exnn3x1MS4eB$b}=%i7KNd&<=xss z+0)BjV@8*p1yjB2KU3uC3MsFl{>KP5B;ivkhas25Si@EJp5b9<-PvTq73?sOlpm*T z?iRz?NBu^mFPnI;p;4LBchLkhl^!E1!>lNS*Gg-EoHCO~<5kFVKZNvXz#_@AeT~3DL zF!Y(b%^||lHY>?G&!BB9_33N8Lk`SdZS{<3(|!t4;PU>=+#wE6V=sm?|+C6 zq3JO(%Y5NRyd94Y^|@`iY8ESw-weHEz7_+10rm1Z_YkR>8F?4A_NQp4oOPe0&k!`G zYOtS?G#Rl}(`RnN_@8oZM?93&jSF@?oD*hxs%K@eCEeRkC0ROyq##-TN5%Yx=qsJn zh1L27eSy+?X4mnSsX;8r$IvR5r-kPMugr?adoC`1&H61p^D}mRkN!aCn_$C)_ZA7f zq&F2&iYa%m!luzt?=WYRg{1n8+g=qKGL;pkbR-VSZXT5#mJU7JBCbn?hzo3nh4ZAq z?mDYa=7_pJVRO^92Cwael5hA#h>SJ;jd{2TpL!w81(JXF=Qqg8Oz zd_DL1teb_eNh4_zllS&fL;`keI<=X0qv^5>7bGH>m^3b7r4nO;apCS21{gccG@X{D8ZY22Tzdp> zV8X@|7#FU+flg&g4b m3UQ`!U8~?)lv`WmJX*55^LyYv1tE$vd1YjFTKVG|p78_y6ti*w diff --git a/testdata/v1.31.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.yaml b/testdata/v1.31.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.yaml deleted file mode 100644 index 2ca4299b4b..0000000000 --- a/testdata/v1.31.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.yaml +++ /dev/null @@ -1,45 +0,0 @@ -apiVersion: storage.k8s.io/v1alpha1 -capacity: "0" -kind: CSIStorageCapacity -maximumVolumeSize: "0" -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -nodeTopology: - matchExpressions: - - key: keyValue - operator: operatorValue - values: - - valuesValue - matchLabels: - matchLabelsKey: matchLabelsValue -storageClassName: storageClassNameValue diff --git a/testdata/v1.31.0/storage.k8s.io.v1alpha1.VolumeAttachment.json b/testdata/v1.31.0/storage.k8s.io.v1alpha1.VolumeAttachment.json deleted file mode 100644 index 6bcf594d03..0000000000 --- a/testdata/v1.31.0/storage.k8s.io.v1alpha1.VolumeAttachment.json +++ /dev/null @@ -1,326 +0,0 @@ -{ - "kind": "VolumeAttachment", - "apiVersion": "storage.k8s.io/v1alpha1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "attacher": "attacherValue", - "source": { - "persistentVolumeName": "persistentVolumeNameValue", - "inlineVolumeSpec": { - "capacity": { - "capacityKey": "0" - }, - "gcePersistentDisk": { - "pdName": "pdNameValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "awsElasticBlockStore": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "partition": 3, - "readOnly": true - }, - "hostPath": { - "path": "pathValue", - "type": "typeValue" - }, - "glusterfs": { - "endpoints": "endpointsValue", - "path": "pathValue", - "readOnly": true, - "endpointsNamespace": "endpointsNamespaceValue" - }, - "nfs": { - "server": "serverValue", - "path": "pathValue", - "readOnly": true - }, - "rbd": { - "monitors": [ - "monitorsValue" - ], - "image": "imageValue", - "fsType": "fsTypeValue", - "pool": "poolValue", - "user": "userValue", - "keyring": "keyringValue", - "secretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - }, - "readOnly": true - }, - "iscsi": { - "targetPortal": "targetPortalValue", - "iqn": "iqnValue", - "lun": 3, - "iscsiInterface": "iscsiInterfaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "portals": [ - "portalsValue" - ], - "chapAuthDiscovery": true, - "chapAuthSession": true, - "secretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - }, - "initiatorName": "initiatorNameValue" - }, - "cinder": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - } - }, - "cephfs": { - "monitors": [ - "monitorsValue" - ], - "path": "pathValue", - "user": "userValue", - "secretFile": "secretFileValue", - "secretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - }, - "readOnly": true - }, - "fc": { - "targetWWNs": [ - "targetWWNsValue" - ], - "lun": 2, - "fsType": "fsTypeValue", - "readOnly": true, - "wwids": [ - "wwidsValue" - ] - }, - "flocker": { - "datasetName": "datasetNameValue", - "datasetUUID": "datasetUUIDValue" - }, - "flexVolume": { - "driver": "driverValue", - "fsType": "fsTypeValue", - "secretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - }, - "readOnly": true, - "options": { - "optionsKey": "optionsValue" - } - }, - "azureFile": { - "secretName": "secretNameValue", - "shareName": "shareNameValue", - "readOnly": true, - "secretNamespace": "secretNamespaceValue" - }, - "vsphereVolume": { - "volumePath": "volumePathValue", - "fsType": "fsTypeValue", - "storagePolicyName": "storagePolicyNameValue", - "storagePolicyID": "storagePolicyIDValue" - }, - "quobyte": { - "registry": "registryValue", - "volume": "volumeValue", - "readOnly": true, - "user": "userValue", - "group": "groupValue", - "tenant": "tenantValue" - }, - "azureDisk": { - "diskName": "diskNameValue", - "diskURI": "diskURIValue", - "cachingMode": "cachingModeValue", - "fsType": "fsTypeValue", - "readOnly": true, - "kind": "kindValue" - }, - "photonPersistentDisk": { - "pdID": "pdIDValue", - "fsType": "fsTypeValue" - }, - "portworxVolume": { - "volumeID": "volumeIDValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "scaleIO": { - "gateway": "gatewayValue", - "system": "systemValue", - "secretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - }, - "sslEnabled": true, - "protectionDomain": "protectionDomainValue", - "storagePool": "storagePoolValue", - "storageMode": "storageModeValue", - "volumeName": "volumeNameValue", - "fsType": "fsTypeValue", - "readOnly": true - }, - "local": { - "path": "pathValue", - "fsType": "fsTypeValue" - }, - "storageos": { - "volumeName": "volumeNameValue", - "volumeNamespace": "volumeNamespaceValue", - "fsType": "fsTypeValue", - "readOnly": true, - "secretRef": { - "kind": "kindValue", - "namespace": "namespaceValue", - "name": "nameValue", - "uid": "uidValue", - "apiVersion": "apiVersionValue", - "resourceVersion": "resourceVersionValue", - "fieldPath": "fieldPathValue" - } - }, - "csi": { - "driver": "driverValue", - "volumeHandle": "volumeHandleValue", - "readOnly": true, - "fsType": "fsTypeValue", - "volumeAttributes": { - "volumeAttributesKey": "volumeAttributesValue" - }, - "controllerPublishSecretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - }, - "nodeStageSecretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - }, - "nodePublishSecretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - }, - "controllerExpandSecretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - }, - "nodeExpandSecretRef": { - "name": "nameValue", - "namespace": "namespaceValue" - } - }, - "accessModes": [ - "accessModesValue" - ], - "claimRef": { - "kind": "kindValue", - "namespace": "namespaceValue", - "name": "nameValue", - "uid": "uidValue", - "apiVersion": "apiVersionValue", - "resourceVersion": "resourceVersionValue", - "fieldPath": "fieldPathValue" - }, - "persistentVolumeReclaimPolicy": "persistentVolumeReclaimPolicyValue", - "storageClassName": "storageClassNameValue", - "mountOptions": [ - "mountOptionsValue" - ], - "volumeMode": "volumeModeValue", - "nodeAffinity": { - "required": { - "nodeSelectorTerms": [ - { - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ], - "matchFields": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - } - ] - } - }, - "volumeAttributesClassName": "volumeAttributesClassNameValue" - } - }, - "nodeName": "nodeNameValue" - }, - "status": { - "attached": true, - "attachmentMetadata": { - "attachmentMetadataKey": "attachmentMetadataValue" - }, - "attachError": { - "time": "2001-01-01T01:01:01Z", - "message": "messageValue" - }, - "detachError": { - "time": "2001-01-01T01:01:01Z", - "message": "messageValue" - } - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/storage.k8s.io.v1alpha1.VolumeAttachment.pb b/testdata/v1.31.0/storage.k8s.io.v1alpha1.VolumeAttachment.pb deleted file mode 100644 index 33c4c310e8dffff1e1f97ef98853288f675af138..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2609 zcmcguy>A>v6!+MXxO?}t9^3J;NS3uiC_0dFP6C;u2}gwRk%ZGJPEfkJ-SK&Hd%Mfb zoUIF@0STd$NHjDEIzTkE6!b`G_zMsP1qGs|g4vn<@?kcq(#^bi^FDs>_ukC(K&-%v zuq|ZB$%O7r55yh|Up~D`{OE*S#nzqBpU>zUQWE!MMgxie-hf|Mp&F1Gy+iyt#p@Fq zP);Phm5S_Ud@3U18WpD@sDFHe1yg;aQ<*bQuezI@ig3=A9_50CftDUT)2~z>ef9f~ zm#me6T7CD|&uTS|0_!&XCZceq%v{XwXwHpIY#&@*|j#stl$q8RGbl7GS8k zL}AY4BF1M8&_4dS0XtBOyj-z%oO^Gt?IOGjjZR3jo!%xP7ou{*Cq zlLlTCvOpSWaIV)z&USVfd(YX>v7sg?KTQ)WUg}PvF$)8x*qE3EHd9Dz-*z!Fry7N! zujQTUT-nphZhcA@oCOoT>pfTG=@Kcgq24D5)+ON+Du*GL#8|@>_P*g^d(GKk!WHZ= zkdz;%Z0;1p*hjs3q%WIzuc1+y)A!IAGnF1AD#NTO{ntxtfSfXugQI20azO1I8K)(v z%c*>e`3B8SnbCbT+JlzC=I-5FCO2#KTm^Pf2hPrzXAbW@50*zH5maV*;Z$;Tl#pwD z1T~MdtoB7H?XrNBGaDd`vi`0oYhCF3uR)St?z<^Y2+wDdBIKq);5-}o4QLtu4>OLR zi|TSR8i%3J+(l+zSu-Qk$dmjY^r6A&MD-|N=*V!*7}pyWLtc;$On5kt^g*|#dYY)N zj(h(jbO;TPiD~8w*W>Nc=un^AmaAs5;`q(bOXh1a;47$`&$)+4&CJNVsI@;sJLRnV z0)394K2d}HjHJnkg_=Gy6UJl8wH5JDQa3Kx^>9X*>8Y-j!IpGyFO_8J^pk>Q`45Wu z4bj&+sSB(1E&39r^~|p0O;dwdkdL8dE>8;2174aHPxf3~{F?Qedgf>B`T_lk&Nsoj z3GZzZcu8+6q7+l^yaXFYN4>+Gjpvf;H*RZLXvkDnn9`BhFS|J?J1iY~wnbc*3K19B z3=8LJf!%SIpUe?;eZpp@YYkpo2_@h3i4YlUdh4@r9>{mi$kCc9F*BwPZo>$M@B&oS zv!hjT!+Zup^B&o?)3~Kg*7ynaMmx)OJs+9f2o#c8p!P`x;eFUL--Y;(c9TjH&*JzS ju>D`L4%BXg`j&kE(=X~5U7ytgwpT^1|ZL+7dkTAkl8mkr+hm#Jl><&7?ZeOr`j3-)4 zn&cYQDFdZ~mkRkT6PLpn`@nJxwnxZOg2u~5D{RcCDudf%C8{fA!wbq&`=VLP>A&8@*a>_WJ!^^_?@L-hMuex*|9G#AT2mQ|CAhHVbKABoS!<=R$)v zCU)$v)pqCph`1@`#mC`_KU&f>J;>-fNV^o5q&K7-7=18+*5|pDkgYLr6PdJ)pdqsP z{R{l?zfELr_?rDze5Y&7kPX!JG%J!hu9EWOQ_ojJ22Fpj<_IKS6or$vU^3b^4I-MA#9bFv3qo)uRS>mGL2==3lH8Or)0r@n6r%V7zJ+U7 zu6+Zc?;tK*`v#g$Y%T82+@CYwJ+UV>w1w7W$^{-mC-!8A@a^%g4=LWY&BM!+BSFR> z?3XHfuOO4*5nN-Mf!!Jc1A$Yxn3bHyv?~)Flp}6k0*(5F#cHE%WF%CoyDC8POcZk< zB;ia|y``REOrAbpYnFCesOPV@LJiQ(Ix;Etfyy(;?d4Lc4c|o#%otB`T9~M|weVIm zw|mHp2`fK#{`lQFO}mK`vIw%Hd%9>wgkehV3P9!asQYMTgjtc2PzAfelj;34eCNN7 zTioz5`L0@8w=e@5%Bwsnli9DK%Kbynl9@kGLWSBlbW3+O#++s&=#vP7JfLvSLntXW j^|l?!W5Kgzz$poGh0<-II?h4@>^FI<;^_yvqq*7-NW!E6 diff --git a/testdata/v1.31.0/storage.k8s.io.v1beta1.CSIDriver.yaml b/testdata/v1.31.0/storage.k8s.io.v1beta1.CSIDriver.yaml deleted file mode 100644 index 5fd85ceaae..0000000000 --- a/testdata/v1.31.0/storage.k8s.io.v1beta1.CSIDriver.yaml +++ /dev/null @@ -1,46 +0,0 @@ -apiVersion: storage.k8s.io/v1beta1 -kind: CSIDriver -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - attachRequired: true - fsGroupPolicy: fsGroupPolicyValue - podInfoOnMount: true - requiresRepublish: true - seLinuxMount: true - storageCapacity: true - tokenRequests: - - audience: audienceValue - expirationSeconds: 2 - volumeLifecycleModes: - - volumeLifecycleModesValue diff --git a/testdata/v1.31.0/storage.k8s.io.v1beta1.CSINode.json b/testdata/v1.31.0/storage.k8s.io.v1beta1.CSINode.json deleted file mode 100644 index 1a46a629e6..0000000000 --- a/testdata/v1.31.0/storage.k8s.io.v1beta1.CSINode.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "kind": "CSINode", - "apiVersion": "storage.k8s.io/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "drivers": [ - { - "name": "nameValue", - "nodeID": "nodeIDValue", - "topologyKeys": [ - "topologyKeysValue" - ], - "allocatable": { - "count": 1 - } - } - ] - } -} \ No newline at end of file diff --git a/testdata/v1.31.0/storage.k8s.io.v1beta1.CSINode.pb b/testdata/v1.31.0/storage.k8s.io.v1beta1.CSINode.pb deleted file mode 100644 index ad7b167aeb4ac19270efc946a931a83df4b70250..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 452 zcmZ9I!AiqG5QdYs&}6G^8bl;FbL^qD1tEB>UaC?A#e=tvnT9pn-LRV!qWA(nfOpS6 zf^Q)79mIoY-$1t;T7$QLXJ-HT=Su=Uk)Eo#& zIMdajIkv3j%hy}OF;10w{eD;K0^RH(o8l0tJcGh*l~Vr*ebmN`@eF6mM7N#FThH7b zB0C|hTdKDMmsU+%`{F_pjr7|80DA z!{_p+?ieFw1~igaMOuxWyFu$%)?Qbu*rF%Hu*|C^Pvr J%k&K2_yvARno9rx diff --git a/testdata/v1.31.0/storage.k8s.io.v1beta1.CSINode.yaml b/testdata/v1.31.0/storage.k8s.io.v1beta1.CSINode.yaml deleted file mode 100644 index f6b1789d1c..0000000000 --- a/testdata/v1.31.0/storage.k8s.io.v1beta1.CSINode.yaml +++ /dev/null @@ -1,42 +0,0 @@ -apiVersion: storage.k8s.io/v1beta1 -kind: CSINode -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - drivers: - - allocatable: - count: 1 - name: nameValue - nodeID: nodeIDValue - topologyKeys: - - topologyKeysValue diff --git a/testdata/v1.31.0/storage.k8s.io.v1beta1.CSIStorageCapacity.json b/testdata/v1.31.0/storage.k8s.io.v1beta1.CSIStorageCapacity.json deleted file mode 100644 index 059bd01659..0000000000 --- a/testdata/v1.31.0/storage.k8s.io.v1beta1.CSIStorageCapacity.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "kind": "CSIStorageCapacity", - "apiVersion": "storage.k8s.io/v1beta1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "nodeTopology": { - "matchLabels": { - "matchLabelsKey": "matchLabelsValue" - }, - "matchExpressions": [ - { - "key": "keyValue", - "operator": "operatorValue", - "values": [ - "valuesValue" - ] - } - ] - }, - "storageClassName": "storageClassNameValue", - "capacity": "0", - "maximumVolumeSize": "0" -} \ No newline at end of file diff --git a/testdata/v1.31.0/storage.k8s.io.v1beta1.CSIStorageCapacity.pb b/testdata/v1.31.0/storage.k8s.io.v1beta1.CSIStorageCapacity.pb deleted file mode 100644 index a61d0d13094ff823b28d2452c665e63749a51912..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 523 zcmZ8eO-{l<6mEgUG6>X0jp?!r7sMctm^3b7r4nO;apCS21{_;vnwgfQ8ZY22Tzdp> zV8X@|7#FU+flg z?X|zExjjPFkWf9?{nPIiYFbT*$-0n^>6^ScB@`lZCj}~=M>9a1bD+{Lt^!Vj#rgg# z`R;!jPww!s{4U!@Pm5a-}&W8C=x3|G9nV4?SUk1JD);<8X$$p(nbS9cKLiC9rSTuC#tkpb++V z5xf^bg~ABkK$0T6HA56}n4pWLX!mwku} z%&1bmEx%k|Jb%8HEaOB*FJEsm8iCtgP$4itM4Y0zUDctQ2wc#Bl(GaSa)~Ni8@cMa zI|7vuQ+?Q3^SdjWP7}s>6QpN)CT~tLg#_PAK(*(|3_vY{R2s#VU^iHt|G&g{{;zT6 z4W|%waoYB#n?S-N1Bq&L$eh-vc|K93nkxSF@Z% JKkXQ<@e457z_cM4M+&3M53WV&;g>MrJzSj!(V_XC@2su70k|fKWvUoD!Q3BZ{El6{ob3I9Evq? z;j)ksCu6!lITZUWdg<)ih)Qw|TX&;iHl?piNxai34JH0-3w~LLYDlK^E(vB7Z;ok5 zIg#{sDzcl&sfdYZRGfyO!O2Y)PV^18GGo48b+$Pb(TpoS$_0x;Ej@guSE)Sy^0yx@ zS!;c@`u5MC)M^0t+fWV2hz8$A$)Hg;BG)Wjnl1ODlA6tdJ)_L$UR3|Jnj_o{t zCyT~yk(d<&IY5Vqw@z3{0`^b^sO>yLBdAYFsKDY{fSXaAP(<9jY6i#xG)K9s*u*c?P6q3HIAY{ z%iZcs+0)BTeM0A)g=4+zK3C-F3MsFn?#Bo=CE;T#2N9RVSi=?ep5bA8!`WiO6YMCI zl%J$*c8g&gpl&_ZmrcCa(Xh7y7}gut+cW-4v&U=QBwWa@!!V%tn3_T896FjN?mD zrIT?G1I324V<#Qbwt{LNcqhiPl;=-6mvsfQ=YO1G+>guHT zKSW2+@R^uozHmL+9uJT7xovrB7Aub5iu}cVEe8A|>g03o5mGZV_AhGfPtk5U>pn-H zA*helU_U2mGGeZ#&(wtRgmUe~Jd)H)3U(u!5@vd;V`Z={y0@E3vUGZjf@Jyki}?-E zS30Q+tMv`~0;ToLuH$V}gG7*zp;a!A3(o^ynH5j>TwMH`b(?zTXYBeO{ehO7VAF*6 z776`DZz`e`Q+BVymeEn~FlVEgr2389Srr;Gl@+FRB=*W~_R9`Shn{T_&!a*l1vbON z`MT0!^#cFcDn`J>%ZU$MXc>{19^&+Sexe-bH&bjX3yLc$o^Nu=6Tbf(=HHFW*`fneDL&$N~_ z&NQlX21@xa74lgobq*680L#$d9V15x8n2hFpqWoq3iriI*igtuSCl9AMXQ$4p;f&- ziArSB?4eXtaNCWx`nB5P_4~c*ITuE~{d^d8L+%bqok5IDUE<8&E~I@CholLd3k}+s z*s-@!+nt9KQcox^J`UFW;fki^LP|G5j!RKVx+BVg(YXP%KF_6?>`Z{0#H4NbO_ApJ zFY$x_HlexUYw=t0oSrd5HdME>v`FT(O3IH>{(yhs+E4HY zMCd<=3)kIuq0^bRR&jS9XYP4S=m`T3U{fTFqX73wz)?aNt%shd6Sh5QpeVjU4SW4k zBifh?xj&l&?MV*avtUxx$88j)*j^1V#qtV1pO2i%bSq-i(Ga&RaMU{`G*mBYg_Lwv zwY$c#U@4b4O{1pXO0!THJ$=69E#p{L&*L{)UBLAQm=W@EBu?*!j`#F4WYjC??B7b~0XuS9^q_h}=nm>ds@vhf*I=nI2aIyTanB zf0>f%oxf*X>EUDam9vapc??Hg(Hh1&nf*Lu?;o0$Nc}|;D%2y`0th%uW6e<-ECuA0 ze}nA~qY0rYZm|&0L|nlkn8}>SE()1VsvS5|&*XJ1^|(cjk(lYOmE@lZX-hNy`!$Z? F8sAtO%wzxn diff --git a/testdata/v1.31.0/storagemigration.k8s.io.v1alpha1.StorageVersionMigration.yaml b/testdata/v1.31.0/storagemigration.k8s.io.v1alpha1.StorageVersionMigration.yaml deleted file mode 100644 index 577d619c12..0000000000 --- a/testdata/v1.31.0/storagemigration.k8s.io.v1alpha1.StorageVersionMigration.yaml +++ /dev/null @@ -1,48 +0,0 @@ -apiVersion: storagemigration.k8s.io/v1alpha1 -kind: StorageVersionMigration -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - continueToken: continueTokenValue - resource: - group: groupValue - resource: resourceValue - version: versionValue -status: - conditions: - - lastUpdateTime: "2003-01-01T01:01:01Z" - message: messageValue - reason: reasonValue - status: statusValue - type: typeValue - resourceVersion: resourceVersionValue From 7421a41940e191255ddde503d0c378ebbcfffd06 Mon Sep 17 00:00:00 2001 From: Kubernetes Publisher Date: Fri, 25 Apr 2025 06:24:38 -0700 Subject: [PATCH 017/100] Merge pull request #131465 from pacoxu/v1.33.0-api-testdata v1.33.0 api testdata Kubernetes-commit: 09d0ffee6bcc69e821f3f8bd0eda094e4b729c89 From b8910dbe401c2f2b0a0d0c70812f07c11cb9786e Mon Sep 17 00:00:00 2001 From: Jordan Liggitt Date: Mon, 24 Mar 2025 16:34:01 -0400 Subject: [PATCH 018/100] bump structured-merge-diff to add omitzero support Kubernetes-commit: 06b0784062f68566daa8eed83c475b738dcf620c --- go.mod | 6 ++++-- go.sum | 29 +++++++++++++++++++++++++---- 2 files changed, 29 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index 27706e28f3..647ed4505b 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ godebug default=go1.24 require ( github.com/gogo/protobuf v1.3.2 - k8s.io/apimachinery v0.0.0-20250423231524-954960919938 + k8s.io/apimachinery v0.0.0 ) require ( @@ -30,6 +30,8 @@ require ( k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e // indirect sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect sigs.k8s.io/randfill v1.0.0 // indirect - sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect + sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect sigs.k8s.io/yaml v1.4.0 // indirect ) + +replace k8s.io/apimachinery => ../apimachinery diff --git a/go.sum b/go.sum index 1f22e56075..40480e89ce 100644 --- a/go.sum +++ b/go.sum @@ -1,3 +1,4 @@ +github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= @@ -6,12 +7,18 @@ github.com/fxamacker/cbor/v2 v2.7.0 h1:iM5WgngdRBanHcxugY4JySA0nk1wZorNOpTgCMedv github.com/fxamacker/cbor/v2 v2.7.0/go.mod h1:pxXPTn3joSm21Gbwsv0w9OSA2y1HFR9qXEeXQVeNoDQ= github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY= github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= +github.com/go-openapi/jsonpointer v0.21.0/go.mod h1:IUyH9l/+uyhIYQ/PXVA41Rexl+kOkAPDdXEYns6fzUY= +github.com/go-openapi/jsonreference v0.20.2/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k= +github.com/go-openapi/swag v0.23.0/go.mod h1:esZ8ITTYEsH1V2trKHjAN8Ai7xHb8RV+YSZ577vPjgQ= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= +github.com/google/gnostic-models v0.6.9/go.mod h1:CiWsm0s6BSQd1hRn8/QmxqB6BesYcbSZxsz9b0KuDBw= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= @@ -23,12 +30,18 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= +github.com/moby/spdystream v0.5.0/go.mod h1:xBAYlnt/ay+11ShkdFKNAG7LsyK/tmNBVvVOwrfMgdI= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= +github.com/onsi/ginkgo/v2 v2.21.0/go.mod h1:7Du3c42kxCUegi0IImZ1wUQzMBVecgIHjR1C+NkhLQo= +github.com/onsi/gomega v1.35.1/go.mod h1:PvZbdDc8J6XJEpDK4HCuRBm8a6Fzp9/DmhC9C7yFlog= github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= +github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= @@ -47,8 +60,10 @@ github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9dec golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.36.0/go.mod h1:Y4J0ReaxCR1IMaabaSMugxJES1EpwhBHhv2bDHklZvc= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= @@ -58,32 +73,38 @@ golang.org/x/net v0.38.0/go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.12.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= +golang.org/x/term v0.30.0/go.mod h1:NYYFdzHoI5wRh/h5tDMdMqCqPJZEuNqVR5xJLd/n67g= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.23.0 h1:D71I7dUrlY+VX0gQShAThNGHFxZ13dGLBHQLVl1mJlY= golang.org/x/text v0.23.0/go.mod h1:/BLNzu4aZCJ1+kcD0DNRotWKage4q2rGVAg4o22unh4= +golang.org/x/time v0.9.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/protobuf v1.36.5/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= +gopkg.in/evanphx/json-patch.v4 v4.12.0/go.mod h1:p8EYWUEYMpynmqDbY58zCKCFZw8pRWMG4EsWvDvM72M= gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc= gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -k8s.io/apimachinery v0.0.0-20250423231524-954960919938 h1:yoIMbzO4of8M4auqFKjNsbFlHJG9jCuoD+4sUJUPdn4= -k8s.io/apimachinery v0.0.0-20250423231524-954960919938/go.mod h1:tJ77gZ1upNffdrQVxg+oIoEmvSIyTbz3RIPi9HKw+nw= k8s.io/klog/v2 v2.130.1 h1:n9Xl7H1Xvksem4KFG4PYbdQCQxqc/tTUyrgXaOhHSzk= k8s.io/klog/v2 v2.130.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE= +k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff/go.mod h1:5jIi+8yX4RIb8wk3XwBo5Pq2ccx4FP10ohkbSKCZoK8= k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e h1:KqK5c/ghOm8xkHYhlodbp6i6+r+ChV2vuAuVRdFbLro= k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 h1:/Rv+M11QRah1itp8VhT6HoVx1Ray9eB4DBr+K+/sCJ8= @@ -91,7 +112,7 @@ sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3/go.mod h1:18nIHnGi6636UCz6m8 sigs.k8s.io/randfill v0.0.0-20250304075658-069ef1bbf016/go.mod h1:XeLlZ/jmk4i1HRopwe7/aU3H5n1zNUcX6TM94b3QxOY= sigs.k8s.io/randfill v1.0.0 h1:JfjMILfT8A6RbawdsK2JXGBR5AQVfd+9TbzrlneTyrU= sigs.k8s.io/randfill v1.0.0/go.mod h1:XeLlZ/jmk4i1HRopwe7/aU3H5n1zNUcX6TM94b3QxOY= -sigs.k8s.io/structured-merge-diff/v4 v4.6.0 h1:IUA9nvMmnKWcj5jl84xn+T5MnlZKThmUW1TdblaLVAc= -sigs.k8s.io/structured-merge-diff/v4 v4.6.0/go.mod h1:dDy58f92j70zLsuZVuUX5Wp9vtxXpaZnkPGWeqDfCps= +sigs.k8s.io/structured-merge-diff/v4 v4.7.0 h1:qPeWmscJcXP0snki5IYF79Z8xrl8ETFxgMd7wez1XkI= +sigs.k8s.io/structured-merge-diff/v4 v4.7.0/go.mod h1:dDy58f92j70zLsuZVuUX5Wp9vtxXpaZnkPGWeqDfCps= sigs.k8s.io/yaml v1.4.0 h1:Mk1wCc2gy/F0THH0TAp1QYyJNzRm2KCLy3o5ASXVI5E= sigs.k8s.io/yaml v1.4.0/go.mod h1:Ejl7/uTz7PSA4eKMyQCUTnhZYNmLIl+5c2lQPGR2BPY= From c5204eac046635b19a621ff6b90e43a66efd3fd2 Mon Sep 17 00:00:00 2001 From: Jordan Liggitt Date: Tue, 25 Mar 2025 12:27:43 -0400 Subject: [PATCH 019/100] bump cbor to add omitzero support Kubernetes-commit: bc6051717137cef288b82305588e675de4a32c0d --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 647ed4505b..fdcdb96052 100644 --- a/go.mod +++ b/go.mod @@ -13,7 +13,7 @@ require ( require ( github.com/davecgh/go-spew v1.1.1 // indirect - github.com/fxamacker/cbor/v2 v2.7.0 // indirect + github.com/fxamacker/cbor/v2 v2.8.0 // indirect github.com/go-logr/logr v1.4.2 // indirect github.com/google/go-cmp v0.7.0 // indirect github.com/json-iterator/go v1.1.12 // indirect diff --git a/go.sum b/go.sum index 40480e89ce..5fe1a6939d 100644 --- a/go.sum +++ b/go.sum @@ -3,8 +3,8 @@ github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ3 github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/fxamacker/cbor/v2 v2.7.0 h1:iM5WgngdRBanHcxugY4JySA0nk1wZorNOpTgCMedv5E= -github.com/fxamacker/cbor/v2 v2.7.0/go.mod h1:pxXPTn3joSm21Gbwsv0w9OSA2y1HFR9qXEeXQVeNoDQ= +github.com/fxamacker/cbor/v2 v2.8.0 h1:fFtUGXUzXPHTIUdne5+zzMPTfffl3RD5qYnkY40vtxU= +github.com/fxamacker/cbor/v2 v2.8.0/go.mod h1:vM4b+DJCtHn+zz7h3FFp/hDAI9WNWCsZj23V5ytsSxQ= github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY= github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= github.com/go-openapi/jsonpointer v0.21.0/go.mod h1:IUyH9l/+uyhIYQ/PXVA41Rexl+kOkAPDdXEYns6fzUY= From 048497663346a7dccfc5a251ba282e8a1178141f Mon Sep 17 00:00:00 2001 From: Kubernetes Publisher Date: Fri, 2 May 2025 15:17:58 -0700 Subject: [PATCH 020/100] Merge pull request #130989 from liggitt/creationTimestamp-omitzero Omit null creationTimestamp Kubernetes-commit: 01899a7c86337b05a16a4155c9351cf947beaee9 --- go.mod | 4 +--- go.sum | 25 ++----------------------- 2 files changed, 3 insertions(+), 26 deletions(-) diff --git a/go.mod b/go.mod index fdcdb96052..0bacbb0cca 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ godebug default=go1.24 require ( github.com/gogo/protobuf v1.3.2 - k8s.io/apimachinery v0.0.0 + k8s.io/apimachinery v0.0.0-20250502231139-7b819a3b8251 ) require ( @@ -33,5 +33,3 @@ require ( sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect sigs.k8s.io/yaml v1.4.0 // indirect ) - -replace k8s.io/apimachinery => ../apimachinery diff --git a/go.sum b/go.sum index 5fe1a6939d..b5c23f6ed9 100644 --- a/go.sum +++ b/go.sum @@ -1,4 +1,3 @@ -github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= @@ -7,18 +6,12 @@ github.com/fxamacker/cbor/v2 v2.8.0 h1:fFtUGXUzXPHTIUdne5+zzMPTfffl3RD5qYnkY40vt github.com/fxamacker/cbor/v2 v2.8.0/go.mod h1:vM4b+DJCtHn+zz7h3FFp/hDAI9WNWCsZj23V5ytsSxQ= github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY= github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= -github.com/go-openapi/jsonpointer v0.21.0/go.mod h1:IUyH9l/+uyhIYQ/PXVA41Rexl+kOkAPDdXEYns6fzUY= -github.com/go-openapi/jsonreference v0.20.2/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k= -github.com/go-openapi/swag v0.23.0/go.mod h1:esZ8ITTYEsH1V2trKHjAN8Ai7xHb8RV+YSZ577vPjgQ= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= -github.com/google/gnostic-models v0.6.9/go.mod h1:CiWsm0s6BSQd1hRn8/QmxqB6BesYcbSZxsz9b0KuDBw= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= -github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= @@ -30,18 +23,12 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= -github.com/moby/spdystream v0.5.0/go.mod h1:xBAYlnt/ay+11ShkdFKNAG7LsyK/tmNBVvVOwrfMgdI= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= -github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= -github.com/onsi/ginkgo/v2 v2.21.0/go.mod h1:7Du3c42kxCUegi0IImZ1wUQzMBVecgIHjR1C+NkhLQo= -github.com/onsi/gomega v1.35.1/go.mod h1:PvZbdDc8J6XJEpDK4HCuRBm8a6Fzp9/DmhC9C7yFlog= github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= -github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= @@ -60,10 +47,8 @@ github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9dec golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.36.0/go.mod h1:Y4J0ReaxCR1IMaabaSMugxJES1EpwhBHhv2bDHklZvc= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= @@ -73,38 +58,32 @@ golang.org/x/net v0.38.0/go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.12.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= -golang.org/x/term v0.30.0/go.mod h1:NYYFdzHoI5wRh/h5tDMdMqCqPJZEuNqVR5xJLd/n67g= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.23.0 h1:D71I7dUrlY+VX0gQShAThNGHFxZ13dGLBHQLVl1mJlY= golang.org/x/text v0.23.0/go.mod h1:/BLNzu4aZCJ1+kcD0DNRotWKage4q2rGVAg4o22unh4= -golang.org/x/time v0.9.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -google.golang.org/protobuf v1.36.5/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= -gopkg.in/evanphx/json-patch.v4 v4.12.0/go.mod h1:p8EYWUEYMpynmqDbY58zCKCFZw8pRWMG4EsWvDvM72M= gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc= gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +k8s.io/apimachinery v0.0.0-20250502231139-7b819a3b8251 h1:3JqU+gucAjU21QK76//QfcHsZbf3q4yHTJDd+2lcvDY= +k8s.io/apimachinery v0.0.0-20250502231139-7b819a3b8251/go.mod h1:0pMWyZpD6XMdEZH7m603fxzIbQTYVULO0/DuZ4BH04g= k8s.io/klog/v2 v2.130.1 h1:n9Xl7H1Xvksem4KFG4PYbdQCQxqc/tTUyrgXaOhHSzk= k8s.io/klog/v2 v2.130.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE= -k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff/go.mod h1:5jIi+8yX4RIb8wk3XwBo5Pq2ccx4FP10ohkbSKCZoK8= k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e h1:KqK5c/ghOm8xkHYhlodbp6i6+r+ChV2vuAuVRdFbLro= k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 h1:/Rv+M11QRah1itp8VhT6HoVx1Ray9eB4DBr+K+/sCJ8= From cbbd23fc0ca3859ed60e24b220e8dd36ce488e93 Mon Sep 17 00:00:00 2001 From: Antonio Ojea Date: Fri, 2 May 2025 11:21:11 +0000 Subject: [PATCH 021/100] update k8s.io/utils to bring fakeClock.Waiters() Change-Id: I7e25338df225c2c27457403fbc2f158d08638f87 Kubernetes-commit: c2c003a71fc52fa79c2fff0109afad58573d0216 --- go.mod | 6 ++++-- go.sum | 29 +++++++++++++++++++++++++---- 2 files changed, 29 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index 0bacbb0cca..9bdda2c3f8 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ godebug default=go1.24 require ( github.com/gogo/protobuf v1.3.2 - k8s.io/apimachinery v0.0.0-20250502231139-7b819a3b8251 + k8s.io/apimachinery v0.0.0 ) require ( @@ -27,9 +27,11 @@ require ( gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect gopkg.in/inf.v0 v0.9.1 // indirect k8s.io/klog/v2 v2.130.1 // indirect - k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e // indirect + k8s.io/utils v0.0.0-20250502105355-0f33e8f1c979 // indirect sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect sigs.k8s.io/randfill v1.0.0 // indirect sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect sigs.k8s.io/yaml v1.4.0 // indirect ) + +replace k8s.io/apimachinery => ../apimachinery diff --git a/go.sum b/go.sum index b5c23f6ed9..25f9d026f8 100644 --- a/go.sum +++ b/go.sum @@ -1,3 +1,4 @@ +github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= @@ -6,12 +7,18 @@ github.com/fxamacker/cbor/v2 v2.8.0 h1:fFtUGXUzXPHTIUdne5+zzMPTfffl3RD5qYnkY40vt github.com/fxamacker/cbor/v2 v2.8.0/go.mod h1:vM4b+DJCtHn+zz7h3FFp/hDAI9WNWCsZj23V5ytsSxQ= github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY= github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= +github.com/go-openapi/jsonpointer v0.21.0/go.mod h1:IUyH9l/+uyhIYQ/PXVA41Rexl+kOkAPDdXEYns6fzUY= +github.com/go-openapi/jsonreference v0.20.2/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k= +github.com/go-openapi/swag v0.23.0/go.mod h1:esZ8ITTYEsH1V2trKHjAN8Ai7xHb8RV+YSZ577vPjgQ= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= +github.com/google/gnostic-models v0.6.9/go.mod h1:CiWsm0s6BSQd1hRn8/QmxqB6BesYcbSZxsz9b0KuDBw= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= @@ -23,12 +30,18 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= +github.com/moby/spdystream v0.5.0/go.mod h1:xBAYlnt/ay+11ShkdFKNAG7LsyK/tmNBVvVOwrfMgdI= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= +github.com/onsi/ginkgo/v2 v2.21.0/go.mod h1:7Du3c42kxCUegi0IImZ1wUQzMBVecgIHjR1C+NkhLQo= +github.com/onsi/gomega v1.35.1/go.mod h1:PvZbdDc8J6XJEpDK4HCuRBm8a6Fzp9/DmhC9C7yFlog= github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= +github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= @@ -47,8 +60,10 @@ github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9dec golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.36.0/go.mod h1:Y4J0ReaxCR1IMaabaSMugxJES1EpwhBHhv2bDHklZvc= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= @@ -58,34 +73,40 @@ golang.org/x/net v0.38.0/go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.12.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= +golang.org/x/term v0.30.0/go.mod h1:NYYFdzHoI5wRh/h5tDMdMqCqPJZEuNqVR5xJLd/n67g= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.23.0 h1:D71I7dUrlY+VX0gQShAThNGHFxZ13dGLBHQLVl1mJlY= golang.org/x/text v0.23.0/go.mod h1:/BLNzu4aZCJ1+kcD0DNRotWKage4q2rGVAg4o22unh4= +golang.org/x/time v0.9.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/protobuf v1.36.5/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= +gopkg.in/evanphx/json-patch.v4 v4.12.0/go.mod h1:p8EYWUEYMpynmqDbY58zCKCFZw8pRWMG4EsWvDvM72M= gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc= gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -k8s.io/apimachinery v0.0.0-20250502231139-7b819a3b8251 h1:3JqU+gucAjU21QK76//QfcHsZbf3q4yHTJDd+2lcvDY= -k8s.io/apimachinery v0.0.0-20250502231139-7b819a3b8251/go.mod h1:0pMWyZpD6XMdEZH7m603fxzIbQTYVULO0/DuZ4BH04g= k8s.io/klog/v2 v2.130.1 h1:n9Xl7H1Xvksem4KFG4PYbdQCQxqc/tTUyrgXaOhHSzk= k8s.io/klog/v2 v2.130.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE= -k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e h1:KqK5c/ghOm8xkHYhlodbp6i6+r+ChV2vuAuVRdFbLro= -k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= +k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff/go.mod h1:5jIi+8yX4RIb8wk3XwBo5Pq2ccx4FP10ohkbSKCZoK8= +k8s.io/utils v0.0.0-20250502105355-0f33e8f1c979 h1:jgJW5IePPXLGB8e/1wvd0Ich9QE97RvvF3a8J3fP/Lg= +k8s.io/utils v0.0.0-20250502105355-0f33e8f1c979/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 h1:/Rv+M11QRah1itp8VhT6HoVx1Ray9eB4DBr+K+/sCJ8= sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3/go.mod h1:18nIHnGi6636UCz6m8i4DhaJ65T6EruyzmoQqI2BVDo= sigs.k8s.io/randfill v0.0.0-20250304075658-069ef1bbf016/go.mod h1:XeLlZ/jmk4i1HRopwe7/aU3H5n1zNUcX6TM94b3QxOY= From f7e72be095ee5a3e60d9df2f79b6591ee329734a Mon Sep 17 00:00:00 2001 From: Kubernetes Publisher Date: Fri, 2 May 2025 19:30:02 -0700 Subject: [PATCH 022/100] Merge pull request #131595 from aojea/utils_fake_clock update k8s.io/utils to bring fakeClock.Waiters() Kubernetes-commit: e3e1f80c0110c847acf4381b1790c1c667395010 --- go.mod | 4 +--- go.sum | 25 ++----------------------- 2 files changed, 3 insertions(+), 26 deletions(-) diff --git a/go.mod b/go.mod index 9bdda2c3f8..d68d297435 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ godebug default=go1.24 require ( github.com/gogo/protobuf v1.3.2 - k8s.io/apimachinery v0.0.0 + k8s.io/apimachinery v0.0.0-20250503031111-512f488de379 ) require ( @@ -33,5 +33,3 @@ require ( sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect sigs.k8s.io/yaml v1.4.0 // indirect ) - -replace k8s.io/apimachinery => ../apimachinery diff --git a/go.sum b/go.sum index 25f9d026f8..4fe6c4598d 100644 --- a/go.sum +++ b/go.sum @@ -1,4 +1,3 @@ -github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= @@ -7,18 +6,12 @@ github.com/fxamacker/cbor/v2 v2.8.0 h1:fFtUGXUzXPHTIUdne5+zzMPTfffl3RD5qYnkY40vt github.com/fxamacker/cbor/v2 v2.8.0/go.mod h1:vM4b+DJCtHn+zz7h3FFp/hDAI9WNWCsZj23V5ytsSxQ= github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY= github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= -github.com/go-openapi/jsonpointer v0.21.0/go.mod h1:IUyH9l/+uyhIYQ/PXVA41Rexl+kOkAPDdXEYns6fzUY= -github.com/go-openapi/jsonreference v0.20.2/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k= -github.com/go-openapi/swag v0.23.0/go.mod h1:esZ8ITTYEsH1V2trKHjAN8Ai7xHb8RV+YSZ577vPjgQ= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= -github.com/google/gnostic-models v0.6.9/go.mod h1:CiWsm0s6BSQd1hRn8/QmxqB6BesYcbSZxsz9b0KuDBw= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= -github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= @@ -30,18 +23,12 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= -github.com/moby/spdystream v0.5.0/go.mod h1:xBAYlnt/ay+11ShkdFKNAG7LsyK/tmNBVvVOwrfMgdI= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= -github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= -github.com/onsi/ginkgo/v2 v2.21.0/go.mod h1:7Du3c42kxCUegi0IImZ1wUQzMBVecgIHjR1C+NkhLQo= -github.com/onsi/gomega v1.35.1/go.mod h1:PvZbdDc8J6XJEpDK4HCuRBm8a6Fzp9/DmhC9C7yFlog= github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= -github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= @@ -60,10 +47,8 @@ github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9dec golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.36.0/go.mod h1:Y4J0ReaxCR1IMaabaSMugxJES1EpwhBHhv2bDHklZvc= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= @@ -73,38 +58,32 @@ golang.org/x/net v0.38.0/go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.12.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= -golang.org/x/term v0.30.0/go.mod h1:NYYFdzHoI5wRh/h5tDMdMqCqPJZEuNqVR5xJLd/n67g= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.23.0 h1:D71I7dUrlY+VX0gQShAThNGHFxZ13dGLBHQLVl1mJlY= golang.org/x/text v0.23.0/go.mod h1:/BLNzu4aZCJ1+kcD0DNRotWKage4q2rGVAg4o22unh4= -golang.org/x/time v0.9.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -google.golang.org/protobuf v1.36.5/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= -gopkg.in/evanphx/json-patch.v4 v4.12.0/go.mod h1:p8EYWUEYMpynmqDbY58zCKCFZw8pRWMG4EsWvDvM72M= gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc= gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +k8s.io/apimachinery v0.0.0-20250503031111-512f488de379 h1:SRKtgNyQVTGF7yOs8CXK9AhZMd/1g5h4YlHAkYVXq5Y= +k8s.io/apimachinery v0.0.0-20250503031111-512f488de379/go.mod h1:b+h1nads2hmyfwvvorkgHUriRTTaJ2p2mk0l03sESn8= k8s.io/klog/v2 v2.130.1 h1:n9Xl7H1Xvksem4KFG4PYbdQCQxqc/tTUyrgXaOhHSzk= k8s.io/klog/v2 v2.130.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE= -k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff/go.mod h1:5jIi+8yX4RIb8wk3XwBo5Pq2ccx4FP10ohkbSKCZoK8= k8s.io/utils v0.0.0-20250502105355-0f33e8f1c979 h1:jgJW5IePPXLGB8e/1wvd0Ich9QE97RvvF3a8J3fP/Lg= k8s.io/utils v0.0.0-20250502105355-0f33e8f1c979/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 h1:/Rv+M11QRah1itp8VhT6HoVx1Ray9eB4DBr+K+/sCJ8= From 39d7731c13a9ee5b69ec4f9fbb16910d0386a336 Mon Sep 17 00:00:00 2001 From: Antonio Ojea Date: Wed, 30 Apr 2025 09:18:02 +0000 Subject: [PATCH 023/100] remove networking v1alpha1 and make update Kubernetes-commit: 15ab88f88bf19b738cee0e63f1c1d83e720331a8 --- networking/v1alpha1/doc.go | 23 - networking/v1alpha1/generated.pb.go | 1929 ----------------- networking/v1alpha1/generated.proto | 142 -- networking/v1alpha1/register.go | 62 - networking/v1alpha1/types.go | 154 -- .../v1alpha1/types_swagger_doc_generated.go | 110 - networking/v1alpha1/well_known_labels.go | 33 - networking/v1alpha1/zz_generated.deepcopy.go | 229 -- .../zz_generated.prerelease-lifecycle.go | 94 - roundtrip_test.go | 2 - .../networking.k8s.io.v1alpha1.IPAddress.json | 54 - .../networking.k8s.io.v1alpha1.IPAddress.pb | Bin 465 -> 0 bytes .../networking.k8s.io.v1alpha1.IPAddress.yaml | 40 - ...etworking.k8s.io.v1alpha1.ServiceCIDR.json | 63 - .../networking.k8s.io.v1alpha1.ServiceCIDR.pb | Bin 490 -> 0 bytes ...etworking.k8s.io.v1alpha1.ServiceCIDR.yaml | 45 - 16 files changed, 2980 deletions(-) delete mode 100644 networking/v1alpha1/doc.go delete mode 100644 networking/v1alpha1/generated.pb.go delete mode 100644 networking/v1alpha1/generated.proto delete mode 100644 networking/v1alpha1/register.go delete mode 100644 networking/v1alpha1/types.go delete mode 100644 networking/v1alpha1/types_swagger_doc_generated.go delete mode 100644 networking/v1alpha1/well_known_labels.go delete mode 100644 networking/v1alpha1/zz_generated.deepcopy.go delete mode 100644 networking/v1alpha1/zz_generated.prerelease-lifecycle.go delete mode 100644 testdata/HEAD/networking.k8s.io.v1alpha1.IPAddress.json delete mode 100644 testdata/HEAD/networking.k8s.io.v1alpha1.IPAddress.pb delete mode 100644 testdata/HEAD/networking.k8s.io.v1alpha1.IPAddress.yaml delete mode 100644 testdata/HEAD/networking.k8s.io.v1alpha1.ServiceCIDR.json delete mode 100644 testdata/HEAD/networking.k8s.io.v1alpha1.ServiceCIDR.pb delete mode 100644 testdata/HEAD/networking.k8s.io.v1alpha1.ServiceCIDR.yaml diff --git a/networking/v1alpha1/doc.go b/networking/v1alpha1/doc.go deleted file mode 100644 index 55264ae707..0000000000 --- a/networking/v1alpha1/doc.go +++ /dev/null @@ -1,23 +0,0 @@ -/* -Copyright 2022 The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// +k8s:deepcopy-gen=package -// +k8s:protobuf-gen=package -// +k8s:openapi-gen=true -// +k8s:prerelease-lifecycle-gen=true -// +groupName=networking.k8s.io - -package v1alpha1 diff --git a/networking/v1alpha1/generated.pb.go b/networking/v1alpha1/generated.pb.go deleted file mode 100644 index 0d42034837..0000000000 --- a/networking/v1alpha1/generated.pb.go +++ /dev/null @@ -1,1929 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: k8s.io/api/networking/v1alpha1/generated.proto - -package v1alpha1 - -import ( - fmt "fmt" - - io "io" - - proto "github.com/gogo/protobuf/proto" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - - math "math" - math_bits "math/bits" - reflect "reflect" - strings "strings" -) - -// Reference imports to suppress errors if they are not otherwise used. -var _ = proto.Marshal -var _ = fmt.Errorf -var _ = math.Inf - -// This is a compile-time assertion to ensure that this generated file -// is compatible with the proto package it is being compiled against. -// A compilation error at this line likely means your copy of the -// proto package needs to be updated. -const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package - -func (m *IPAddress) Reset() { *m = IPAddress{} } -func (*IPAddress) ProtoMessage() {} -func (*IPAddress) Descriptor() ([]byte, []int) { - return fileDescriptor_c1cb39e7b48ce50d, []int{0} -} -func (m *IPAddress) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *IPAddress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil -} -func (m *IPAddress) XXX_Merge(src proto.Message) { - xxx_messageInfo_IPAddress.Merge(m, src) -} -func (m *IPAddress) XXX_Size() int { - return m.Size() -} -func (m *IPAddress) XXX_DiscardUnknown() { - xxx_messageInfo_IPAddress.DiscardUnknown(m) -} - -var xxx_messageInfo_IPAddress proto.InternalMessageInfo - -func (m *IPAddressList) Reset() { *m = IPAddressList{} } -func (*IPAddressList) ProtoMessage() {} -func (*IPAddressList) Descriptor() ([]byte, []int) { - return fileDescriptor_c1cb39e7b48ce50d, []int{1} -} -func (m *IPAddressList) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *IPAddressList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil -} -func (m *IPAddressList) XXX_Merge(src proto.Message) { - xxx_messageInfo_IPAddressList.Merge(m, src) -} -func (m *IPAddressList) XXX_Size() int { - return m.Size() -} -func (m *IPAddressList) XXX_DiscardUnknown() { - xxx_messageInfo_IPAddressList.DiscardUnknown(m) -} - -var xxx_messageInfo_IPAddressList proto.InternalMessageInfo - -func (m *IPAddressSpec) Reset() { *m = IPAddressSpec{} } -func (*IPAddressSpec) ProtoMessage() {} -func (*IPAddressSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_c1cb39e7b48ce50d, []int{2} -} -func (m *IPAddressSpec) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *IPAddressSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil -} -func (m *IPAddressSpec) XXX_Merge(src proto.Message) { - xxx_messageInfo_IPAddressSpec.Merge(m, src) -} -func (m *IPAddressSpec) XXX_Size() int { - return m.Size() -} -func (m *IPAddressSpec) XXX_DiscardUnknown() { - xxx_messageInfo_IPAddressSpec.DiscardUnknown(m) -} - -var xxx_messageInfo_IPAddressSpec proto.InternalMessageInfo - -func (m *ParentReference) Reset() { *m = ParentReference{} } -func (*ParentReference) ProtoMessage() {} -func (*ParentReference) Descriptor() ([]byte, []int) { - return fileDescriptor_c1cb39e7b48ce50d, []int{3} -} -func (m *ParentReference) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *ParentReference) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil -} -func (m *ParentReference) XXX_Merge(src proto.Message) { - xxx_messageInfo_ParentReference.Merge(m, src) -} -func (m *ParentReference) XXX_Size() int { - return m.Size() -} -func (m *ParentReference) XXX_DiscardUnknown() { - xxx_messageInfo_ParentReference.DiscardUnknown(m) -} - -var xxx_messageInfo_ParentReference proto.InternalMessageInfo - -func (m *ServiceCIDR) Reset() { *m = ServiceCIDR{} } -func (*ServiceCIDR) ProtoMessage() {} -func (*ServiceCIDR) Descriptor() ([]byte, []int) { - return fileDescriptor_c1cb39e7b48ce50d, []int{4} -} -func (m *ServiceCIDR) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *ServiceCIDR) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil -} -func (m *ServiceCIDR) XXX_Merge(src proto.Message) { - xxx_messageInfo_ServiceCIDR.Merge(m, src) -} -func (m *ServiceCIDR) XXX_Size() int { - return m.Size() -} -func (m *ServiceCIDR) XXX_DiscardUnknown() { - xxx_messageInfo_ServiceCIDR.DiscardUnknown(m) -} - -var xxx_messageInfo_ServiceCIDR proto.InternalMessageInfo - -func (m *ServiceCIDRList) Reset() { *m = ServiceCIDRList{} } -func (*ServiceCIDRList) ProtoMessage() {} -func (*ServiceCIDRList) Descriptor() ([]byte, []int) { - return fileDescriptor_c1cb39e7b48ce50d, []int{5} -} -func (m *ServiceCIDRList) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *ServiceCIDRList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil -} -func (m *ServiceCIDRList) XXX_Merge(src proto.Message) { - xxx_messageInfo_ServiceCIDRList.Merge(m, src) -} -func (m *ServiceCIDRList) XXX_Size() int { - return m.Size() -} -func (m *ServiceCIDRList) XXX_DiscardUnknown() { - xxx_messageInfo_ServiceCIDRList.DiscardUnknown(m) -} - -var xxx_messageInfo_ServiceCIDRList proto.InternalMessageInfo - -func (m *ServiceCIDRSpec) Reset() { *m = ServiceCIDRSpec{} } -func (*ServiceCIDRSpec) ProtoMessage() {} -func (*ServiceCIDRSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_c1cb39e7b48ce50d, []int{6} -} -func (m *ServiceCIDRSpec) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *ServiceCIDRSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil -} -func (m *ServiceCIDRSpec) XXX_Merge(src proto.Message) { - xxx_messageInfo_ServiceCIDRSpec.Merge(m, src) -} -func (m *ServiceCIDRSpec) XXX_Size() int { - return m.Size() -} -func (m *ServiceCIDRSpec) XXX_DiscardUnknown() { - xxx_messageInfo_ServiceCIDRSpec.DiscardUnknown(m) -} - -var xxx_messageInfo_ServiceCIDRSpec proto.InternalMessageInfo - -func (m *ServiceCIDRStatus) Reset() { *m = ServiceCIDRStatus{} } -func (*ServiceCIDRStatus) ProtoMessage() {} -func (*ServiceCIDRStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_c1cb39e7b48ce50d, []int{7} -} -func (m *ServiceCIDRStatus) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *ServiceCIDRStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil -} -func (m *ServiceCIDRStatus) XXX_Merge(src proto.Message) { - xxx_messageInfo_ServiceCIDRStatus.Merge(m, src) -} -func (m *ServiceCIDRStatus) XXX_Size() int { - return m.Size() -} -func (m *ServiceCIDRStatus) XXX_DiscardUnknown() { - xxx_messageInfo_ServiceCIDRStatus.DiscardUnknown(m) -} - -var xxx_messageInfo_ServiceCIDRStatus proto.InternalMessageInfo - -func init() { - proto.RegisterType((*IPAddress)(nil), "k8s.io.api.networking.v1alpha1.IPAddress") - proto.RegisterType((*IPAddressList)(nil), "k8s.io.api.networking.v1alpha1.IPAddressList") - proto.RegisterType((*IPAddressSpec)(nil), "k8s.io.api.networking.v1alpha1.IPAddressSpec") - proto.RegisterType((*ParentReference)(nil), "k8s.io.api.networking.v1alpha1.ParentReference") - proto.RegisterType((*ServiceCIDR)(nil), "k8s.io.api.networking.v1alpha1.ServiceCIDR") - proto.RegisterType((*ServiceCIDRList)(nil), "k8s.io.api.networking.v1alpha1.ServiceCIDRList") - proto.RegisterType((*ServiceCIDRSpec)(nil), "k8s.io.api.networking.v1alpha1.ServiceCIDRSpec") - proto.RegisterType((*ServiceCIDRStatus)(nil), "k8s.io.api.networking.v1alpha1.ServiceCIDRStatus") -} - -func init() { - proto.RegisterFile("k8s.io/api/networking/v1alpha1/generated.proto", fileDescriptor_c1cb39e7b48ce50d) -} - -var fileDescriptor_c1cb39e7b48ce50d = []byte{ - // 634 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x55, 0xcd, 0x6e, 0xd3, 0x4a, - 0x18, 0x8d, 0xdb, 0xa4, 0xaa, 0x27, 0xb7, 0xb7, 0xb7, 0x5e, 0x45, 0x5d, 0x38, 0x91, 0xef, 0xa6, - 0x08, 0x3a, 0x26, 0x11, 0x42, 0x6c, 0x71, 0x2b, 0xa1, 0x4a, 0xd0, 0x96, 0xe9, 0x0a, 0xd4, 0x05, - 0xd3, 0xc9, 0x57, 0x67, 0x08, 0xfe, 0xd1, 0xcc, 0x24, 0xc0, 0x8e, 0x47, 0xe0, 0x05, 0x78, 0x0e, - 0x56, 0x20, 0xb1, 0xeb, 0xb2, 0xcb, 0xae, 0x2a, 0x6a, 0x5e, 0x04, 0xcd, 0xd8, 0xb1, 0x93, 0x46, - 0xfd, 0xdb, 0x74, 0xe7, 0xef, 0xcc, 0x39, 0x67, 0xbe, 0xf3, 0xcd, 0x8c, 0x8c, 0xf0, 0xf0, 0x99, - 0xc4, 0x3c, 0xf1, 0x69, 0xca, 0xfd, 0x18, 0xd4, 0xc7, 0x44, 0x0c, 0x79, 0x1c, 0xfa, 0xe3, 0x2e, - 0xfd, 0x90, 0x0e, 0x68, 0xd7, 0x0f, 0x21, 0x06, 0x41, 0x15, 0xf4, 0x71, 0x2a, 0x12, 0x95, 0x38, - 0x6e, 0xce, 0xc7, 0x34, 0xe5, 0xb8, 0xe2, 0xe3, 0x09, 0x7f, 0x7d, 0x33, 0xe4, 0x6a, 0x30, 0x3a, - 0xc2, 0x2c, 0x89, 0xfc, 0x30, 0x09, 0x13, 0xdf, 0xc8, 0x8e, 0x46, 0xc7, 0xa6, 0x32, 0x85, 0xf9, - 0xca, 0xed, 0xd6, 0x9f, 0x54, 0xdb, 0x47, 0x94, 0x0d, 0x78, 0x0c, 0xe2, 0xb3, 0x9f, 0x0e, 0x43, - 0x0d, 0x48, 0x3f, 0x02, 0x45, 0xfd, 0xf1, 0x5c, 0x13, 0xeb, 0xfe, 0x55, 0x2a, 0x31, 0x8a, 0x15, - 0x8f, 0x60, 0x4e, 0xf0, 0xf4, 0x26, 0x81, 0x64, 0x03, 0x88, 0xe8, 0x65, 0x9d, 0xf7, 0xd3, 0x42, - 0xf6, 0xce, 0xfe, 0xf3, 0x7e, 0x5f, 0x80, 0x94, 0xce, 0x3b, 0xb4, 0xac, 0x3b, 0xea, 0x53, 0x45, - 0x5b, 0x56, 0xc7, 0xda, 0x68, 0xf6, 0x1e, 0xe3, 0x6a, 0x1c, 0xa5, 0x31, 0x4e, 0x87, 0xa1, 0x06, - 0x24, 0xd6, 0x6c, 0x3c, 0xee, 0xe2, 0xbd, 0xa3, 0xf7, 0xc0, 0xd4, 0x2b, 0x50, 0x34, 0x70, 0x4e, - 0xce, 0xdb, 0xb5, 0xec, 0xbc, 0x8d, 0x2a, 0x8c, 0x94, 0xae, 0xce, 0x1e, 0xaa, 0xcb, 0x14, 0x58, - 0x6b, 0xc1, 0xb8, 0x6f, 0xe2, 0xeb, 0x87, 0x8d, 0xcb, 0xd6, 0x0e, 0x52, 0x60, 0xc1, 0x3f, 0x85, - 0x75, 0x5d, 0x57, 0xc4, 0x18, 0x79, 0x3f, 0x2c, 0xb4, 0x52, 0xb2, 0x5e, 0x72, 0xa9, 0x9c, 0xc3, - 0xb9, 0x10, 0xf8, 0x76, 0x21, 0xb4, 0xda, 0x44, 0xf8, 0xaf, 0xd8, 0x67, 0x79, 0x82, 0x4c, 0x05, - 0xd8, 0x45, 0x0d, 0xae, 0x20, 0x92, 0xad, 0x85, 0xce, 0xe2, 0x46, 0xb3, 0xf7, 0xe0, 0xd6, 0x09, - 0x82, 0x95, 0xc2, 0xb5, 0xb1, 0xa3, 0xf5, 0x24, 0xb7, 0xf1, 0xa2, 0xa9, 0xf6, 0x75, 0x2c, 0xe7, - 0x10, 0xd9, 0x29, 0x15, 0x10, 0x2b, 0x02, 0xc7, 0x45, 0xff, 0xfe, 0x4d, 0x9b, 0xec, 0x4f, 0x04, - 0x20, 0x20, 0x66, 0x10, 0xac, 0x64, 0xe7, 0x6d, 0xbb, 0x04, 0x49, 0x65, 0xe8, 0x7d, 0xb7, 0xd0, - 0xea, 0x25, 0xb6, 0xf3, 0x3f, 0x6a, 0x84, 0x22, 0x19, 0xa5, 0x66, 0x37, 0xbb, 0xea, 0xf3, 0x85, - 0x06, 0x49, 0xbe, 0xe6, 0x3c, 0x42, 0xcb, 0x02, 0x64, 0x32, 0x12, 0x0c, 0xcc, 0xe1, 0xd9, 0xd5, - 0x94, 0x48, 0x81, 0x93, 0x92, 0xe1, 0xf8, 0xc8, 0x8e, 0x69, 0x04, 0x32, 0xa5, 0x0c, 0x5a, 0x8b, - 0x86, 0xbe, 0x56, 0xd0, 0xed, 0xdd, 0xc9, 0x02, 0xa9, 0x38, 0x4e, 0x07, 0xd5, 0x75, 0xd1, 0xaa, - 0x1b, 0x6e, 0x79, 0xd0, 0x9a, 0x4b, 0xcc, 0x8a, 0xf7, 0x6d, 0x01, 0x35, 0x0f, 0x40, 0x8c, 0x39, - 0x83, 0xad, 0x9d, 0x6d, 0x72, 0x0f, 0x77, 0xf5, 0xf5, 0xcc, 0x5d, 0xbd, 0xf1, 0x10, 0xa6, 0x9a, - 0xbb, 0xea, 0xb6, 0x3a, 0x6f, 0xd0, 0x92, 0x54, 0x54, 0x8d, 0xa4, 0x19, 0x4a, 0xb3, 0xd7, 0xbd, - 0x8b, 0xa9, 0x11, 0x06, 0xff, 0x16, 0xb6, 0x4b, 0x79, 0x4d, 0x0a, 0x43, 0xef, 0x97, 0x85, 0x56, - 0xa7, 0xd8, 0xf7, 0xf0, 0x14, 0xf6, 0x67, 0x9f, 0xc2, 0xc3, 0x3b, 0x64, 0xb9, 0xe2, 0x31, 0xf4, - 0x66, 0x22, 0x98, 0xe7, 0xd0, 0x46, 0x0d, 0xc6, 0xfb, 0x42, 0xb6, 0xac, 0xce, 0xe2, 0x86, 0x1d, - 0xd8, 0x5a, 0xa3, 0x17, 0x25, 0xc9, 0x71, 0xef, 0x13, 0x5a, 0x9b, 0x1b, 0x92, 0xc3, 0x10, 0x62, - 0x49, 0xdc, 0xe7, 0x8a, 0x27, 0x71, 0x2e, 0x9d, 0x3d, 0xc0, 0x6b, 0xa2, 0x6f, 0x4d, 0x74, 0xd5, - 0xed, 0x28, 0x21, 0x49, 0xa6, 0x6c, 0x83, 0xed, 0x93, 0x0b, 0xb7, 0x76, 0x7a, 0xe1, 0xd6, 0xce, - 0x2e, 0xdc, 0xda, 0x97, 0xcc, 0xb5, 0x4e, 0x32, 0xd7, 0x3a, 0xcd, 0x5c, 0xeb, 0x2c, 0x73, 0xad, - 0xdf, 0x99, 0x6b, 0x7d, 0xfd, 0xe3, 0xd6, 0xde, 0xba, 0xd7, 0xff, 0x7f, 0xfe, 0x06, 0x00, 0x00, - 0xff, 0xff, 0xb1, 0xd0, 0x33, 0x02, 0xa0, 0x06, 0x00, 0x00, -} - -func (m *IPAddress) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *IPAddress) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *IPAddress) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size, err := m.Spec.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - { - size, err := m.ObjectMeta.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *IPAddressList) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *IPAddressList) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *IPAddressList) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Items) > 0 { - for iNdEx := len(m.Items) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Items[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - } - } - { - size, err := m.ListMeta.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *IPAddressSpec) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *IPAddressSpec) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *IPAddressSpec) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if m.ParentRef != nil { - { - size, err := m.ParentRef.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - -func (m *ParentReference) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *ParentReference) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *ParentReference) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - i -= len(m.Name) - copy(dAtA[i:], m.Name) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name))) - i-- - dAtA[i] = 0x22 - i -= len(m.Namespace) - copy(dAtA[i:], m.Namespace) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Namespace))) - i-- - dAtA[i] = 0x1a - i -= len(m.Resource) - copy(dAtA[i:], m.Resource) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Resource))) - i-- - dAtA[i] = 0x12 - i -= len(m.Group) - copy(dAtA[i:], m.Group) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Group))) - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *ServiceCIDR) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *ServiceCIDR) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *ServiceCIDR) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size, err := m.Status.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a - { - size, err := m.Spec.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - { - size, err := m.ObjectMeta.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *ServiceCIDRList) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *ServiceCIDRList) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *ServiceCIDRList) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Items) > 0 { - for iNdEx := len(m.Items) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Items[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - } - } - { - size, err := m.ListMeta.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *ServiceCIDRSpec) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *ServiceCIDRSpec) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *ServiceCIDRSpec) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.CIDRs) > 0 { - for iNdEx := len(m.CIDRs) - 1; iNdEx >= 0; iNdEx-- { - i -= len(m.CIDRs[iNdEx]) - copy(dAtA[i:], m.CIDRs[iNdEx]) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.CIDRs[iNdEx]))) - i-- - dAtA[i] = 0xa - } - } - return len(dAtA) - i, nil -} - -func (m *ServiceCIDRStatus) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *ServiceCIDRStatus) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *ServiceCIDRStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Conditions) > 0 { - for iNdEx := len(m.Conditions) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Conditions[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - } - } - return len(dAtA) - i, nil -} - -func encodeVarintGenerated(dAtA []byte, offset int, v uint64) int { - offset -= sovGenerated(v) - base := offset - for v >= 1<<7 { - dAtA[offset] = uint8(v&0x7f | 0x80) - v >>= 7 - offset++ - } - dAtA[offset] = uint8(v) - return base -} -func (m *IPAddress) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.ObjectMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) - l = m.Spec.Size() - n += 1 + l + sovGenerated(uint64(l)) - return n -} - -func (m *IPAddressList) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.ListMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) - if len(m.Items) > 0 { - for _, e := range m.Items { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - return n -} - -func (m *IPAddressSpec) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.ParentRef != nil { - l = m.ParentRef.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - return n -} - -func (m *ParentReference) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Group) - n += 1 + l + sovGenerated(uint64(l)) - l = len(m.Resource) - n += 1 + l + sovGenerated(uint64(l)) - l = len(m.Namespace) - n += 1 + l + sovGenerated(uint64(l)) - l = len(m.Name) - n += 1 + l + sovGenerated(uint64(l)) - return n -} - -func (m *ServiceCIDR) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.ObjectMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) - l = m.Spec.Size() - n += 1 + l + sovGenerated(uint64(l)) - l = m.Status.Size() - n += 1 + l + sovGenerated(uint64(l)) - return n -} - -func (m *ServiceCIDRList) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.ListMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) - if len(m.Items) > 0 { - for _, e := range m.Items { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - return n -} - -func (m *ServiceCIDRSpec) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if len(m.CIDRs) > 0 { - for _, s := range m.CIDRs { - l = len(s) - n += 1 + l + sovGenerated(uint64(l)) - } - } - return n -} - -func (m *ServiceCIDRStatus) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if len(m.Conditions) > 0 { - for _, e := range m.Conditions { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - return n -} - -func sovGenerated(x uint64) (n int) { - return (math_bits.Len64(x|1) + 6) / 7 -} -func sozGenerated(x uint64) (n int) { - return sovGenerated(uint64((x << 1) ^ uint64((int64(x) >> 63)))) -} -func (this *IPAddress) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&IPAddress{`, - `ObjectMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ObjectMeta), "ObjectMeta", "v1.ObjectMeta", 1), `&`, ``, 1) + `,`, - `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "IPAddressSpec", "IPAddressSpec", 1), `&`, ``, 1) + `,`, - `}`, - }, "") - return s -} -func (this *IPAddressList) String() string { - if this == nil { - return "nil" - } - repeatedStringForItems := "[]IPAddress{" - for _, f := range this.Items { - repeatedStringForItems += strings.Replace(strings.Replace(f.String(), "IPAddress", "IPAddress", 1), `&`, ``, 1) + "," - } - repeatedStringForItems += "}" - s := strings.Join([]string{`&IPAddressList{`, - `ListMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ListMeta), "ListMeta", "v1.ListMeta", 1), `&`, ``, 1) + `,`, - `Items:` + repeatedStringForItems + `,`, - `}`, - }, "") - return s -} -func (this *IPAddressSpec) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&IPAddressSpec{`, - `ParentRef:` + strings.Replace(this.ParentRef.String(), "ParentReference", "ParentReference", 1) + `,`, - `}`, - }, "") - return s -} -func (this *ParentReference) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&ParentReference{`, - `Group:` + fmt.Sprintf("%v", this.Group) + `,`, - `Resource:` + fmt.Sprintf("%v", this.Resource) + `,`, - `Namespace:` + fmt.Sprintf("%v", this.Namespace) + `,`, - `Name:` + fmt.Sprintf("%v", this.Name) + `,`, - `}`, - }, "") - return s -} -func (this *ServiceCIDR) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&ServiceCIDR{`, - `ObjectMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ObjectMeta), "ObjectMeta", "v1.ObjectMeta", 1), `&`, ``, 1) + `,`, - `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "ServiceCIDRSpec", "ServiceCIDRSpec", 1), `&`, ``, 1) + `,`, - `Status:` + strings.Replace(strings.Replace(this.Status.String(), "ServiceCIDRStatus", "ServiceCIDRStatus", 1), `&`, ``, 1) + `,`, - `}`, - }, "") - return s -} -func (this *ServiceCIDRList) String() string { - if this == nil { - return "nil" - } - repeatedStringForItems := "[]ServiceCIDR{" - for _, f := range this.Items { - repeatedStringForItems += strings.Replace(strings.Replace(f.String(), "ServiceCIDR", "ServiceCIDR", 1), `&`, ``, 1) + "," - } - repeatedStringForItems += "}" - s := strings.Join([]string{`&ServiceCIDRList{`, - `ListMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ListMeta), "ListMeta", "v1.ListMeta", 1), `&`, ``, 1) + `,`, - `Items:` + repeatedStringForItems + `,`, - `}`, - }, "") - return s -} -func (this *ServiceCIDRSpec) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&ServiceCIDRSpec{`, - `CIDRs:` + fmt.Sprintf("%v", this.CIDRs) + `,`, - `}`, - }, "") - return s -} -func (this *ServiceCIDRStatus) String() string { - if this == nil { - return "nil" - } - repeatedStringForConditions := "[]Condition{" - for _, f := range this.Conditions { - repeatedStringForConditions += fmt.Sprintf("%v", f) + "," - } - repeatedStringForConditions += "}" - s := strings.Join([]string{`&ServiceCIDRStatus{`, - `Conditions:` + repeatedStringForConditions + `,`, - `}`, - }, "") - return s -} -func valueToStringGenerated(v interface{}) string { - rv := reflect.ValueOf(v) - if rv.IsNil() { - return "nil" - } - pv := reflect.Indirect(rv).Interface() - return fmt.Sprintf("*%v", pv) -} -func (m *IPAddress) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: IPAddress: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: IPAddress: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ObjectMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.ObjectMeta.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Spec", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Spec.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *IPAddressList) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: IPAddressList: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: IPAddressList: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ListMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.ListMeta.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Items", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Items = append(m.Items, IPAddress{}) - if err := m.Items[len(m.Items)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *IPAddressSpec) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: IPAddressSpec: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: IPAddressSpec: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ParentRef", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.ParentRef == nil { - m.ParentRef = &ParentReference{} - } - if err := m.ParentRef.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *ParentReference) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: ParentReference: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: ParentReference: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Group", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Group = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Resource", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Resource = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Namespace", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Namespace = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Name = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *ServiceCIDR) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: ServiceCIDR: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: ServiceCIDR: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ObjectMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.ObjectMeta.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Spec", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Spec.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Status.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *ServiceCIDRList) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: ServiceCIDRList: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: ServiceCIDRList: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ListMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.ListMeta.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Items", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Items = append(m.Items, ServiceCIDR{}) - if err := m.Items[len(m.Items)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *ServiceCIDRSpec) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: ServiceCIDRSpec: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: ServiceCIDRSpec: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field CIDRs", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.CIDRs = append(m.CIDRs, string(dAtA[iNdEx:postIndex])) - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *ServiceCIDRStatus) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: ServiceCIDRStatus: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: ServiceCIDRStatus: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Conditions", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Conditions = append(m.Conditions, v1.Condition{}) - if err := m.Conditions[len(m.Conditions)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func skipGenerated(dAtA []byte) (n int, err error) { - l := len(dAtA) - iNdEx := 0 - depth := 0 - for iNdEx < l { - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return 0, ErrIntOverflowGenerated - } - if iNdEx >= l { - return 0, io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - wireType := int(wire & 0x7) - switch wireType { - case 0: - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return 0, ErrIntOverflowGenerated - } - if iNdEx >= l { - return 0, io.ErrUnexpectedEOF - } - iNdEx++ - if dAtA[iNdEx-1] < 0x80 { - break - } - } - case 1: - iNdEx += 8 - case 2: - var length int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return 0, ErrIntOverflowGenerated - } - if iNdEx >= l { - return 0, io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - length |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if length < 0 { - return 0, ErrInvalidLengthGenerated - } - iNdEx += length - case 3: - depth++ - case 4: - if depth == 0 { - return 0, ErrUnexpectedEndOfGroupGenerated - } - depth-- - case 5: - iNdEx += 4 - default: - return 0, fmt.Errorf("proto: illegal wireType %d", wireType) - } - if iNdEx < 0 { - return 0, ErrInvalidLengthGenerated - } - if depth == 0 { - return iNdEx, nil - } - } - return 0, io.ErrUnexpectedEOF -} - -var ( - ErrInvalidLengthGenerated = fmt.Errorf("proto: negative length found during unmarshaling") - ErrIntOverflowGenerated = fmt.Errorf("proto: integer overflow") - ErrUnexpectedEndOfGroupGenerated = fmt.Errorf("proto: unexpected end of group") -) diff --git a/networking/v1alpha1/generated.proto b/networking/v1alpha1/generated.proto deleted file mode 100644 index 80ec6af735..0000000000 --- a/networking/v1alpha1/generated.proto +++ /dev/null @@ -1,142 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - - -// This file was autogenerated by go-to-protobuf. Do not edit it manually! - -syntax = "proto2"; - -package k8s.io.api.networking.v1alpha1; - -import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto"; -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 = "k8s.io/api/networking/v1alpha1"; - -// IPAddress represents a single IP of a single IP Family. The object is designed to be used by APIs -// that operate on IP addresses. The object is used by the Service core API for allocation of IP addresses. -// An IP address can be represented in different formats, to guarantee the uniqueness of the IP, -// the name of the object is the IP address in canonical format, four decimal digits separated -// by dots suppressing leading zeros for IPv4 and the representation defined by RFC 5952 for IPv6. -// Valid: 192.168.1.5 or 2001:db8::1 or 2001:db8:aaaa:bbbb:cccc:dddd:eeee:1 -// Invalid: 10.01.2.3 or 2001:db8:0:0:0::1 -message IPAddress { - // Standard object's metadata. - // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata - // +optional - optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1; - - // spec is the desired state of the IPAddress. - // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status - // +optional - optional IPAddressSpec spec = 2; -} - -// IPAddressList contains a list of IPAddress. -message IPAddressList { - // Standard object's metadata. - // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata - // +optional - optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1; - - // items is the list of IPAddresses. - repeated IPAddress items = 2; -} - -// IPAddressSpec describe the attributes in an IP Address. -message IPAddressSpec { - // ParentRef references the resource that an IPAddress is attached to. - // An IPAddress must reference a parent object. - // +required - optional ParentReference parentRef = 1; -} - -// ParentReference describes a reference to a parent object. -message ParentReference { - // Group is the group of the object being referenced. - // +optional - optional string group = 1; - - // Resource is the resource of the object being referenced. - // +required - optional string resource = 2; - - // Namespace is the namespace of the object being referenced. - // +optional - optional string namespace = 3; - - // Name is the name of the object being referenced. - // +required - optional string name = 4; -} - -// ServiceCIDR defines a range of IP addresses using CIDR format (e.g. 192.168.0.0/24 or 2001:db2::/64). -// This range is used to allocate ClusterIPs to Service objects. -message ServiceCIDR { - // Standard object's metadata. - // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata - // +optional - optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1; - - // spec is the desired state of the ServiceCIDR. - // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status - // +optional - optional ServiceCIDRSpec spec = 2; - - // status represents the current state of the ServiceCIDR. - // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status - // +optional - optional ServiceCIDRStatus status = 3; -} - -// ServiceCIDRList contains a list of ServiceCIDR objects. -message ServiceCIDRList { - // Standard object's metadata. - // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata - // +optional - optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1; - - // items is the list of ServiceCIDRs. - repeated ServiceCIDR items = 2; -} - -// ServiceCIDRSpec define the CIDRs the user wants to use for allocating ClusterIPs for Services. -message ServiceCIDRSpec { - // CIDRs defines the IP blocks in CIDR notation (e.g. "192.168.0.0/24" or "2001:db8::/64") - // from which to assign service cluster IPs. Max of two CIDRs is allowed, one of each IP family. - // The network address of each CIDR, the address that identifies the subnet of a host, is reserved - // and will not be allocated. The broadcast address for IPv4 CIDRs is also reserved and will not be - // allocated. - // This field is immutable. - // +optional - // +listType=atomic - repeated string cidrs = 1; -} - -// ServiceCIDRStatus describes the current state of the ServiceCIDR. -message ServiceCIDRStatus { - // conditions holds an array of metav1.Condition that describe the state of the ServiceCIDR. - // Current service state - // +optional - // +patchMergeKey=type - // +patchStrategy=merge - // +listType=map - // +listMapKey=type - repeated .k8s.io.apimachinery.pkg.apis.meta.v1.Condition conditions = 1; -} - diff --git a/networking/v1alpha1/register.go b/networking/v1alpha1/register.go deleted file mode 100644 index c8f5856b5d..0000000000 --- a/networking/v1alpha1/register.go +++ /dev/null @@ -1,62 +0,0 @@ -/* -Copyright 2022 The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -package v1alpha1 - -import ( - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "k8s.io/apimachinery/pkg/runtime" - "k8s.io/apimachinery/pkg/runtime/schema" -) - -// GroupName is the group name used in this package. -const GroupName = "networking.k8s.io" - -// SchemeGroupVersion is group version used to register objects in this package. -var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1alpha1"} - -// Kind takes an unqualified kind and returns a Group qualified GroupKind. -func Kind(kind string) schema.GroupKind { - return SchemeGroupVersion.WithKind(kind).GroupKind() -} - -// Resource takes an unqualified resource and returns a Group qualified GroupResource. -func Resource(resource string) schema.GroupResource { - return SchemeGroupVersion.WithResource(resource).GroupResource() -} - -var ( - // SchemeBuilder holds functions that add things to a scheme. - // TODO: move SchemeBuilder with zz_generated.deepcopy.go to k8s.io/api. - // localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes. - SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) - localSchemeBuilder = &SchemeBuilder - - // AddToScheme adds the types of this group into the given scheme. - AddToScheme = localSchemeBuilder.AddToScheme -) - -// Adds the list of known types to the given scheme. -func addKnownTypes(scheme *runtime.Scheme) error { - scheme.AddKnownTypes(SchemeGroupVersion, - &IPAddress{}, - &IPAddressList{}, - &ServiceCIDR{}, - &ServiceCIDRList{}, - ) - metav1.AddToGroupVersion(scheme, SchemeGroupVersion) - return nil -} diff --git a/networking/v1alpha1/types.go b/networking/v1alpha1/types.go deleted file mode 100644 index 0e454f0263..0000000000 --- a/networking/v1alpha1/types.go +++ /dev/null @@ -1,154 +0,0 @@ -/* -Copyright 2022 The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -package v1alpha1 - -import ( - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" -) - -// +genclient -// +genclient:nonNamespaced -// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object -// +k8s:prerelease-lifecycle-gen:introduced=1.27 - -// IPAddress represents a single IP of a single IP Family. The object is designed to be used by APIs -// that operate on IP addresses. The object is used by the Service core API for allocation of IP addresses. -// An IP address can be represented in different formats, to guarantee the uniqueness of the IP, -// the name of the object is the IP address in canonical format, four decimal digits separated -// by dots suppressing leading zeros for IPv4 and the representation defined by RFC 5952 for IPv6. -// Valid: 192.168.1.5 or 2001:db8::1 or 2001:db8:aaaa:bbbb:cccc:dddd:eeee:1 -// Invalid: 10.01.2.3 or 2001:db8:0:0:0::1 -type IPAddress struct { - metav1.TypeMeta `json:",inline"` - // Standard object's metadata. - // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata - // +optional - metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"` - // spec is the desired state of the IPAddress. - // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status - // +optional - Spec IPAddressSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"` -} - -// IPAddressSpec describe the attributes in an IP Address. -type IPAddressSpec struct { - // ParentRef references the resource that an IPAddress is attached to. - // An IPAddress must reference a parent object. - // +required - ParentRef *ParentReference `json:"parentRef,omitempty" protobuf:"bytes,1,opt,name=parentRef"` -} - -// ParentReference describes a reference to a parent object. -type ParentReference struct { - // Group is the group of the object being referenced. - // +optional - Group string `json:"group,omitempty" protobuf:"bytes,1,opt,name=group"` - // Resource is the resource of the object being referenced. - // +required - Resource string `json:"resource,omitempty" protobuf:"bytes,2,opt,name=resource"` - // Namespace is the namespace of the object being referenced. - // +optional - Namespace string `json:"namespace,omitempty" protobuf:"bytes,3,opt,name=namespace"` - // Name is the name of the object being referenced. - // +required - Name string `json:"name,omitempty" protobuf:"bytes,4,opt,name=name"` -} - -// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object -// +k8s:prerelease-lifecycle-gen:introduced=1.27 - -// IPAddressList contains a list of IPAddress. -type IPAddressList struct { - metav1.TypeMeta `json:",inline"` - // Standard object's metadata. - // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata - // +optional - metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"` - // items is the list of IPAddresses. - Items []IPAddress `json:"items" protobuf:"bytes,2,rep,name=items"` -} - -// +genclient -// +genclient:nonNamespaced -// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object -// +k8s:prerelease-lifecycle-gen:introduced=1.27 - -// ServiceCIDR defines a range of IP addresses using CIDR format (e.g. 192.168.0.0/24 or 2001:db2::/64). -// This range is used to allocate ClusterIPs to Service objects. -type ServiceCIDR struct { - metav1.TypeMeta `json:",inline"` - // Standard object's metadata. - // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata - // +optional - metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"` - // spec is the desired state of the ServiceCIDR. - // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status - // +optional - Spec ServiceCIDRSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"` - // status represents the current state of the ServiceCIDR. - // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status - // +optional - Status ServiceCIDRStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"` -} - -// ServiceCIDRSpec define the CIDRs the user wants to use for allocating ClusterIPs for Services. -type ServiceCIDRSpec struct { - // CIDRs defines the IP blocks in CIDR notation (e.g. "192.168.0.0/24" or "2001:db8::/64") - // from which to assign service cluster IPs. Max of two CIDRs is allowed, one of each IP family. - // The network address of each CIDR, the address that identifies the subnet of a host, is reserved - // and will not be allocated. The broadcast address for IPv4 CIDRs is also reserved and will not be - // allocated. - // This field is immutable. - // +optional - // +listType=atomic - CIDRs []string `json:"cidrs,omitempty" protobuf:"bytes,1,opt,name=cidrs"` -} - -const ( - // ServiceCIDRConditionReady represents status of a ServiceCIDR that is ready to be used by the - // apiserver to allocate ClusterIPs for Services. - ServiceCIDRConditionReady = "Ready" - // ServiceCIDRReasonTerminating represents a reason where a ServiceCIDR is not ready because it is - // being deleted. - ServiceCIDRReasonTerminating = "Terminating" -) - -// ServiceCIDRStatus describes the current state of the ServiceCIDR. -type ServiceCIDRStatus struct { - // conditions holds an array of metav1.Condition that describe the state of the ServiceCIDR. - // Current service state - // +optional - // +patchMergeKey=type - // +patchStrategy=merge - // +listType=map - // +listMapKey=type - Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"` -} - -// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object -// +k8s:prerelease-lifecycle-gen:introduced=1.27 - -// ServiceCIDRList contains a list of ServiceCIDR objects. -type ServiceCIDRList struct { - metav1.TypeMeta `json:",inline"` - // Standard object's metadata. - // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata - // +optional - metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"` - // items is the list of ServiceCIDRs. - Items []ServiceCIDR `json:"items" protobuf:"bytes,2,rep,name=items"` -} diff --git a/networking/v1alpha1/types_swagger_doc_generated.go b/networking/v1alpha1/types_swagger_doc_generated.go deleted file mode 100644 index 4c8eb57a7a..0000000000 --- a/networking/v1alpha1/types_swagger_doc_generated.go +++ /dev/null @@ -1,110 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -package v1alpha1 - -// This file contains a collection of methods that can be used from go-restful to -// generate Swagger API documentation for its models. Please read this PR for more -// information on the implementation: https://github.com/emicklei/go-restful/pull/215 -// -// TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if -// they are on one line! For multiple line or blocks that you want to ignore use ---. -// Any context after a --- is ignored. -// -// Those methods can be generated by using hack/update-codegen.sh - -// AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT. -var map_IPAddress = map[string]string{ - "": "IPAddress represents a single IP of a single IP Family. The object is designed to be used by APIs that operate on IP addresses. The object is used by the Service core API for allocation of IP addresses. An IP address can be represented in different formats, to guarantee the uniqueness of the IP, the name of the object is the IP address in canonical format, four decimal digits separated by dots suppressing leading zeros for IPv4 and the representation defined by RFC 5952 for IPv6. Valid: 192.168.1.5 or 2001:db8::1 or 2001:db8:aaaa:bbbb:cccc:dddd:eeee:1 Invalid: 10.01.2.3 or 2001:db8:0:0:0::1", - "metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "spec": "spec is the desired state of the IPAddress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", -} - -func (IPAddress) SwaggerDoc() map[string]string { - return map_IPAddress -} - -var map_IPAddressList = map[string]string{ - "": "IPAddressList contains a list of IPAddress.", - "metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "items": "items is the list of IPAddresses.", -} - -func (IPAddressList) SwaggerDoc() map[string]string { - return map_IPAddressList -} - -var map_IPAddressSpec = map[string]string{ - "": "IPAddressSpec describe the attributes in an IP Address.", - "parentRef": "ParentRef references the resource that an IPAddress is attached to. An IPAddress must reference a parent object.", -} - -func (IPAddressSpec) SwaggerDoc() map[string]string { - return map_IPAddressSpec -} - -var map_ParentReference = map[string]string{ - "": "ParentReference describes a reference to a parent object.", - "group": "Group is the group of the object being referenced.", - "resource": "Resource is the resource of the object being referenced.", - "namespace": "Namespace is the namespace of the object being referenced.", - "name": "Name is the name of the object being referenced.", -} - -func (ParentReference) SwaggerDoc() map[string]string { - return map_ParentReference -} - -var map_ServiceCIDR = map[string]string{ - "": "ServiceCIDR defines a range of IP addresses using CIDR format (e.g. 192.168.0.0/24 or 2001:db2::/64). This range is used to allocate ClusterIPs to Service objects.", - "metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "spec": "spec is the desired state of the ServiceCIDR. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "status": "status represents the current state of the ServiceCIDR. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", -} - -func (ServiceCIDR) SwaggerDoc() map[string]string { - return map_ServiceCIDR -} - -var map_ServiceCIDRList = map[string]string{ - "": "ServiceCIDRList contains a list of ServiceCIDR objects.", - "metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "items": "items is the list of ServiceCIDRs.", -} - -func (ServiceCIDRList) SwaggerDoc() map[string]string { - return map_ServiceCIDRList -} - -var map_ServiceCIDRSpec = map[string]string{ - "": "ServiceCIDRSpec define the CIDRs the user wants to use for allocating ClusterIPs for Services.", - "cidrs": "CIDRs defines the IP blocks in CIDR notation (e.g. \"192.168.0.0/24\" or \"2001:db8::/64\") from which to assign service cluster IPs. Max of two CIDRs is allowed, one of each IP family. The network address of each CIDR, the address that identifies the subnet of a host, is reserved and will not be allocated. The broadcast address for IPv4 CIDRs is also reserved and will not be allocated. This field is immutable.", -} - -func (ServiceCIDRSpec) SwaggerDoc() map[string]string { - return map_ServiceCIDRSpec -} - -var map_ServiceCIDRStatus = map[string]string{ - "": "ServiceCIDRStatus describes the current state of the ServiceCIDR.", - "conditions": "conditions holds an array of metav1.Condition that describe the state of the ServiceCIDR. Current service state", -} - -func (ServiceCIDRStatus) SwaggerDoc() map[string]string { - return map_ServiceCIDRStatus -} - -// AUTO-GENERATED FUNCTIONS END HERE diff --git a/networking/v1alpha1/well_known_labels.go b/networking/v1alpha1/well_known_labels.go deleted file mode 100644 index 5f9c23f708..0000000000 --- a/networking/v1alpha1/well_known_labels.go +++ /dev/null @@ -1,33 +0,0 @@ -/* -Copyright 2023 The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -package v1alpha1 - -const ( - - // TODO: Use IPFamily as field with a field selector,And the value is set based on - // the name at create time and immutable. - // LabelIPAddressFamily is used to indicate the IP family of a Kubernetes IPAddress. - // This label simplify dual-stack client operations allowing to obtain the list of - // IP addresses filtered by family. - LabelIPAddressFamily = "ipaddress.kubernetes.io/ip-family" - // LabelManagedBy is used to indicate the controller or entity that manages - // an IPAddress. This label aims to enable different IPAddress - // objects to be managed by different controllers or entities within the - // same cluster. It is highly recommended to configure this label for all - // IPAddress objects. - LabelManagedBy = "ipaddress.kubernetes.io/managed-by" -) diff --git a/networking/v1alpha1/zz_generated.deepcopy.go b/networking/v1alpha1/zz_generated.deepcopy.go deleted file mode 100644 index 5c8f697ba3..0000000000 --- a/networking/v1alpha1/zz_generated.deepcopy.go +++ /dev/null @@ -1,229 +0,0 @@ -//go:build !ignore_autogenerated -// +build !ignore_autogenerated - -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by deepcopy-gen. DO NOT EDIT. - -package v1alpha1 - -import ( - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" -) - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *IPAddress) DeepCopyInto(out *IPAddress) { - *out = *in - out.TypeMeta = in.TypeMeta - in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) - in.Spec.DeepCopyInto(&out.Spec) - return -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPAddress. -func (in *IPAddress) DeepCopy() *IPAddress { - if in == nil { - return nil - } - out := new(IPAddress) - in.DeepCopyInto(out) - return out -} - -// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. -func (in *IPAddress) DeepCopyObject() runtime.Object { - if c := in.DeepCopy(); c != nil { - return c - } - return nil -} - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *IPAddressList) DeepCopyInto(out *IPAddressList) { - *out = *in - out.TypeMeta = in.TypeMeta - in.ListMeta.DeepCopyInto(&out.ListMeta) - if in.Items != nil { - in, out := &in.Items, &out.Items - *out = make([]IPAddress, len(*in)) - for i := range *in { - (*in)[i].DeepCopyInto(&(*out)[i]) - } - } - return -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPAddressList. -func (in *IPAddressList) DeepCopy() *IPAddressList { - if in == nil { - return nil - } - out := new(IPAddressList) - in.DeepCopyInto(out) - return out -} - -// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. -func (in *IPAddressList) DeepCopyObject() runtime.Object { - if c := in.DeepCopy(); c != nil { - return c - } - return nil -} - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *IPAddressSpec) DeepCopyInto(out *IPAddressSpec) { - *out = *in - if in.ParentRef != nil { - in, out := &in.ParentRef, &out.ParentRef - *out = new(ParentReference) - **out = **in - } - return -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPAddressSpec. -func (in *IPAddressSpec) DeepCopy() *IPAddressSpec { - if in == nil { - return nil - } - out := new(IPAddressSpec) - in.DeepCopyInto(out) - return out -} - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *ParentReference) DeepCopyInto(out *ParentReference) { - *out = *in - return -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ParentReference. -func (in *ParentReference) DeepCopy() *ParentReference { - if in == nil { - return nil - } - out := new(ParentReference) - in.DeepCopyInto(out) - return out -} - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *ServiceCIDR) DeepCopyInto(out *ServiceCIDR) { - *out = *in - out.TypeMeta = in.TypeMeta - in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) - in.Spec.DeepCopyInto(&out.Spec) - in.Status.DeepCopyInto(&out.Status) - return -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceCIDR. -func (in *ServiceCIDR) DeepCopy() *ServiceCIDR { - if in == nil { - return nil - } - out := new(ServiceCIDR) - in.DeepCopyInto(out) - return out -} - -// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. -func (in *ServiceCIDR) DeepCopyObject() runtime.Object { - if c := in.DeepCopy(); c != nil { - return c - } - return nil -} - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *ServiceCIDRList) DeepCopyInto(out *ServiceCIDRList) { - *out = *in - out.TypeMeta = in.TypeMeta - in.ListMeta.DeepCopyInto(&out.ListMeta) - if in.Items != nil { - in, out := &in.Items, &out.Items - *out = make([]ServiceCIDR, len(*in)) - for i := range *in { - (*in)[i].DeepCopyInto(&(*out)[i]) - } - } - return -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceCIDRList. -func (in *ServiceCIDRList) DeepCopy() *ServiceCIDRList { - if in == nil { - return nil - } - out := new(ServiceCIDRList) - in.DeepCopyInto(out) - return out -} - -// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. -func (in *ServiceCIDRList) DeepCopyObject() runtime.Object { - if c := in.DeepCopy(); c != nil { - return c - } - return nil -} - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *ServiceCIDRSpec) DeepCopyInto(out *ServiceCIDRSpec) { - *out = *in - if in.CIDRs != nil { - in, out := &in.CIDRs, &out.CIDRs - *out = make([]string, len(*in)) - copy(*out, *in) - } - return -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceCIDRSpec. -func (in *ServiceCIDRSpec) DeepCopy() *ServiceCIDRSpec { - if in == nil { - return nil - } - out := new(ServiceCIDRSpec) - in.DeepCopyInto(out) - return out -} - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *ServiceCIDRStatus) DeepCopyInto(out *ServiceCIDRStatus) { - *out = *in - if in.Conditions != nil { - in, out := &in.Conditions, &out.Conditions - *out = make([]v1.Condition, len(*in)) - for i := range *in { - (*in)[i].DeepCopyInto(&(*out)[i]) - } - } - return -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceCIDRStatus. -func (in *ServiceCIDRStatus) DeepCopy() *ServiceCIDRStatus { - if in == nil { - return nil - } - out := new(ServiceCIDRStatus) - in.DeepCopyInto(out) - return out -} diff --git a/networking/v1alpha1/zz_generated.prerelease-lifecycle.go b/networking/v1alpha1/zz_generated.prerelease-lifecycle.go deleted file mode 100644 index 714e7b6253..0000000000 --- a/networking/v1alpha1/zz_generated.prerelease-lifecycle.go +++ /dev/null @@ -1,94 +0,0 @@ -//go:build !ignore_autogenerated -// +build !ignore_autogenerated - -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by prerelease-lifecycle-gen. DO NOT EDIT. - -package v1alpha1 - -// APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison. -// It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go. -func (in *IPAddress) APILifecycleIntroduced() (major, minor int) { - return 1, 27 -} - -// APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison. -// It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or "k8s:prerelease-lifecycle-gen:introduced" plus three minor. -func (in *IPAddress) APILifecycleDeprecated() (major, minor int) { - return 1, 30 -} - -// APILifecycleRemoved is an autogenerated function, returning the release in which the API is no longer served as int versions of major and minor for comparison. -// It is controlled by "k8s:prerelease-lifecycle-gen:removed" tags in types.go or "k8s:prerelease-lifecycle-gen:deprecated" plus three minor. -func (in *IPAddress) APILifecycleRemoved() (major, minor int) { - return 1, 33 -} - -// APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison. -// It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go. -func (in *IPAddressList) APILifecycleIntroduced() (major, minor int) { - return 1, 27 -} - -// APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison. -// It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or "k8s:prerelease-lifecycle-gen:introduced" plus three minor. -func (in *IPAddressList) APILifecycleDeprecated() (major, minor int) { - return 1, 30 -} - -// APILifecycleRemoved is an autogenerated function, returning the release in which the API is no longer served as int versions of major and minor for comparison. -// It is controlled by "k8s:prerelease-lifecycle-gen:removed" tags in types.go or "k8s:prerelease-lifecycle-gen:deprecated" plus three minor. -func (in *IPAddressList) APILifecycleRemoved() (major, minor int) { - return 1, 33 -} - -// APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison. -// It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go. -func (in *ServiceCIDR) APILifecycleIntroduced() (major, minor int) { - return 1, 27 -} - -// APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison. -// It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or "k8s:prerelease-lifecycle-gen:introduced" plus three minor. -func (in *ServiceCIDR) APILifecycleDeprecated() (major, minor int) { - return 1, 30 -} - -// APILifecycleRemoved is an autogenerated function, returning the release in which the API is no longer served as int versions of major and minor for comparison. -// It is controlled by "k8s:prerelease-lifecycle-gen:removed" tags in types.go or "k8s:prerelease-lifecycle-gen:deprecated" plus three minor. -func (in *ServiceCIDR) APILifecycleRemoved() (major, minor int) { - return 1, 33 -} - -// APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison. -// It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go. -func (in *ServiceCIDRList) APILifecycleIntroduced() (major, minor int) { - return 1, 27 -} - -// APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison. -// It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or "k8s:prerelease-lifecycle-gen:introduced" plus three minor. -func (in *ServiceCIDRList) APILifecycleDeprecated() (major, minor int) { - return 1, 30 -} - -// APILifecycleRemoved is an autogenerated function, returning the release in which the API is no longer served as int versions of major and minor for comparison. -// It is controlled by "k8s:prerelease-lifecycle-gen:removed" tags in types.go or "k8s:prerelease-lifecycle-gen:deprecated" plus three minor. -func (in *ServiceCIDRList) APILifecycleRemoved() (major, minor int) { - return 1, 33 -} diff --git a/roundtrip_test.go b/roundtrip_test.go index 9d1f6a0fb5..19ae5312ce 100644 --- a/roundtrip_test.go +++ b/roundtrip_test.go @@ -59,7 +59,6 @@ import ( flowcontrolv1beta3 "k8s.io/api/flowcontrol/v1beta3" imagepolicyv1alpha1 "k8s.io/api/imagepolicy/v1alpha1" networkingv1 "k8s.io/api/networking/v1" - networkingv1alpha1 "k8s.io/api/networking/v1alpha1" networkingv1beta1 "k8s.io/api/networking/v1beta1" nodev1 "k8s.io/api/node/v1" nodev1alpha1 "k8s.io/api/node/v1alpha1" @@ -128,7 +127,6 @@ var groups = []runtime.SchemeBuilder{ imagepolicyv1alpha1.SchemeBuilder, networkingv1.SchemeBuilder, networkingv1beta1.SchemeBuilder, - networkingv1alpha1.SchemeBuilder, nodev1.SchemeBuilder, nodev1alpha1.SchemeBuilder, nodev1beta1.SchemeBuilder, diff --git a/testdata/HEAD/networking.k8s.io.v1alpha1.IPAddress.json b/testdata/HEAD/networking.k8s.io.v1alpha1.IPAddress.json deleted file mode 100644 index c5f84c6f50..0000000000 --- a/testdata/HEAD/networking.k8s.io.v1alpha1.IPAddress.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "kind": "IPAddress", - "apiVersion": "networking.k8s.io/v1alpha1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "parentRef": { - "group": "groupValue", - "resource": "resourceValue", - "namespace": "namespaceValue", - "name": "nameValue" - } - } -} \ No newline at end of file diff --git a/testdata/HEAD/networking.k8s.io.v1alpha1.IPAddress.pb b/testdata/HEAD/networking.k8s.io.v1alpha1.IPAddress.pb deleted file mode 100644 index 7fceacd6bcacca3dd5011aae46c001cbc6a2c93b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 465 zcmZWlJ5Iwu6m&ik@q;+VqChU)Af*T-63C(>9Uq|-h=Oj7U(DjouC;4}0^$PPfr6SN za08^=0Z~wM1K6yU575o~&6}AtR2FQ3&oRFhGNnA}q@n6iv3=7eEW09I&psR+#IZ!B zyr&wxSHb3Fgy)16=&dKnQIZ@_XD#2EPE|%O%ax$1kPS~LPt8TUQP9|+-iD?Wh17c} z6&2ic!*LJeULAd#ZT${)>N<9`7!?D$q-{Q%x9 Bp%efB diff --git a/testdata/HEAD/networking.k8s.io.v1alpha1.IPAddress.yaml b/testdata/HEAD/networking.k8s.io.v1alpha1.IPAddress.yaml deleted file mode 100644 index 0bf2b17cb8..0000000000 --- a/testdata/HEAD/networking.k8s.io.v1alpha1.IPAddress.yaml +++ /dev/null @@ -1,40 +0,0 @@ -apiVersion: networking.k8s.io/v1alpha1 -kind: IPAddress -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - parentRef: - group: groupValue - name: nameValue - namespace: namespaceValue - resource: resourceValue diff --git a/testdata/HEAD/networking.k8s.io.v1alpha1.ServiceCIDR.json b/testdata/HEAD/networking.k8s.io.v1alpha1.ServiceCIDR.json deleted file mode 100644 index cd77b39a0f..0000000000 --- a/testdata/HEAD/networking.k8s.io.v1alpha1.ServiceCIDR.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "kind": "ServiceCIDR", - "apiVersion": "networking.k8s.io/v1alpha1", - "metadata": { - "name": "nameValue", - "generateName": "generateNameValue", - "namespace": "namespaceValue", - "selfLink": "selfLinkValue", - "uid": "uidValue", - "resourceVersion": "resourceVersionValue", - "generation": 7, - "creationTimestamp": "2008-01-01T01:01:01Z", - "deletionTimestamp": "2009-01-01T01:01:01Z", - "deletionGracePeriodSeconds": 10, - "labels": { - "labelsKey": "labelsValue" - }, - "annotations": { - "annotationsKey": "annotationsValue" - }, - "ownerReferences": [ - { - "apiVersion": "apiVersionValue", - "kind": "kindValue", - "name": "nameValue", - "uid": "uidValue", - "controller": true, - "blockOwnerDeletion": true - } - ], - "finalizers": [ - "finalizersValue" - ], - "managedFields": [ - { - "manager": "managerValue", - "operation": "operationValue", - "apiVersion": "apiVersionValue", - "time": "2004-01-01T01:01:01Z", - "fieldsType": "fieldsTypeValue", - "fieldsV1": {}, - "subresource": "subresourceValue" - } - ] - }, - "spec": { - "cidrs": [ - "cidrsValue" - ] - }, - "status": { - "conditions": [ - { - "type": "typeValue", - "status": "statusValue", - "observedGeneration": 3, - "lastTransitionTime": "2004-01-01T01:01:01Z", - "reason": "reasonValue", - "message": "messageValue" - } - ] - } -} \ No newline at end of file diff --git a/testdata/HEAD/networking.k8s.io.v1alpha1.ServiceCIDR.pb b/testdata/HEAD/networking.k8s.io.v1alpha1.ServiceCIDR.pb deleted file mode 100644 index 970393e6fae7b73bd208f08e7c39637234fb65c7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 490 zcmZ8eJ5Iwu6m&ik@j4{NqKI6&BSj#QkSv;rK*L7}0ivLLPF}*|&Dz?vg973L+=7~x zjvFB54v2!98^C6rpXg@aXWq2tba;*s5k1Rl=d`gZ3>i8 zD%2bbNh7YS{#vJ0n!J3!7j5HMq1T@eh0e)MjhGAqWby>Zj+H^Z5qP8moJR>HibS{V zmA9U`+a;!QmmPMO`n`pkdKF^2Dr6_;=R~znIWYR51Ztk=TtLc0;4na;3r;19r~c>i z-TyS6^6)kJE!aj&ks<5Jt8ttqvsWbf$ES`h(_oQ=4z)~3m-c2S-F?y~W-?!LEUAp9 bnVec-Nnf`Ff}Ew;DyuJ$N~IR*8lLe7;gG2b diff --git a/testdata/HEAD/networking.k8s.io.v1alpha1.ServiceCIDR.yaml b/testdata/HEAD/networking.k8s.io.v1alpha1.ServiceCIDR.yaml deleted file mode 100644 index 4bf6b492dc..0000000000 --- a/testdata/HEAD/networking.k8s.io.v1alpha1.ServiceCIDR.yaml +++ /dev/null @@ -1,45 +0,0 @@ -apiVersion: networking.k8s.io/v1alpha1 -kind: ServiceCIDR -metadata: - annotations: - annotationsKey: annotationsValue - creationTimestamp: "2008-01-01T01:01:01Z" - deletionGracePeriodSeconds: 10 - deletionTimestamp: "2009-01-01T01:01:01Z" - finalizers: - - finalizersValue - generateName: generateNameValue - generation: 7 - labels: - labelsKey: labelsValue - managedFields: - - apiVersion: apiVersionValue - fieldsType: fieldsTypeValue - fieldsV1: {} - manager: managerValue - operation: operationValue - subresource: subresourceValue - time: "2004-01-01T01:01:01Z" - name: nameValue - namespace: namespaceValue - ownerReferences: - - apiVersion: apiVersionValue - blockOwnerDeletion: true - controller: true - kind: kindValue - name: nameValue - uid: uidValue - resourceVersion: resourceVersionValue - selfLink: selfLinkValue - uid: uidValue -spec: - cidrs: - - cidrsValue -status: - conditions: - - lastTransitionTime: "2004-01-01T01:01:01Z" - message: messageValue - observedGeneration: 3 - reason: reasonValue - status: statusValue - type: typeValue From 8c93631e4207357f6610eea15b849a3c23c9a42d Mon Sep 17 00:00:00 2001 From: Vlad Vasilyeu Date: Tue, 13 May 2025 15:35:21 +0000 Subject: [PATCH 024/100] Remove misleading comment from NodeTaint TimeAdded field Kubernetes-commit: c4d6fcb197422c52dd795ea6111db2ff68869509 --- core/v1/generated.proto | 1 - core/v1/types.go | 1 - core/v1/types_swagger_doc_generated.go | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/core/v1/generated.proto b/core/v1/generated.proto index 85a7c0f1ba..5fa026508d 100644 --- a/core/v1/generated.proto +++ b/core/v1/generated.proto @@ -6300,7 +6300,6 @@ message Taint { optional string effect = 3; // TimeAdded represents the time at which the taint was added. - // It is only written for NoExecute taints. // +optional optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time timeAdded = 4; } diff --git a/core/v1/types.go b/core/v1/types.go index f6283b828d..ca0fa99a13 100644 --- a/core/v1/types.go +++ b/core/v1/types.go @@ -3806,7 +3806,6 @@ type Taint struct { // Valid effects are NoSchedule, PreferNoSchedule and NoExecute. Effect TaintEffect `json:"effect" protobuf:"bytes,3,opt,name=effect,casttype=TaintEffect"` // TimeAdded represents the time at which the taint was added. - // It is only written for NoExecute taints. // +optional TimeAdded *metav1.Time `json:"timeAdded,omitempty" protobuf:"bytes,4,opt,name=timeAdded"` } diff --git a/core/v1/types_swagger_doc_generated.go b/core/v1/types_swagger_doc_generated.go index ce1241775d..ba94e54bfa 100644 --- a/core/v1/types_swagger_doc_generated.go +++ b/core/v1/types_swagger_doc_generated.go @@ -2587,7 +2587,7 @@ var map_Taint = map[string]string{ "key": "Required. The taint key to be applied to a node.", "value": "The taint value corresponding to the taint key.", "effect": "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.", - "timeAdded": "TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints.", + "timeAdded": "TimeAdded represents the time at which the taint was added.", } func (Taint) SwaggerDoc() map[string]string { From 917fec574353701cc8f3c16348af3a3e754e4089 Mon Sep 17 00:00:00 2001 From: Kubernetes Publisher Date: Tue, 13 May 2025 09:51:28 -0700 Subject: [PATCH 025/100] Merge pull request #131318 from aojea/lock_servicecidr Lock MultiCIDRServiceAllocator to default and DisableAllocatorDualWrite to GA Kubernetes-commit: c96032addd81199453a815c85370d8930b2f1cd3 --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index d68d297435..4adb515112 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ godebug default=go1.24 require ( github.com/gogo/protobuf v1.3.2 - k8s.io/apimachinery v0.0.0-20250503031111-512f488de379 + k8s.io/apimachinery v0.0.0-20250512230115-1bb0bf9dfa7e ) require ( diff --git a/go.sum b/go.sum index 4fe6c4598d..e591055cee 100644 --- a/go.sum +++ b/go.sum @@ -80,8 +80,8 @@ gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc= gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -k8s.io/apimachinery v0.0.0-20250503031111-512f488de379 h1:SRKtgNyQVTGF7yOs8CXK9AhZMd/1g5h4YlHAkYVXq5Y= -k8s.io/apimachinery v0.0.0-20250503031111-512f488de379/go.mod h1:b+h1nads2hmyfwvvorkgHUriRTTaJ2p2mk0l03sESn8= +k8s.io/apimachinery v0.0.0-20250512230115-1bb0bf9dfa7e h1:QZI29fGrbuU/E82+TJr2GS39nRI+GabQWl5wpjvUw1Y= +k8s.io/apimachinery v0.0.0-20250512230115-1bb0bf9dfa7e/go.mod h1:b+h1nads2hmyfwvvorkgHUriRTTaJ2p2mk0l03sESn8= k8s.io/klog/v2 v2.130.1 h1:n9Xl7H1Xvksem4KFG4PYbdQCQxqc/tTUyrgXaOhHSzk= k8s.io/klog/v2 v2.130.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE= k8s.io/utils v0.0.0-20250502105355-0f33e8f1c979 h1:jgJW5IePPXLGB8e/1wvd0Ich9QE97RvvF3a8J3fP/Lg= From 134d8708a08d826ca56ef8596a103f0ff50f35ee Mon Sep 17 00:00:00 2001 From: Jordan Liggitt Date: Thu, 15 May 2025 21:19:11 -0400 Subject: [PATCH 026/100] bump etcd client to 3.6 hack/pin-dependency.sh go.etcd.io/etcd/api/v3 v3.6.0 hack/pin-dependency.sh go.etcd.io/etcd/client/pkg/v3 v3.6.0 hack/pin-dependency.sh go.etcd.io/etcd/client/v3 v3.6.0 hack/pin-dependency.sh go.etcd.io/etcd/pkg/v3 v3.6.0 hack/pin-dependency.sh go.etcd.io/etcd/server/v3 v3.6.0 hack/pin-dependency.sh github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.0 hack/update-vendor.sh Kubernetes-commit: cf0bbf1171e918d5d7ba1d3c83b5f347fc8333b0 --- go.mod | 6 ++++-- go.sum | 29 +++++++++++++++++++++++++---- 2 files changed, 29 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index 4adb515112..fb00bd6a77 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ godebug default=go1.24 require ( github.com/gogo/protobuf v1.3.2 - k8s.io/apimachinery v0.0.0-20250512230115-1bb0bf9dfa7e + k8s.io/apimachinery v0.0.0 ) require ( @@ -20,7 +20,7 @@ require ( github.com/kr/pretty v0.3.1 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect - github.com/spf13/pflag v1.0.5 // indirect + github.com/spf13/pflag v1.0.6 // indirect github.com/x448/float16 v0.8.4 // indirect golang.org/x/net v0.38.0 // indirect golang.org/x/text v0.23.0 // indirect @@ -33,3 +33,5 @@ require ( sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect sigs.k8s.io/yaml v1.4.0 // indirect ) + +replace k8s.io/apimachinery => ../apimachinery diff --git a/go.sum b/go.sum index e591055cee..47bb15b70d 100644 --- a/go.sum +++ b/go.sum @@ -1,3 +1,4 @@ +github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= @@ -6,12 +7,18 @@ github.com/fxamacker/cbor/v2 v2.8.0 h1:fFtUGXUzXPHTIUdne5+zzMPTfffl3RD5qYnkY40vt github.com/fxamacker/cbor/v2 v2.8.0/go.mod h1:vM4b+DJCtHn+zz7h3FFp/hDAI9WNWCsZj23V5ytsSxQ= github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY= github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= +github.com/go-openapi/jsonpointer v0.21.0/go.mod h1:IUyH9l/+uyhIYQ/PXVA41Rexl+kOkAPDdXEYns6fzUY= +github.com/go-openapi/jsonreference v0.20.2/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k= +github.com/go-openapi/swag v0.23.0/go.mod h1:esZ8ITTYEsH1V2trKHjAN8Ai7xHb8RV+YSZ577vPjgQ= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= +github.com/google/gnostic-models v0.6.9/go.mod h1:CiWsm0s6BSQd1hRn8/QmxqB6BesYcbSZxsz9b0KuDBw= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= @@ -23,19 +30,25 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= +github.com/moby/spdystream v0.5.0/go.mod h1:xBAYlnt/ay+11ShkdFKNAG7LsyK/tmNBVvVOwrfMgdI= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= +github.com/onsi/ginkgo/v2 v2.21.0/go.mod h1:7Du3c42kxCUegi0IImZ1wUQzMBVecgIHjR1C+NkhLQo= +github.com/onsi/gomega v1.35.1/go.mod h1:PvZbdDc8J6XJEpDK4HCuRBm8a6Fzp9/DmhC9C7yFlog= github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= +github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= github.com/rogpeppe/go-internal v1.13.1 h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR38lUII= github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o= -github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= -github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= +github.com/spf13/pflag v1.0.6 h1:jFzHGLGAlb3ruxLB8MhbI6A8+AQX/2eW4qeyNZXNp2o= +github.com/spf13/pflag v1.0.6/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA= @@ -47,8 +60,10 @@ github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9dec golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.36.0/go.mod h1:Y4J0ReaxCR1IMaabaSMugxJES1EpwhBHhv2bDHklZvc= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= @@ -58,32 +73,38 @@ golang.org/x/net v0.38.0/go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.12.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= +golang.org/x/term v0.30.0/go.mod h1:NYYFdzHoI5wRh/h5tDMdMqCqPJZEuNqVR5xJLd/n67g= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.23.0 h1:D71I7dUrlY+VX0gQShAThNGHFxZ13dGLBHQLVl1mJlY= golang.org/x/text v0.23.0/go.mod h1:/BLNzu4aZCJ1+kcD0DNRotWKage4q2rGVAg4o22unh4= +golang.org/x/time v0.9.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/protobuf v1.36.5/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= +gopkg.in/evanphx/json-patch.v4 v4.12.0/go.mod h1:p8EYWUEYMpynmqDbY58zCKCFZw8pRWMG4EsWvDvM72M= gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc= gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -k8s.io/apimachinery v0.0.0-20250512230115-1bb0bf9dfa7e h1:QZI29fGrbuU/E82+TJr2GS39nRI+GabQWl5wpjvUw1Y= -k8s.io/apimachinery v0.0.0-20250512230115-1bb0bf9dfa7e/go.mod h1:b+h1nads2hmyfwvvorkgHUriRTTaJ2p2mk0l03sESn8= k8s.io/klog/v2 v2.130.1 h1:n9Xl7H1Xvksem4KFG4PYbdQCQxqc/tTUyrgXaOhHSzk= k8s.io/klog/v2 v2.130.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE= +k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff/go.mod h1:5jIi+8yX4RIb8wk3XwBo5Pq2ccx4FP10ohkbSKCZoK8= k8s.io/utils v0.0.0-20250502105355-0f33e8f1c979 h1:jgJW5IePPXLGB8e/1wvd0Ich9QE97RvvF3a8J3fP/Lg= k8s.io/utils v0.0.0-20250502105355-0f33e8f1c979/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 h1:/Rv+M11QRah1itp8VhT6HoVx1Ray9eB4DBr+K+/sCJ8= From ffe08c772d5b6a6ceb341504d9f842ddb179df1e Mon Sep 17 00:00:00 2001 From: Kubernetes Publisher Date: Thu, 15 May 2025 19:23:13 -0700 Subject: [PATCH 027/100] Merge pull request #128419 from liggitt/etcd-3.6 etcd 3.6 client update Kubernetes-commit: 09ca440a450e9103a8f835f598c09237dba6ecbb --- go.mod | 4 +--- go.sum | 25 ++----------------------- 2 files changed, 3 insertions(+), 26 deletions(-) diff --git a/go.mod b/go.mod index fb00bd6a77..80bf118362 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ godebug default=go1.24 require ( github.com/gogo/protobuf v1.3.2 - k8s.io/apimachinery v0.0.0 + k8s.io/apimachinery v0.0.0-20250516032956-da3bba90543c ) require ( @@ -33,5 +33,3 @@ require ( sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect sigs.k8s.io/yaml v1.4.0 // indirect ) - -replace k8s.io/apimachinery => ../apimachinery diff --git a/go.sum b/go.sum index 47bb15b70d..5ee44c6f83 100644 --- a/go.sum +++ b/go.sum @@ -1,4 +1,3 @@ -github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= @@ -7,18 +6,12 @@ github.com/fxamacker/cbor/v2 v2.8.0 h1:fFtUGXUzXPHTIUdne5+zzMPTfffl3RD5qYnkY40vt github.com/fxamacker/cbor/v2 v2.8.0/go.mod h1:vM4b+DJCtHn+zz7h3FFp/hDAI9WNWCsZj23V5ytsSxQ= github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY= github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= -github.com/go-openapi/jsonpointer v0.21.0/go.mod h1:IUyH9l/+uyhIYQ/PXVA41Rexl+kOkAPDdXEYns6fzUY= -github.com/go-openapi/jsonreference v0.20.2/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k= -github.com/go-openapi/swag v0.23.0/go.mod h1:esZ8ITTYEsH1V2trKHjAN8Ai7xHb8RV+YSZ577vPjgQ= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= -github.com/google/gnostic-models v0.6.9/go.mod h1:CiWsm0s6BSQd1hRn8/QmxqB6BesYcbSZxsz9b0KuDBw= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= -github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= @@ -30,18 +23,12 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= -github.com/moby/spdystream v0.5.0/go.mod h1:xBAYlnt/ay+11ShkdFKNAG7LsyK/tmNBVvVOwrfMgdI= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= -github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= -github.com/onsi/ginkgo/v2 v2.21.0/go.mod h1:7Du3c42kxCUegi0IImZ1wUQzMBVecgIHjR1C+NkhLQo= -github.com/onsi/gomega v1.35.1/go.mod h1:PvZbdDc8J6XJEpDK4HCuRBm8a6Fzp9/DmhC9C7yFlog= github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= -github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= @@ -60,10 +47,8 @@ github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9dec golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.36.0/go.mod h1:Y4J0ReaxCR1IMaabaSMugxJES1EpwhBHhv2bDHklZvc= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= @@ -73,38 +58,32 @@ golang.org/x/net v0.38.0/go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.12.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= -golang.org/x/term v0.30.0/go.mod h1:NYYFdzHoI5wRh/h5tDMdMqCqPJZEuNqVR5xJLd/n67g= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.23.0 h1:D71I7dUrlY+VX0gQShAThNGHFxZ13dGLBHQLVl1mJlY= golang.org/x/text v0.23.0/go.mod h1:/BLNzu4aZCJ1+kcD0DNRotWKage4q2rGVAg4o22unh4= -golang.org/x/time v0.9.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -google.golang.org/protobuf v1.36.5/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= -gopkg.in/evanphx/json-patch.v4 v4.12.0/go.mod h1:p8EYWUEYMpynmqDbY58zCKCFZw8pRWMG4EsWvDvM72M= gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc= gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +k8s.io/apimachinery v0.0.0-20250516032956-da3bba90543c h1:32RPTmIMyn/cz7/8xxQ4BhJTkvQE1nnzR0YR4ODcVRs= +k8s.io/apimachinery v0.0.0-20250516032956-da3bba90543c/go.mod h1:pJRnLHx/rdGhRBHKhKq/NczIcMw4cPylIe+hff1zJaU= k8s.io/klog/v2 v2.130.1 h1:n9Xl7H1Xvksem4KFG4PYbdQCQxqc/tTUyrgXaOhHSzk= k8s.io/klog/v2 v2.130.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE= -k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff/go.mod h1:5jIi+8yX4RIb8wk3XwBo5Pq2ccx4FP10ohkbSKCZoK8= k8s.io/utils v0.0.0-20250502105355-0f33e8f1c979 h1:jgJW5IePPXLGB8e/1wvd0Ich9QE97RvvF3a8J3fP/Lg= k8s.io/utils v0.0.0-20250502105355-0f33e8f1c979/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 h1:/Rv+M11QRah1itp8VhT6HoVx1Ray9eB4DBr+K+/sCJ8= From 02d9e8eca039c3d677f6aebdb5fb19305bfe9f0d Mon Sep 17 00:00:00 2001 From: Joe Betz Date: Wed, 19 Mar 2025 22:47:40 -0400 Subject: [PATCH 028/100] Enable validation-gen for scale group-versions This adds declarative validation for all all versioned types of Scale since our testing uses apitesting.VerifyVersionedValidationEquivalence, will fail if we don't convert them all at the same time. Kubernetes-commit: ffb4e003f701f19c90b29a39c840289295170a9d --- extensions/v1beta1/doc.go | 2 ++ .../v1beta1/zz_generated.validations.go | 34 +++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 extensions/v1beta1/zz_generated.validations.go diff --git a/extensions/v1beta1/doc.go b/extensions/v1beta1/doc.go index 7770fab5d2..be710973cb 100644 --- a/extensions/v1beta1/doc.go +++ b/extensions/v1beta1/doc.go @@ -18,5 +18,7 @@ limitations under the License. // +k8s:protobuf-gen=package // +k8s:openapi-gen=true // +k8s:prerelease-lifecycle-gen=true +// +k8s:validation-gen=TypeMeta +// +k8s:validation-gen-input=k8s.io/api/extensions/v1beta1 package v1beta1 diff --git a/extensions/v1beta1/zz_generated.validations.go b/extensions/v1beta1/zz_generated.validations.go new file mode 100644 index 0000000000..0b9e874b63 --- /dev/null +++ b/extensions/v1beta1/zz_generated.validations.go @@ -0,0 +1,34 @@ +//go:build !ignore_autogenerated +// +build !ignore_autogenerated + +/* +Copyright The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +// Code generated by validation-gen. DO NOT EDIT. + +package v1beta1 + +import ( + runtime "k8s.io/apimachinery/pkg/runtime" +) + +func init() { localSchemeBuilder.Register(RegisterValidations) } + +// RegisterValidations adds validation functions to the given scheme. +// Public to allow building arbitrary schemes. +func RegisterValidations(scheme *runtime.Scheme) error { + return nil +} From 1a1da0afbd961d8f5222410be71df23fd48b954f Mon Sep 17 00:00:00 2001 From: Joe Betz Date: Wed, 19 Mar 2025 22:48:28 -0400 Subject: [PATCH 029/100] Add k8s:minimum validation to Scale.spec.replicas This applies to all group version kinds of Scale. Validation-gen must be enabled for all at the same time since our testing checks that cross-GV declarative validation to matches. Kubernetes-commit: d0f6fe30bf1d2e46cc37af13d4443695e8829569 --- apps/v1beta1/types.go | 3 ++ apps/v1beta2/types.go | 3 ++ autoscaling/v1/types.go | 3 ++ extensions/v1beta1/types.go | 3 ++ .../v1beta1/zz_generated.validations.go | 36 +++++++++++++++++++ 5 files changed, 48 insertions(+) diff --git a/apps/v1beta1/types.go b/apps/v1beta1/types.go index 5530c990da..5a863da271 100644 --- a/apps/v1beta1/types.go +++ b/apps/v1beta1/types.go @@ -33,6 +33,9 @@ const ( type ScaleSpec struct { // replicas is the number of observed instances of the scaled object. // +optional + // +k8s:optional + // +default=0 + // +k8s:minimum=0 Replicas int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"` } diff --git a/apps/v1beta2/types.go b/apps/v1beta2/types.go index 1472bfd109..7f0438c5ed 100644 --- a/apps/v1beta2/types.go +++ b/apps/v1beta2/types.go @@ -35,6 +35,9 @@ const ( type ScaleSpec struct { // desired number of instances for the scaled object. // +optional + // +k8s:optional + // +default=0 + // +k8s:minimum=0 Replicas int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"` } diff --git a/autoscaling/v1/types.go b/autoscaling/v1/types.go index 85c609e5c7..b8941145e7 100644 --- a/autoscaling/v1/types.go +++ b/autoscaling/v1/types.go @@ -138,6 +138,9 @@ type Scale struct { type ScaleSpec struct { // replicas is the desired number of instances for the scaled object. // +optional + // +k8s:optional + // +default=0 + // +k8s:minimum=0 Replicas int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"` } diff --git a/extensions/v1beta1/types.go b/extensions/v1beta1/types.go index 2118f409a9..6b86b65756 100644 --- a/extensions/v1beta1/types.go +++ b/extensions/v1beta1/types.go @@ -27,6 +27,9 @@ import ( type ScaleSpec struct { // desired number of instances for the scaled object. // +optional + // +k8s:optional + // +default=0 + // +k8s:minimum=0 Replicas int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"` } diff --git a/extensions/v1beta1/zz_generated.validations.go b/extensions/v1beta1/zz_generated.validations.go index 0b9e874b63..32314c92a2 100644 --- a/extensions/v1beta1/zz_generated.validations.go +++ b/extensions/v1beta1/zz_generated.validations.go @@ -22,7 +22,13 @@ limitations under the License. package v1beta1 import ( + context "context" + + operation "k8s.io/apimachinery/pkg/api/operation" + safe "k8s.io/apimachinery/pkg/api/safe" + validate "k8s.io/apimachinery/pkg/api/validate" runtime "k8s.io/apimachinery/pkg/runtime" + field "k8s.io/apimachinery/pkg/util/validation/field" ) func init() { localSchemeBuilder.Register(RegisterValidations) } @@ -30,5 +36,35 @@ func init() { localSchemeBuilder.Register(RegisterValidations) } // RegisterValidations adds validation functions to the given scheme. // Public to allow building arbitrary schemes. func RegisterValidations(scheme *runtime.Scheme) error { + scheme.AddValidationFunc((*Scale)(nil), func(ctx context.Context, op operation.Operation, obj, oldObj interface{}) field.ErrorList { + return Validate_Scale(ctx, op, nil /* fldPath */, obj.(*Scale), safe.Cast[*Scale](oldObj)) + }) return nil } + +func Validate_Scale(ctx context.Context, op operation.Operation, fldPath *field.Path, obj, oldObj *Scale) (errs field.ErrorList) { + // field Scale.TypeMeta has no validation + // field Scale.ObjectMeta has no validation + + // field Scale.Spec + errs = append(errs, + func(fldPath *field.Path, obj, oldObj *ScaleSpec) (errs field.ErrorList) { + errs = append(errs, Validate_ScaleSpec(ctx, op, fldPath, obj, oldObj)...) + return + }(fldPath.Child("spec"), &obj.Spec, safe.Field(oldObj, func(oldObj *Scale) *ScaleSpec { return &oldObj.Spec }))...) + + // field Scale.Status has no validation + return errs +} + +func Validate_ScaleSpec(ctx context.Context, op operation.Operation, fldPath *field.Path, obj, oldObj *ScaleSpec) (errs field.ErrorList) { + // field ScaleSpec.Replicas + errs = append(errs, + func(fldPath *field.Path, obj, oldObj *int32) (errs field.ErrorList) { + // optional value-type fields with zero-value defaults are purely documentation + errs = append(errs, validate.Minimum(ctx, op, fldPath, obj, oldObj, 0)...) + return + }(fldPath.Child("replicas"), &obj.Replicas, safe.Field(oldObj, func(oldObj *ScaleSpec) *int32 { return &oldObj.Replicas }))...) + + return errs +} From 5dc8ce77a090a906dc29ca86b4916415b754bc35 Mon Sep 17 00:00:00 2001 From: Kevin Torres Date: Thu, 27 Mar 2025 18:22:50 +0000 Subject: [PATCH 030/100] Pod level hugepage cgroup when unset in container Kubernetes-commit: 52b457421a9bcccc9e8d7f4e63c755e1fd635581 --- core/v1/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/v1/types.go b/core/v1/types.go index 80236aecb8..04da59cc8f 100644 --- a/core/v1/types.go +++ b/core/v1/types.go @@ -4402,7 +4402,7 @@ type PodSpec struct { ResourceClaims []PodResourceClaim `json:"resourceClaims,omitempty" patchStrategy:"merge,retainKeys" patchMergeKey:"name" protobuf:"bytes,39,rep,name=resourceClaims"` // Resources is the total amount of CPU and Memory resources required by all // containers in the pod. It supports specifying Requests and Limits for - // "cpu" and "memory" resource names only. ResourceClaims are not supported. + // "cpu", "memory" and "hugepages-" resource names only. ResourceClaims are not supported. // // This field enables fine-grained control over resource allocation for the // entire pod, allowing resource sharing among containers in a pod. From f88c339cfb6d9f746bf2d31fd2cc61df0de1adb8 Mon Sep 17 00:00:00 2001 From: tomoish Date: Thu, 17 Apr 2025 22:53:23 +0900 Subject: [PATCH 031/100] Fix NetworkPolicy podSelector comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Clarify that podSelector is optional and defaults to an empty selector, matching all pods. Replace “ingress rules” with “rules” to reflect both directions. Update podSelector descriptions in NetworkPolicy documentation for clarity Kubernetes-commit: 7a95f3e478779fc0e16ee4cc2c4a3d442d622878 --- networking/v1/generated.proto | 7 ++++--- networking/v1/types.go | 7 ++++--- networking/v1/types_swagger_doc_generated.go | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/networking/v1/generated.proto b/networking/v1/generated.proto index e3e3e9215e..16a2792aa6 100644 --- a/networking/v1/generated.proto +++ b/networking/v1/generated.proto @@ -534,11 +534,12 @@ message NetworkPolicyPort { // NetworkPolicySpec provides the specification of a NetworkPolicy message NetworkPolicySpec { // podSelector selects the pods to which this NetworkPolicy object applies. - // The array of ingress rules is applied to any pods selected by this field. + // The array of rules is applied to any pods selected by this field. An empty + // selector matches all pods in the policy's namespace. // Multiple network policies can select the same set of pods. In this case, // the ingress rules for each are combined additively. - // This field is NOT optional and follows standard label selector semantics. - // An empty podSelector matches all pods in this namespace. + // This field is optional. If it is not specified, it defaults to an empty selector. + // +optional optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector podSelector = 1; // ingress is a list of ingress rules to be applied to the selected pods. diff --git a/networking/v1/types.go b/networking/v1/types.go index 216647ceeb..7d9a4fc94c 100644 --- a/networking/v1/types.go +++ b/networking/v1/types.go @@ -60,11 +60,12 @@ const ( // NetworkPolicySpec provides the specification of a NetworkPolicy type NetworkPolicySpec struct { // podSelector selects the pods to which this NetworkPolicy object applies. - // The array of ingress rules is applied to any pods selected by this field. + // The array of rules is applied to any pods selected by this field. An empty + // selector matches all pods in the policy's namespace. // Multiple network policies can select the same set of pods. In this case, // the ingress rules for each are combined additively. - // This field is NOT optional and follows standard label selector semantics. - // An empty podSelector matches all pods in this namespace. + // This field is optional. If it is not specified, it defaults to an empty selector. + // +optional PodSelector metav1.LabelSelector `json:"podSelector" protobuf:"bytes,1,opt,name=podSelector"` // ingress is a list of ingress rules to be applied to the selected pods. diff --git a/networking/v1/types_swagger_doc_generated.go b/networking/v1/types_swagger_doc_generated.go index 0e294848ba..6210bb7a5a 100644 --- a/networking/v1/types_swagger_doc_generated.go +++ b/networking/v1/types_swagger_doc_generated.go @@ -313,7 +313,7 @@ func (NetworkPolicyPort) SwaggerDoc() map[string]string { var map_NetworkPolicySpec = map[string]string{ "": "NetworkPolicySpec provides the specification of a NetworkPolicy", - "podSelector": "podSelector selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace.", + "podSelector": "podSelector selects the pods to which this NetworkPolicy object applies. The array of rules is applied to any pods selected by this field. An empty selector matches all pods in the policy's namespace. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is optional. If it is not specified, it defaults to an empty selector.", "ingress": "ingress is a list of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default)", "egress": "egress is a list of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8", "policyTypes": "policyTypes is a list of rule types that the NetworkPolicy relates to. Valid options are [\"Ingress\"], [\"Egress\"], or [\"Ingress\", \"Egress\"]. If this field is not specified, it will default based on the existence of ingress or egress rules; policies that contain an egress section are assumed to affect egress, and all policies (whether or not they contain an ingress section) are assumed to affect ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ \"Egress\" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include \"Egress\" (since such a policy would not include an egress section and would otherwise default to just [ \"Ingress\" ]). This field is beta-level in 1.8", From 238cb24f32c83519567e7f981cbe4492ea3a06aa Mon Sep 17 00:00:00 2001 From: Benjamin Elder Date: Thu, 24 Apr 2025 20:42:35 -0700 Subject: [PATCH 032/100] document hostnetwork <> port implications Kubernetes-commit: 4b99dc5f1e0c8e9f3be74840015a25da7bf6bd4a --- core/v1/types.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/v1/types.go b/core/v1/types.go index 6eb3da8ada..8463768bb3 100644 --- a/core/v1/types.go +++ b/core/v1/types.go @@ -3981,6 +3981,9 @@ type PodSpec struct { // +optional NodeName string `json:"nodeName,omitempty" protobuf:"bytes,10,opt,name=nodeName"` // Host networking requested for this pod. Use the host's network namespace. + // When using HostNetwork you should specify ports so the scheduler is aware. + // When `hostNetwork` is true, specified `hostPort` fields in port definitions must match `containerPort`, + // and unspecified `hostPort` fields in port definitions are defaulted to match `containerPort`. // Default to false. // +k8s:conversion-gen=false // +optional From 5949eec82f6934fc65ad03cd6895abe3d312cb3a Mon Sep 17 00:00:00 2001 From: carlory Date: Wed, 30 Apr 2025 17:35:21 +0800 Subject: [PATCH 033/100] Promoted API `VolumeAttributesClass` and `VolumeAttributesClassList` to `storage.k8s.io/v1`. Promoted feature-gate `VolumeAttributesClass` to GA (on by default) Signed-off-by: carlory Kubernetes-commit: 94bf8fc8a9d1d6c989eddad07996be0ca4dd3448 --- core/v1/generated.proto | 4 - core/v1/types.go | 4 - core/v1/types_swagger_doc_generated.go | 8 +- storage/v1/generated.pb.go | 828 +++++++++++++++--- storage/v1/generated.proto | 40 + storage/v1/register.go | 3 + storage/v1/types.go | 52 ++ storage/v1/types_swagger_doc_generated.go | 21 + storage/v1/zz_generated.deepcopy.go | 66 ++ .../v1/zz_generated.prerelease-lifecycle.go | 12 + storage/v1alpha1/types.go | 2 + .../zz_generated.prerelease-lifecycle.go | 6 + storage/v1beta1/types.go | 2 + .../zz_generated.prerelease-lifecycle.go | 6 + ...orage.k8s.io.v1.VolumeAttributesClass.json | 50 ++ ...storage.k8s.io.v1.VolumeAttributesClass.pb | Bin 0 -> 461 bytes ...orage.k8s.io.v1.VolumeAttributesClass.yaml | 37 + 17 files changed, 1019 insertions(+), 122 deletions(-) create mode 100644 testdata/HEAD/storage.k8s.io.v1.VolumeAttributesClass.json create mode 100644 testdata/HEAD/storage.k8s.io.v1.VolumeAttributesClass.pb create mode 100644 testdata/HEAD/storage.k8s.io.v1.VolumeAttributesClass.yaml diff --git a/core/v1/generated.proto b/core/v1/generated.proto index 0570afdb0b..76b2587565 100644 --- a/core/v1/generated.proto +++ b/core/v1/generated.proto @@ -3205,7 +3205,6 @@ message PersistentVolumeClaimSpec { // set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource // exists. // More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ - // (Beta) Using this field requires the VolumeAttributesClass feature gate to be enabled (off by default). // +featureGate=VolumeAttributesClass // +optional optional string volumeAttributesClassName = 9; @@ -3304,14 +3303,12 @@ message PersistentVolumeClaimStatus { // currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using. // When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim - // This is a beta field and requires enabling VolumeAttributesClass feature (off by default). // +featureGate=VolumeAttributesClass // +optional optional string currentVolumeAttributesClassName = 8; // ModifyVolumeStatus represents the status object of ControllerModifyVolume operation. // When this is unset, there is no ModifyVolume operation being attempted. - // This is a beta field and requires enabling VolumeAttributesClass feature (off by default). // +featureGate=VolumeAttributesClass // +optional optional ModifyVolumeStatus modifyVolumeStatus = 9; @@ -3552,7 +3549,6 @@ message PersistentVolumeSpec { // after a volume has been updated successfully to a new class. // For an unbound PersistentVolume, the volumeAttributesClassName will be matched with unbound // PersistentVolumeClaims during the binding process. - // This is a beta field and requires enabling VolumeAttributesClass feature (off by default). // +featureGate=VolumeAttributesClass // +optional optional string volumeAttributesClassName = 10; diff --git a/core/v1/types.go b/core/v1/types.go index 5b4602e1db..47fbd5caa8 100644 --- a/core/v1/types.go +++ b/core/v1/types.go @@ -435,7 +435,6 @@ type PersistentVolumeSpec struct { // after a volume has been updated successfully to a new class. // For an unbound PersistentVolume, the volumeAttributesClassName will be matched with unbound // PersistentVolumeClaims during the binding process. - // This is a beta field and requires enabling VolumeAttributesClass feature (off by default). // +featureGate=VolumeAttributesClass // +optional VolumeAttributesClassName *string `json:"volumeAttributesClassName,omitempty" protobuf:"bytes,10,opt,name=volumeAttributesClassName"` @@ -621,7 +620,6 @@ type PersistentVolumeClaimSpec struct { // set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource // exists. // More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ - // (Beta) Using this field requires the VolumeAttributesClass feature gate to be enabled (off by default). // +featureGate=VolumeAttributesClass // +optional VolumeAttributesClassName *string `json:"volumeAttributesClassName,omitempty" protobuf:"bytes,9,opt,name=volumeAttributesClassName"` @@ -848,13 +846,11 @@ type PersistentVolumeClaimStatus struct { AllocatedResourceStatuses map[ResourceName]ClaimResourceStatus `json:"allocatedResourceStatuses,omitempty" protobuf:"bytes,7,rep,name=allocatedResourceStatuses"` // currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using. // When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim - // This is a beta field and requires enabling VolumeAttributesClass feature (off by default). // +featureGate=VolumeAttributesClass // +optional CurrentVolumeAttributesClassName *string `json:"currentVolumeAttributesClassName,omitempty" protobuf:"bytes,8,opt,name=currentVolumeAttributesClassName"` // ModifyVolumeStatus represents the status object of ControllerModifyVolume operation. // When this is unset, there is no ModifyVolume operation being attempted. - // This is a beta field and requires enabling VolumeAttributesClass feature (off by default). // +featureGate=VolumeAttributesClass // +optional ModifyVolumeStatus *ModifyVolumeStatus `json:"modifyVolumeStatus,omitempty" protobuf:"bytes,9,opt,name=modifyVolumeStatus"` diff --git a/core/v1/types_swagger_doc_generated.go b/core/v1/types_swagger_doc_generated.go index 1e2526f361..0d4f27c79a 100644 --- a/core/v1/types_swagger_doc_generated.go +++ b/core/v1/types_swagger_doc_generated.go @@ -1459,7 +1459,7 @@ var map_PersistentVolumeClaimSpec = map[string]string{ "volumeMode": "volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.", "dataSource": "dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. If the namespace is specified, then dataSourceRef will not be copied to dataSource.", "dataSourceRef": "dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired. This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object. When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner. This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value. For backwards compatibility, when namespace isn't specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty. When namespace is specified in dataSourceRef, dataSource isn't set to the same value and must be empty. There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef\n allows any non-core object, as well as PersistentVolumeClaim objects.\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\n preserves all values, and generates an error if a disallowed value is\n specified.\n* While dataSource only allows local objects, dataSourceRef allows objects\n in any namespaces.\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.", - "volumeAttributesClassName": "volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, it can be changed after the claim is created. An empty string or nil value indicates that no VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state, this field can be reset to its previous value (including nil) to cancel the modification. If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists. More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ (Beta) Using this field requires the VolumeAttributesClass feature gate to be enabled (off by default).", + "volumeAttributesClassName": "volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, it can be changed after the claim is created. An empty string or nil value indicates that no VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state, this field can be reset to its previous value (including nil) to cancel the modification. If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists. More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/", } func (PersistentVolumeClaimSpec) SwaggerDoc() map[string]string { @@ -1474,8 +1474,8 @@ var map_PersistentVolumeClaimStatus = map[string]string{ "conditions": "conditions is the current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'Resizing'.", "allocatedResources": "allocatedResources tracks the resources allocated to a PVC including its capacity. Key names follow standard Kubernetes label syntax. Valid values are either:\n\t* Un-prefixed keys:\n\t\t- storage - the capacity of the volume.\n\t* Custom resources must use implementation-defined prefixed names such as \"example.com/my-custom-resource\"\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered reserved and hence may not be used.\n\nCapacity reported here may be larger than the actual capacity when a volume expansion operation is requested. For storage quota, the larger value from allocatedResources and PVC.spec.resources is used. If allocatedResources is not set, PVC.spec.resources alone is used for quota calculation. If a volume expansion capacity request is lowered, allocatedResources is only lowered if there are no expansion operations in progress and if the actual volume capacity is equal or lower than the requested capacity.\n\nA controller that receives PVC update with previously unknown resourceName should ignore the update for the purpose it was designed. For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVC.\n\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.", "allocatedResourceStatuses": "allocatedResourceStatuses stores status of resource being resized for the given PVC. Key names follow standard Kubernetes label syntax. Valid values are either:\n\t* Un-prefixed keys:\n\t\t- storage - the capacity of the volume.\n\t* Custom resources must use implementation-defined prefixed names such as \"example.com/my-custom-resource\"\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered reserved and hence may not be used.\n\nClaimResourceStatus can be in any of following states:\n\t- ControllerResizeInProgress:\n\t\tState set when resize controller starts resizing the volume in control-plane.\n\t- ControllerResizeFailed:\n\t\tState set when resize has failed in resize controller with a terminal error.\n\t- NodeResizePending:\n\t\tState set when resize controller has finished resizing the volume but further resizing of\n\t\tvolume is needed on the node.\n\t- NodeResizeInProgress:\n\t\tState set when kubelet starts resizing the volume.\n\t- NodeResizeFailed:\n\t\tState set when resizing has failed in kubelet with a terminal error. Transient errors don't set\n\t\tNodeResizeFailed.\nFor example: if expanding a PVC for more capacity - this field can be one of the following states:\n\t- pvc.status.allocatedResourceStatus['storage'] = \"ControllerResizeInProgress\"\n - pvc.status.allocatedResourceStatus['storage'] = \"ControllerResizeFailed\"\n - pvc.status.allocatedResourceStatus['storage'] = \"NodeResizePending\"\n - pvc.status.allocatedResourceStatus['storage'] = \"NodeResizeInProgress\"\n - pvc.status.allocatedResourceStatus['storage'] = \"NodeResizeFailed\"\nWhen this field is not set, it means that no resize operation is in progress for the given PVC.\n\nA controller that receives PVC update with previously unknown resourceName or ClaimResourceStatus should ignore the update for the purpose it was designed. For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVC.\n\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.", - "currentVolumeAttributesClassName": "currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using. When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim This is a beta field and requires enabling VolumeAttributesClass feature (off by default).", - "modifyVolumeStatus": "ModifyVolumeStatus represents the status object of ControllerModifyVolume operation. When this is unset, there is no ModifyVolume operation being attempted. This is a beta field and requires enabling VolumeAttributesClass feature (off by default).", + "currentVolumeAttributesClassName": "currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using. When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim", + "modifyVolumeStatus": "ModifyVolumeStatus represents the status object of ControllerModifyVolume operation. When this is unset, there is no ModifyVolume operation being attempted.", } func (PersistentVolumeClaimStatus) SwaggerDoc() map[string]string { @@ -1552,7 +1552,7 @@ var map_PersistentVolumeSpec = map[string]string{ "mountOptions": "mountOptions is the list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options", "volumeMode": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec.", "nodeAffinity": "nodeAffinity defines constraints that limit what nodes this volume can be accessed from. This field influences the scheduling of pods that use this volume.", - "volumeAttributesClassName": "Name of VolumeAttributesClass to which this persistent volume belongs. Empty value is not allowed. When this field is not set, it indicates that this volume does not belong to any VolumeAttributesClass. This field is mutable and can be changed by the CSI driver after a volume has been updated successfully to a new class. For an unbound PersistentVolume, the volumeAttributesClassName will be matched with unbound PersistentVolumeClaims during the binding process. This is a beta field and requires enabling VolumeAttributesClass feature (off by default).", + "volumeAttributesClassName": "Name of VolumeAttributesClass to which this persistent volume belongs. Empty value is not allowed. When this field is not set, it indicates that this volume does not belong to any VolumeAttributesClass. This field is mutable and can be changed by the CSI driver after a volume has been updated successfully to a new class. For an unbound PersistentVolume, the volumeAttributesClassName will be matched with unbound PersistentVolumeClaims during the binding process.", } func (PersistentVolumeSpec) SwaggerDoc() map[string]string { diff --git a/storage/v1/generated.pb.go b/storage/v1/generated.pb.go index b6624d0650..2b7aea92c5 100644 --- a/storage/v1/generated.pb.go +++ b/storage/v1/generated.pb.go @@ -524,10 +524,66 @@ func (m *VolumeAttachmentStatus) XXX_DiscardUnknown() { var xxx_messageInfo_VolumeAttachmentStatus proto.InternalMessageInfo +func (m *VolumeAttributesClass) Reset() { *m = VolumeAttributesClass{} } +func (*VolumeAttributesClass) ProtoMessage() {} +func (*VolumeAttributesClass) Descriptor() ([]byte, []int) { + return fileDescriptor_662262cc70094b41, []int{17} +} +func (m *VolumeAttributesClass) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *VolumeAttributesClass) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil +} +func (m *VolumeAttributesClass) XXX_Merge(src proto.Message) { + xxx_messageInfo_VolumeAttributesClass.Merge(m, src) +} +func (m *VolumeAttributesClass) XXX_Size() int { + return m.Size() +} +func (m *VolumeAttributesClass) XXX_DiscardUnknown() { + xxx_messageInfo_VolumeAttributesClass.DiscardUnknown(m) +} + +var xxx_messageInfo_VolumeAttributesClass proto.InternalMessageInfo + +func (m *VolumeAttributesClassList) Reset() { *m = VolumeAttributesClassList{} } +func (*VolumeAttributesClassList) ProtoMessage() {} +func (*VolumeAttributesClassList) Descriptor() ([]byte, []int) { + return fileDescriptor_662262cc70094b41, []int{18} +} +func (m *VolumeAttributesClassList) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *VolumeAttributesClassList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil +} +func (m *VolumeAttributesClassList) XXX_Merge(src proto.Message) { + xxx_messageInfo_VolumeAttributesClassList.Merge(m, src) +} +func (m *VolumeAttributesClassList) XXX_Size() int { + return m.Size() +} +func (m *VolumeAttributesClassList) XXX_DiscardUnknown() { + xxx_messageInfo_VolumeAttributesClassList.DiscardUnknown(m) +} + +var xxx_messageInfo_VolumeAttributesClassList proto.InternalMessageInfo + func (m *VolumeError) Reset() { *m = VolumeError{} } func (*VolumeError) ProtoMessage() {} func (*VolumeError) Descriptor() ([]byte, []int) { - return fileDescriptor_662262cc70094b41, []int{17} + return fileDescriptor_662262cc70094b41, []int{19} } func (m *VolumeError) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -555,7 +611,7 @@ var xxx_messageInfo_VolumeError proto.InternalMessageInfo func (m *VolumeNodeResources) Reset() { *m = VolumeNodeResources{} } func (*VolumeNodeResources) ProtoMessage() {} func (*VolumeNodeResources) Descriptor() ([]byte, []int) { - return fileDescriptor_662262cc70094b41, []int{18} + return fileDescriptor_662262cc70094b41, []int{20} } func (m *VolumeNodeResources) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -600,6 +656,9 @@ func init() { proto.RegisterType((*VolumeAttachmentSpec)(nil), "k8s.io.api.storage.v1.VolumeAttachmentSpec") proto.RegisterType((*VolumeAttachmentStatus)(nil), "k8s.io.api.storage.v1.VolumeAttachmentStatus") proto.RegisterMapType((map[string]string)(nil), "k8s.io.api.storage.v1.VolumeAttachmentStatus.AttachmentMetadataEntry") + proto.RegisterType((*VolumeAttributesClass)(nil), "k8s.io.api.storage.v1.VolumeAttributesClass") + proto.RegisterMapType((map[string]string)(nil), "k8s.io.api.storage.v1.VolumeAttributesClass.ParametersEntry") + proto.RegisterType((*VolumeAttributesClassList)(nil), "k8s.io.api.storage.v1.VolumeAttributesClassList") proto.RegisterType((*VolumeError)(nil), "k8s.io.api.storage.v1.VolumeError") proto.RegisterType((*VolumeNodeResources)(nil), "k8s.io.api.storage.v1.VolumeNodeResources") } @@ -609,114 +668,119 @@ func init() { } var fileDescriptor_662262cc70094b41 = []byte{ - // 1711 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0x4b, 0x73, 0x2b, 0x47, - 0x15, 0xf6, 0x58, 0x96, 0x6d, 0xb5, 0xac, 0x6b, 0xbb, 0xaf, 0x1d, 0x06, 0x2f, 0x24, 0xd7, 0x24, - 0x04, 0x27, 0x21, 0xa3, 0x5c, 0x27, 0xa4, 0x52, 0xa1, 0xb2, 0xf0, 0xc8, 0x0a, 0x71, 0x61, 0xd9, - 0xa6, 0xe5, 0xa4, 0x52, 0x14, 0x50, 0x69, 0xcf, 0xb4, 0xe5, 0x8e, 0x35, 0x8f, 0x4c, 0xb7, 0x84, - 0xc5, 0x0a, 0x7e, 0x00, 0x55, 0xb0, 0xe5, 0x57, 0x40, 0x01, 0x1b, 0x96, 0x2c, 0xa8, 0x0b, 0xab, - 0x14, 0xab, 0xbb, 0x52, 0x71, 0xc5, 0x1a, 0x96, 0x2c, 0xbc, 0x4a, 0x75, 0x4f, 0x4b, 0xf3, 0xd0, - 0xc8, 0x8f, 0x8d, 0x76, 0xea, 0xf3, 0xf8, 0xce, 0xe9, 0x3e, 0xa7, 0xbf, 0x3e, 0x23, 0xf0, 0x9d, - 0xeb, 0x0f, 0x98, 0x49, 0xfd, 0x3a, 0x0e, 0x68, 0x9d, 0x71, 0x3f, 0xc4, 0x1d, 0x52, 0xef, 0x3f, - 0xab, 0x77, 0x88, 0x47, 0x42, 0xcc, 0x89, 0x63, 0x06, 0xa1, 0xcf, 0x7d, 0xb8, 0x1d, 0x99, 0x99, - 0x38, 0xa0, 0xa6, 0x32, 0x33, 0xfb, 0xcf, 0x76, 0xde, 0xee, 0x50, 0x7e, 0xd5, 0xbb, 0x30, 0x6d, - 0xdf, 0xad, 0x77, 0xfc, 0x8e, 0x5f, 0x97, 0xd6, 0x17, 0xbd, 0x4b, 0xb9, 0x92, 0x0b, 0xf9, 0x2b, - 0x42, 0xd9, 0x31, 0x12, 0xc1, 0x6c, 0x3f, 0xcc, 0x8b, 0xb4, 0xf3, 0x5e, 0x6c, 0xe3, 0x62, 0xfb, - 0x8a, 0x7a, 0x24, 0x1c, 0xd4, 0x83, 0xeb, 0x8e, 0x74, 0x0a, 0x09, 0xf3, 0x7b, 0xa1, 0x4d, 0x1e, - 0xe5, 0xc5, 0xea, 0x2e, 0xe1, 0x38, 0x2f, 0x56, 0x7d, 0x96, 0x57, 0xd8, 0xf3, 0x38, 0x75, 0xa7, - 0xc3, 0xbc, 0x7f, 0x9f, 0x03, 0xb3, 0xaf, 0x88, 0x8b, 0xb3, 0x7e, 0xc6, 0x5f, 0x34, 0x50, 0x6a, - 0xb4, 0x8f, 0x0e, 0x43, 0xda, 0x27, 0x21, 0xfc, 0x02, 0xac, 0x8a, 0x8c, 0x1c, 0xcc, 0xb1, 0xae, - 0xed, 0x6a, 0x7b, 0xe5, 0xfd, 0x77, 0xcc, 0xf8, 0x7c, 0x27, 0xc0, 0x66, 0x70, 0xdd, 0x11, 0x02, - 0x66, 0x0a, 0x6b, 0xb3, 0xff, 0xcc, 0x3c, 0xbd, 0xf8, 0x92, 0xd8, 0xbc, 0x45, 0x38, 0xb6, 0xe0, - 0xf3, 0x61, 0x6d, 0x61, 0x34, 0xac, 0x81, 0x58, 0x86, 0x26, 0xa8, 0xf0, 0x63, 0xb0, 0xc4, 0x02, - 0x62, 0xeb, 0x8b, 0x12, 0xfd, 0x35, 0x33, 0xb7, 0x7a, 0xe6, 0x24, 0xa3, 0x76, 0x40, 0x6c, 0x6b, - 0x4d, 0x21, 0x2e, 0x89, 0x15, 0x92, 0xfe, 0xc6, 0x9f, 0x35, 0x50, 0x99, 0x58, 0x1d, 0x53, 0xc6, - 0xe1, 0x4f, 0xa7, 0x72, 0x37, 0x1f, 0x96, 0xbb, 0xf0, 0x96, 0x99, 0x6f, 0xa8, 0x38, 0xab, 0x63, - 0x49, 0x22, 0xef, 0x26, 0x28, 0x52, 0x4e, 0x5c, 0xa6, 0x2f, 0xee, 0x16, 0xf6, 0xca, 0xfb, 0xbb, - 0xf7, 0x25, 0x6e, 0x55, 0x14, 0x58, 0xf1, 0x48, 0xb8, 0xa1, 0xc8, 0xdb, 0xf8, 0x67, 0x31, 0x91, - 0xb6, 0xd8, 0x0e, 0xfc, 0x10, 0x3c, 0xc1, 0x9c, 0x63, 0xfb, 0x0a, 0x91, 0xaf, 0x7a, 0x34, 0x24, - 0x8e, 0x4c, 0x7e, 0xd5, 0x82, 0xa3, 0x61, 0xed, 0xc9, 0x41, 0x4a, 0x83, 0x32, 0x96, 0xc2, 0x37, - 0xf0, 0x9d, 0x23, 0xef, 0xd2, 0x3f, 0xf5, 0x5a, 0x7e, 0xcf, 0xe3, 0xf2, 0x58, 0x95, 0xef, 0x59, - 0x4a, 0x83, 0x32, 0x96, 0xd0, 0x06, 0x5b, 0x7d, 0xbf, 0xdb, 0x73, 0xc9, 0x31, 0xbd, 0x24, 0xf6, - 0xc0, 0xee, 0x92, 0x96, 0xef, 0x10, 0xa6, 0x17, 0x76, 0x0b, 0x7b, 0x25, 0xab, 0x3e, 0x1a, 0xd6, - 0xb6, 0x3e, 0xcb, 0xd1, 0xdf, 0x0e, 0x6b, 0x4f, 0x73, 0xe4, 0x28, 0x17, 0x0c, 0x7e, 0x04, 0xd6, - 0xd5, 0xe1, 0x34, 0x70, 0x80, 0x6d, 0xca, 0x07, 0xfa, 0x92, 0xcc, 0xf0, 0xe9, 0x68, 0x58, 0x5b, - 0x6f, 0xa7, 0x55, 0x28, 0x6b, 0x0b, 0x3f, 0x01, 0x95, 0x4b, 0xf6, 0xc3, 0xd0, 0xef, 0x05, 0x67, - 0x7e, 0x97, 0xda, 0x03, 0xbd, 0xb8, 0xab, 0xed, 0x95, 0x2c, 0x63, 0x34, 0xac, 0x55, 0x3e, 0x6e, - 0x27, 0x14, 0xb7, 0x59, 0x01, 0x4a, 0x3b, 0xc2, 0x2f, 0x40, 0x85, 0xfb, 0xd7, 0xc4, 0x13, 0x47, - 0x47, 0x18, 0x67, 0xfa, 0xb2, 0x2c, 0xe3, 0xab, 0x33, 0xca, 0x78, 0x9e, 0xb0, 0xb5, 0xb6, 0x55, - 0x25, 0x2b, 0x49, 0x29, 0x43, 0x69, 0x40, 0xd8, 0x00, 0x9b, 0x61, 0x54, 0x17, 0x86, 0x48, 0xd0, - 0xbb, 0xe8, 0x52, 0x76, 0xa5, 0xaf, 0xc8, 0xcd, 0x6e, 0x8f, 0x86, 0xb5, 0x4d, 0x94, 0x55, 0xa2, - 0x69, 0x7b, 0xf8, 0x1e, 0x58, 0x63, 0xe4, 0x98, 0x7a, 0xbd, 0x9b, 0xa8, 0x9c, 0xab, 0xd2, 0x7f, - 0x63, 0x34, 0xac, 0xad, 0xb5, 0x9b, 0xb1, 0x1c, 0xa5, 0xac, 0x60, 0x1f, 0x18, 0x9e, 0xef, 0x90, - 0x83, 0x6e, 0xd7, 0xb7, 0x31, 0xc7, 0x17, 0x5d, 0xf2, 0x69, 0xe0, 0x60, 0x4e, 0xce, 0x48, 0x48, - 0x7d, 0xa7, 0x4d, 0x6c, 0xdf, 0x73, 0x98, 0x5e, 0xda, 0xd5, 0xf6, 0x0a, 0xd6, 0xeb, 0xa3, 0x61, - 0xcd, 0x38, 0xb9, 0xd7, 0x1a, 0x3d, 0x00, 0xd1, 0xf8, 0xa3, 0x06, 0x56, 0x1a, 0xed, 0x23, 0x81, - 0x36, 0x07, 0xe6, 0x38, 0x4c, 0x31, 0x87, 0x31, 0xfb, 0x02, 0x8a, 0x7c, 0x66, 0xf2, 0xc6, 0xff, - 0x22, 0xde, 0x10, 0x36, 0x8a, 0xf3, 0x76, 0xc1, 0x92, 0x87, 0x5d, 0x22, 0xb3, 0x2e, 0xc5, 0x3e, - 0x27, 0xd8, 0x25, 0x48, 0x6a, 0xe0, 0xeb, 0x60, 0x59, 0x9c, 0xc6, 0xd1, 0xa1, 0x8c, 0x5d, 0xb2, - 0x9e, 0x28, 0x9b, 0xe5, 0x13, 0x29, 0x45, 0x4a, 0x2b, 0xaa, 0xc7, 0xfd, 0xc0, 0xef, 0xfa, 0x9d, - 0xc1, 0x8f, 0xc8, 0x60, 0x7c, 0x95, 0x64, 0xf5, 0xce, 0x13, 0x72, 0x94, 0xb2, 0x82, 0x3f, 0x03, - 0x65, 0x1c, 0x9f, 0xb3, 0xbc, 0x1f, 0xe5, 0xfd, 0x37, 0x67, 0x6c, 0x2f, 0xba, 0x7a, 0x22, 0x2e, - 0x52, 0x0f, 0x0e, 0xb3, 0xd6, 0x47, 0xc3, 0x5a, 0x39, 0x51, 0x2a, 0x94, 0xc4, 0x33, 0xfe, 0xa0, - 0x81, 0xb2, 0xda, 0xf0, 0x1c, 0x68, 0xb2, 0x91, 0xa6, 0xc9, 0xea, 0xdd, 0x55, 0x9a, 0x41, 0x92, - 0x3f, 0x9f, 0x64, 0x2c, 0x19, 0xf2, 0x14, 0xac, 0x38, 0xb2, 0x54, 0x4c, 0xd7, 0x24, 0xea, 0x6b, - 0x77, 0xa3, 0x2a, 0x02, 0x5e, 0x57, 0xd8, 0x2b, 0xd1, 0x9a, 0xa1, 0x31, 0x8a, 0xf1, 0xff, 0x02, - 0x80, 0x8d, 0xf6, 0x51, 0x86, 0x7e, 0xe6, 0xd0, 0xc2, 0x14, 0xac, 0x89, 0x56, 0x19, 0x37, 0x83, - 0x6a, 0xe5, 0x77, 0x1f, 0x78, 0xfe, 0xf8, 0x82, 0x74, 0xdb, 0xa4, 0x4b, 0x6c, 0xee, 0x87, 0x51, - 0x57, 0x9d, 0x24, 0xc0, 0x50, 0x0a, 0x1a, 0x1e, 0x82, 0x8d, 0x31, 0x9b, 0x76, 0x31, 0x63, 0xa2, - 0x9b, 0xf5, 0x82, 0xec, 0x5e, 0x5d, 0xa5, 0xb8, 0xd1, 0xce, 0xe8, 0xd1, 0x94, 0x07, 0xfc, 0x1c, - 0xac, 0xda, 0x49, 0xe2, 0xbe, 0xa7, 0x59, 0xcc, 0xf1, 0x14, 0x64, 0xfe, 0xb8, 0x87, 0x3d, 0x4e, - 0xf9, 0xc0, 0x5a, 0x13, 0x8d, 0x32, 0x61, 0xf8, 0x09, 0x1a, 0x64, 0x60, 0xd3, 0xc5, 0x37, 0xd4, - 0xed, 0xb9, 0x51, 0x4b, 0xb7, 0xe9, 0x2f, 0x89, 0xa4, 0xf7, 0xc7, 0x87, 0x90, 0xf4, 0xda, 0xca, - 0x82, 0xa1, 0x69, 0x7c, 0xe3, 0xef, 0x1a, 0x78, 0x65, 0xba, 0xf0, 0x73, 0xb8, 0x16, 0x27, 0xe9, - 0x6b, 0xf1, 0xc6, 0xec, 0x06, 0xce, 0xe4, 0x36, 0xe3, 0x86, 0xfc, 0x66, 0x19, 0xac, 0x25, 0xcb, - 0x37, 0x87, 0xde, 0xfd, 0x3e, 0x28, 0x07, 0xa1, 0xdf, 0xa7, 0x8c, 0xfa, 0x1e, 0x09, 0x15, 0x13, - 0x3e, 0x55, 0x2e, 0xe5, 0xb3, 0x58, 0x85, 0x92, 0x76, 0xb0, 0x03, 0x40, 0x80, 0x43, 0xec, 0x12, - 0x2e, 0xee, 0x6f, 0x41, 0x6e, 0xff, 0xdd, 0x19, 0xdb, 0x4f, 0xee, 0xc8, 0x3c, 0x9b, 0x78, 0x35, - 0x3d, 0x1e, 0x0e, 0xe2, 0xec, 0x62, 0x05, 0x4a, 0x40, 0xc3, 0x6b, 0x50, 0x09, 0x89, 0xdd, 0xc5, - 0xd4, 0x55, 0xb3, 0xc2, 0x92, 0xcc, 0xb0, 0x29, 0x1e, 0x6e, 0x94, 0x54, 0xdc, 0x0e, 0x6b, 0xef, - 0x4c, 0x4f, 0xfb, 0xe6, 0x19, 0x09, 0x19, 0x65, 0x9c, 0x78, 0x3c, 0x6a, 0x98, 0x94, 0x0f, 0x4a, - 0x63, 0x0b, 0xa6, 0x77, 0xc5, 0xd3, 0x7b, 0x1a, 0x70, 0xea, 0x7b, 0x4c, 0x2f, 0xc6, 0x4c, 0xdf, - 0x4a, 0xc8, 0x51, 0xca, 0x0a, 0x1e, 0x83, 0x2d, 0xc1, 0xcc, 0xbf, 0x88, 0x02, 0x34, 0x6f, 0x02, - 0xec, 0x89, 0x53, 0xd2, 0x97, 0xe5, 0x2b, 0xaf, 0x8b, 0x91, 0xeb, 0x20, 0x47, 0x8f, 0x72, 0xbd, - 0xe0, 0xe7, 0x60, 0x33, 0x9a, 0xb9, 0x2c, 0xea, 0x39, 0xd4, 0xeb, 0x88, 0x89, 0x4b, 0x0e, 0x1c, - 0x25, 0xeb, 0x4d, 0x71, 0x23, 0x3e, 0xcb, 0x2a, 0x6f, 0xf3, 0x84, 0x68, 0x1a, 0x04, 0x7e, 0x05, - 0x36, 0x65, 0x44, 0xe2, 0x28, 0x3a, 0xa1, 0x84, 0xe9, 0xab, 0xb2, 0x74, 0x7b, 0xc9, 0xd2, 0x89, - 0xa3, 0x8b, 0xa6, 0xa5, 0x88, 0x74, 0xc6, 0xe4, 0x74, 0x4e, 0x42, 0xd7, 0xfa, 0xb6, 0xaa, 0xd7, - 0xe6, 0x41, 0x16, 0x0a, 0x4d, 0xa3, 0xef, 0x7c, 0x04, 0xd6, 0x33, 0x05, 0x87, 0x1b, 0xa0, 0x70, - 0x4d, 0x06, 0xd1, 0xb3, 0x8c, 0xc4, 0x4f, 0xb8, 0x05, 0x8a, 0x7d, 0xdc, 0xed, 0x91, 0xa8, 0xf9, - 0x50, 0xb4, 0xf8, 0x70, 0xf1, 0x03, 0xcd, 0xf8, 0xab, 0x06, 0x52, 0x74, 0x36, 0x87, 0x2b, 0xfd, - 0x49, 0xfa, 0x4a, 0xbf, 0xfa, 0x80, 0x9e, 0x9e, 0x71, 0x99, 0x7f, 0xad, 0x81, 0xb5, 0xe4, 0x68, - 0x09, 0xbf, 0x07, 0x56, 0x71, 0xcf, 0xa1, 0xc4, 0xb3, 0xc7, 0x53, 0xc9, 0x24, 0x91, 0x03, 0x25, - 0x47, 0x13, 0x0b, 0x31, 0x78, 0x92, 0x9b, 0x80, 0x86, 0x58, 0x34, 0xd9, 0x78, 0xd8, 0x5b, 0x94, - 0xc3, 0x9e, 0x64, 0xc6, 0x66, 0x56, 0x89, 0xa6, 0xed, 0x8d, 0xdf, 0x2f, 0x82, 0x8d, 0xa8, 0x37, - 0xa2, 0x4f, 0x0e, 0x97, 0x78, 0x7c, 0x0e, 0xa4, 0xd2, 0x4a, 0xcd, 0x74, 0x6f, 0xdd, 0x39, 0xf4, - 0xc4, 0x89, 0xcd, 0x1a, 0xee, 0xe0, 0xa7, 0x60, 0x99, 0x71, 0xcc, 0x7b, 0x4c, 0x3e, 0x75, 0xe5, - 0xfd, 0xb7, 0x1f, 0x0a, 0x28, 0x9d, 0xe2, 0xb9, 0x2e, 0x5a, 0x23, 0x05, 0x66, 0xfc, 0x4d, 0x03, - 0x5b, 0x59, 0x97, 0x39, 0x74, 0xd8, 0x71, 0xba, 0xc3, 0xbe, 0xfb, 0xc0, 0xcd, 0xcc, 0xe8, 0xb2, - 0x7f, 0x69, 0xe0, 0x95, 0xa9, 0x7d, 0xcb, 0x97, 0x54, 0xf0, 0x52, 0x90, 0x61, 0xbf, 0x93, 0x78, - 0x22, 0x96, 0xbc, 0x74, 0x96, 0xa3, 0x47, 0xb9, 0x5e, 0xf0, 0x4b, 0xb0, 0x41, 0xbd, 0x2e, 0xf5, - 0x88, 0x7a, 0x78, 0xe3, 0xfa, 0xe6, 0x92, 0x47, 0x16, 0x59, 0x16, 0x77, 0x4b, 0xcc, 0x27, 0x47, - 0x19, 0x14, 0x34, 0x85, 0x6b, 0xfc, 0x23, 0xa7, 0x32, 0x72, 0x66, 0x14, 0x57, 0x48, 0x4a, 0x48, - 0x38, 0x75, 0x85, 0x94, 0x1c, 0x4d, 0x2c, 0x64, 0xdf, 0xc8, 0xa3, 0x50, 0x89, 0x3e, 0xb8, 0x6f, - 0xa4, 0x53, 0xa2, 0x6f, 0xe4, 0x1a, 0x29, 0x30, 0x91, 0x84, 0x98, 0xc9, 0x12, 0xb3, 0xd7, 0x24, - 0x89, 0x13, 0x25, 0x47, 0x13, 0x0b, 0xe3, 0xbf, 0x85, 0x9c, 0x02, 0xc9, 0x06, 0x4c, 0xec, 0x66, - 0xfc, 0xef, 0x40, 0x76, 0x37, 0xce, 0x64, 0x37, 0x0e, 0xfc, 0x9d, 0x06, 0x20, 0x9e, 0x40, 0xb4, - 0xc6, 0x0d, 0x1a, 0x75, 0x51, 0xf3, 0x51, 0x57, 0xc2, 0x3c, 0x98, 0xc2, 0x89, 0x5e, 0xe3, 0x1d, - 0x15, 0x1f, 0x4e, 0x1b, 0xa0, 0x9c, 0xe0, 0xd0, 0x01, 0xe5, 0x48, 0xda, 0x0c, 0x43, 0x3f, 0x54, - 0xd7, 0xd3, 0xb8, 0x33, 0x17, 0x69, 0x69, 0x55, 0xe5, 0xc7, 0x4d, 0xec, 0x7a, 0x3b, 0xac, 0x95, - 0x13, 0x7a, 0x94, 0x84, 0x15, 0x51, 0x1c, 0x12, 0x47, 0x59, 0x7a, 0x5c, 0x94, 0x43, 0x32, 0x3b, - 0x4a, 0x02, 0x76, 0xa7, 0x09, 0xbe, 0x35, 0xe3, 0x58, 0x1e, 0xf5, 0x66, 0xfd, 0x49, 0x03, 0xc9, - 0x18, 0xf0, 0x18, 0x2c, 0x71, 0xaa, 0x6e, 0x5d, 0xfa, 0x03, 0xf0, 0x0e, 0x22, 0x39, 0xa7, 0x2e, - 0x89, 0xa9, 0x50, 0xac, 0x90, 0x44, 0x81, 0x6f, 0x80, 0x15, 0x97, 0x30, 0x86, 0x3b, 0x2a, 0x72, - 0xfc, 0x39, 0xd4, 0x8a, 0xc4, 0x68, 0xac, 0x87, 0x6f, 0x81, 0x12, 0x11, 0x19, 0x34, 0xc4, 0x00, - 0x21, 0x2a, 0x53, 0xb4, 0x2a, 0xa3, 0x61, 0xad, 0xd4, 0x1c, 0x0b, 0x51, 0xac, 0x37, 0xde, 0x07, - 0x4f, 0x73, 0xbe, 0x41, 0x61, 0x0d, 0x14, 0x6d, 0xf9, 0x8f, 0x85, 0x26, 0xfd, 0x4b, 0x82, 0x7e, - 0x1a, 0xf2, 0xaf, 0x8a, 0x48, 0x6e, 0xfd, 0xe0, 0xf9, 0xcb, 0xea, 0xc2, 0xd7, 0x2f, 0xab, 0x0b, - 0x2f, 0x5e, 0x56, 0x17, 0x7e, 0x35, 0xaa, 0x6a, 0xcf, 0x47, 0x55, 0xed, 0xeb, 0x51, 0x55, 0x7b, - 0x31, 0xaa, 0x6a, 0xff, 0x1e, 0x55, 0xb5, 0xdf, 0xfe, 0xa7, 0xba, 0xf0, 0x93, 0xed, 0xdc, 0xff, - 0x7c, 0xbf, 0x09, 0x00, 0x00, 0xff, 0xff, 0x39, 0x5a, 0x51, 0xe9, 0x0b, 0x16, 0x00, 0x00, + // 1782 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x59, 0x4b, 0x73, 0x2b, 0x47, + 0x15, 0xf6, 0x58, 0x96, 0x6d, 0xb5, 0xac, 0x6b, 0xbb, 0xaf, 0x1d, 0x26, 0x5e, 0x48, 0xae, 0x49, + 0x08, 0xce, 0x6b, 0x94, 0xeb, 0x84, 0x54, 0x2a, 0x90, 0x85, 0x47, 0x56, 0x88, 0x0b, 0xcb, 0xd7, + 0x69, 0x39, 0xa9, 0x14, 0x05, 0x54, 0xda, 0x33, 0x6d, 0xb9, 0x63, 0xcd, 0x23, 0xd3, 0x3d, 0xc2, + 0x62, 0x05, 0x3f, 0x80, 0x2a, 0xd8, 0xf2, 0x2b, 0xa0, 0x80, 0x0d, 0x4b, 0x16, 0xd4, 0x85, 0x62, + 0x91, 0x62, 0x95, 0x95, 0x8a, 0x2b, 0xd6, 0xb0, 0x64, 0xe1, 0x15, 0xd5, 0x3d, 0xa3, 0x79, 0x69, + 0xe4, 0x47, 0xa5, 0x4a, 0x3b, 0xf7, 0x79, 0x7c, 0x7d, 0xba, 0xcf, 0x39, 0x5f, 0x1f, 0x8d, 0xc1, + 0xb7, 0xaf, 0xde, 0x63, 0x3a, 0x75, 0x9b, 0xd8, 0xa3, 0x4d, 0xc6, 0x5d, 0x1f, 0xf7, 0x48, 0x73, + 0xf0, 0xa4, 0xd9, 0x23, 0x0e, 0xf1, 0x31, 0x27, 0x96, 0xee, 0xf9, 0x2e, 0x77, 0xe1, 0x76, 0x68, + 0xa6, 0x63, 0x8f, 0xea, 0x91, 0x99, 0x3e, 0x78, 0xb2, 0xf3, 0x66, 0x8f, 0xf2, 0xcb, 0xe0, 0x5c, + 0x37, 0x5d, 0xbb, 0xd9, 0x73, 0x7b, 0x6e, 0x53, 0x5a, 0x9f, 0x07, 0x17, 0x72, 0x25, 0x17, 0xf2, + 0xaf, 0x10, 0x65, 0x47, 0x4b, 0x6d, 0x66, 0xba, 0x7e, 0xd1, 0x4e, 0x3b, 0xef, 0x24, 0x36, 0x36, + 0x36, 0x2f, 0xa9, 0x43, 0xfc, 0x61, 0xd3, 0xbb, 0xea, 0x49, 0x27, 0x9f, 0x30, 0x37, 0xf0, 0x4d, + 0xf2, 0x20, 0x2f, 0xd6, 0xb4, 0x09, 0xc7, 0x45, 0x7b, 0x35, 0x67, 0x79, 0xf9, 0x81, 0xc3, 0xa9, + 0x3d, 0xbd, 0xcd, 0xbb, 0x77, 0x39, 0x30, 0xf3, 0x92, 0xd8, 0x38, 0xef, 0xa7, 0xfd, 0x49, 0x01, + 0x95, 0x56, 0xf7, 0xe8, 0xd0, 0xa7, 0x03, 0xe2, 0xc3, 0xcf, 0xc1, 0xaa, 0x88, 0xc8, 0xc2, 0x1c, + 0xab, 0xca, 0xae, 0xb2, 0x57, 0xdd, 0x7f, 0x4b, 0x4f, 0xee, 0x37, 0x06, 0xd6, 0xbd, 0xab, 0x9e, + 0x10, 0x30, 0x5d, 0x58, 0xeb, 0x83, 0x27, 0xfa, 0xd3, 0xf3, 0x2f, 0x88, 0xc9, 0x3b, 0x84, 0x63, + 0x03, 0x3e, 0x1b, 0x35, 0x16, 0xc6, 0xa3, 0x06, 0x48, 0x64, 0x28, 0x46, 0x85, 0x1f, 0x82, 0x25, + 0xe6, 0x11, 0x53, 0x5d, 0x94, 0xe8, 0x2f, 0xeb, 0x85, 0xd9, 0xd3, 0xe3, 0x88, 0xba, 0x1e, 0x31, + 0x8d, 0xb5, 0x08, 0x71, 0x49, 0xac, 0x90, 0xf4, 0xd7, 0xfe, 0xa8, 0x80, 0x5a, 0x6c, 0x75, 0x4c, + 0x19, 0x87, 0x3f, 0x9e, 0x8a, 0x5d, 0xbf, 0x5f, 0xec, 0xc2, 0x5b, 0x46, 0xbe, 0x11, 0xed, 0xb3, + 0x3a, 0x91, 0xa4, 0xe2, 0x6e, 0x83, 0x32, 0xe5, 0xc4, 0x66, 0xea, 0xe2, 0x6e, 0x69, 0xaf, 0xba, + 0xbf, 0x7b, 0x57, 0xe0, 0x46, 0x2d, 0x02, 0x2b, 0x1f, 0x09, 0x37, 0x14, 0x7a, 0x6b, 0x7f, 0x2f, + 0xa7, 0xc2, 0x16, 0xc7, 0x81, 0xef, 0x83, 0x47, 0x98, 0x73, 0x6c, 0x5e, 0x22, 0xf2, 0x65, 0x40, + 0x7d, 0x62, 0xc9, 0xe0, 0x57, 0x0d, 0x38, 0x1e, 0x35, 0x1e, 0x1d, 0x64, 0x34, 0x28, 0x67, 0x29, + 0x7c, 0x3d, 0xd7, 0x3a, 0x72, 0x2e, 0xdc, 0xa7, 0x4e, 0xc7, 0x0d, 0x1c, 0x2e, 0xaf, 0x35, 0xf2, + 0x3d, 0xcd, 0x68, 0x50, 0xce, 0x12, 0x9a, 0x60, 0x6b, 0xe0, 0xf6, 0x03, 0x9b, 0x1c, 0xd3, 0x0b, + 0x62, 0x0e, 0xcd, 0x3e, 0xe9, 0xb8, 0x16, 0x61, 0x6a, 0x69, 0xb7, 0xb4, 0x57, 0x31, 0x9a, 0xe3, + 0x51, 0x63, 0xeb, 0xd3, 0x02, 0xfd, 0xcd, 0xa8, 0xf1, 0xb8, 0x40, 0x8e, 0x0a, 0xc1, 0xe0, 0x07, + 0x60, 0x3d, 0xba, 0x9c, 0x16, 0xf6, 0xb0, 0x49, 0xf9, 0x50, 0x5d, 0x92, 0x11, 0x3e, 0x1e, 0x8f, + 0x1a, 0xeb, 0xdd, 0xac, 0x0a, 0xe5, 0x6d, 0xe1, 0x47, 0xa0, 0x76, 0xc1, 0x7e, 0xe0, 0xbb, 0x81, + 0x77, 0xea, 0xf6, 0xa9, 0x39, 0x54, 0xcb, 0xbb, 0xca, 0x5e, 0xc5, 0xd0, 0xc6, 0xa3, 0x46, 0xed, + 0xc3, 0x6e, 0x4a, 0x71, 0x93, 0x17, 0xa0, 0xac, 0x23, 0xfc, 0x1c, 0xd4, 0xb8, 0x7b, 0x45, 0x1c, + 0x71, 0x75, 0x84, 0x71, 0xa6, 0x2e, 0xcb, 0x34, 0xbe, 0x34, 0x23, 0x8d, 0x67, 0x29, 0x5b, 0x63, + 0x3b, 0xca, 0x64, 0x2d, 0x2d, 0x65, 0x28, 0x0b, 0x08, 0x5b, 0x60, 0xd3, 0x0f, 0xf3, 0xc2, 0x10, + 0xf1, 0x82, 0xf3, 0x3e, 0x65, 0x97, 0xea, 0x8a, 0x3c, 0xec, 0xf6, 0x78, 0xd4, 0xd8, 0x44, 0x79, + 0x25, 0x9a, 0xb6, 0x87, 0xef, 0x80, 0x35, 0x46, 0x8e, 0xa9, 0x13, 0x5c, 0x87, 0xe9, 0x5c, 0x95, + 0xfe, 0x1b, 0xe3, 0x51, 0x63, 0xad, 0xdb, 0x4e, 0xe4, 0x28, 0x63, 0x05, 0x07, 0x40, 0x73, 0x5c, + 0x8b, 0x1c, 0xf4, 0xfb, 0xae, 0x89, 0x39, 0x3e, 0xef, 0x93, 0x4f, 0x3c, 0x0b, 0x73, 0x72, 0x4a, + 0x7c, 0xea, 0x5a, 0x5d, 0x62, 0xba, 0x8e, 0xc5, 0xd4, 0xca, 0xae, 0xb2, 0x57, 0x32, 0x5e, 0x19, + 0x8f, 0x1a, 0xda, 0xc9, 0x9d, 0xd6, 0xe8, 0x1e, 0x88, 0xda, 0xef, 0x15, 0xb0, 0xd2, 0xea, 0x1e, + 0x09, 0xb4, 0x39, 0x30, 0xc7, 0x61, 0x86, 0x39, 0xb4, 0xd9, 0x0d, 0x28, 0xe2, 0x99, 0xc9, 0x1b, + 0xff, 0x0d, 0x79, 0x43, 0xd8, 0x44, 0x9c, 0xb7, 0x0b, 0x96, 0x1c, 0x6c, 0x13, 0x19, 0x75, 0x25, + 0xf1, 0x39, 0xc1, 0x36, 0x41, 0x52, 0x03, 0x5f, 0x01, 0xcb, 0xe2, 0x36, 0x8e, 0x0e, 0xe5, 0xde, + 0x15, 0xe3, 0x51, 0x64, 0xb3, 0x7c, 0x22, 0xa5, 0x28, 0xd2, 0x8a, 0xec, 0x71, 0xd7, 0x73, 0xfb, + 0x6e, 0x6f, 0xf8, 0x43, 0x32, 0x9c, 0xb4, 0x92, 0xcc, 0xde, 0x59, 0x4a, 0x8e, 0x32, 0x56, 0xf0, + 0x27, 0xa0, 0x8a, 0x93, 0x7b, 0x96, 0xfd, 0x51, 0xdd, 0x7f, 0x6d, 0xc6, 0xf1, 0xc2, 0xd6, 0x13, + 0xfb, 0xa2, 0xe8, 0xc1, 0x61, 0xc6, 0xfa, 0x78, 0xd4, 0xa8, 0xa6, 0x52, 0x85, 0xd2, 0x78, 0xda, + 0xef, 0x14, 0x50, 0x8d, 0x0e, 0x3c, 0x07, 0x9a, 0x6c, 0x65, 0x69, 0xb2, 0x7e, 0x7b, 0x96, 0x66, + 0x90, 0xe4, 0x4f, 0xe3, 0x88, 0x25, 0x43, 0x3e, 0x05, 0x2b, 0x96, 0x4c, 0x15, 0x53, 0x15, 0x89, + 0xfa, 0xf2, 0xed, 0xa8, 0x11, 0x01, 0xaf, 0x47, 0xd8, 0x2b, 0xe1, 0x9a, 0xa1, 0x09, 0x8a, 0xf6, + 0xbf, 0x12, 0x80, 0xad, 0xee, 0x51, 0x8e, 0x7e, 0xe6, 0x50, 0xc2, 0x14, 0xac, 0x89, 0x52, 0x99, + 0x14, 0x43, 0x54, 0xca, 0x6f, 0xdf, 0xf3, 0xfe, 0xf1, 0x39, 0xe9, 0x77, 0x49, 0x9f, 0x98, 0xdc, + 0xf5, 0xc3, 0xaa, 0x3a, 0x49, 0x81, 0xa1, 0x0c, 0x34, 0x3c, 0x04, 0x1b, 0x13, 0x36, 0xed, 0x63, + 0xc6, 0x44, 0x35, 0xab, 0x25, 0x59, 0xbd, 0x6a, 0x14, 0xe2, 0x46, 0x37, 0xa7, 0x47, 0x53, 0x1e, + 0xf0, 0x33, 0xb0, 0x6a, 0xa6, 0x89, 0xfb, 0x8e, 0x62, 0xd1, 0x27, 0x53, 0x90, 0xfe, 0x71, 0x80, + 0x1d, 0x4e, 0xf9, 0xd0, 0x58, 0x13, 0x85, 0x12, 0x33, 0x7c, 0x8c, 0x06, 0x19, 0xd8, 0xb4, 0xf1, + 0x35, 0xb5, 0x03, 0x3b, 0x2c, 0xe9, 0x2e, 0xfd, 0x39, 0x91, 0xf4, 0xfe, 0xf0, 0x2d, 0x24, 0xbd, + 0x76, 0xf2, 0x60, 0x68, 0x1a, 0x5f, 0xfb, 0xab, 0x02, 0x5e, 0x98, 0x4e, 0xfc, 0x1c, 0xda, 0xe2, + 0x24, 0xdb, 0x16, 0xaf, 0xce, 0x2e, 0xe0, 0x5c, 0x6c, 0x33, 0x3a, 0xe4, 0x57, 0xcb, 0x60, 0x2d, + 0x9d, 0xbe, 0x39, 0xd4, 0xee, 0x77, 0x41, 0xd5, 0xf3, 0xdd, 0x01, 0x65, 0xd4, 0x75, 0x88, 0x1f, + 0x31, 0xe1, 0xe3, 0xc8, 0xa5, 0x7a, 0x9a, 0xa8, 0x50, 0xda, 0x0e, 0xf6, 0x00, 0xf0, 0xb0, 0x8f, + 0x6d, 0xc2, 0x45, 0xff, 0x96, 0xe4, 0xf1, 0xdf, 0x9e, 0x71, 0xfc, 0xf4, 0x89, 0xf4, 0xd3, 0xd8, + 0xab, 0xed, 0x70, 0x7f, 0x98, 0x44, 0x97, 0x28, 0x50, 0x0a, 0x1a, 0x5e, 0x81, 0x9a, 0x4f, 0xcc, + 0x3e, 0xa6, 0x76, 0x34, 0x2b, 0x2c, 0xc9, 0x08, 0xdb, 0xe2, 0xe1, 0x46, 0x69, 0xc5, 0xcd, 0xa8, + 0xf1, 0xd6, 0xf4, 0xb4, 0xaf, 0x9f, 0x12, 0x9f, 0x51, 0xc6, 0x89, 0xc3, 0xc3, 0x82, 0xc9, 0xf8, + 0xa0, 0x2c, 0xb6, 0x60, 0x7a, 0x5b, 0x3c, 0xbd, 0x4f, 0x3d, 0x4e, 0x5d, 0x87, 0xa9, 0xe5, 0x84, + 0xe9, 0x3b, 0x29, 0x39, 0xca, 0x58, 0xc1, 0x63, 0xb0, 0x25, 0x98, 0xf9, 0x67, 0xe1, 0x06, 0xed, + 0x6b, 0x0f, 0x3b, 0xe2, 0x96, 0xd4, 0x65, 0xf9, 0xca, 0xab, 0x62, 0xe4, 0x3a, 0x28, 0xd0, 0xa3, + 0x42, 0x2f, 0xf8, 0x19, 0xd8, 0x0c, 0x67, 0x2e, 0x83, 0x3a, 0x16, 0x75, 0x7a, 0x62, 0xe2, 0x92, + 0x03, 0x47, 0xc5, 0x78, 0x4d, 0x74, 0xc4, 0xa7, 0x79, 0xe5, 0x4d, 0x91, 0x10, 0x4d, 0x83, 0xc0, + 0x2f, 0xc1, 0xa6, 0xdc, 0x91, 0x58, 0x11, 0x9d, 0x50, 0xc2, 0xd4, 0x55, 0x99, 0xba, 0xbd, 0x74, + 0xea, 0xc4, 0xd5, 0x85, 0xd3, 0x52, 0x48, 0x3a, 0x13, 0x72, 0x3a, 0x23, 0xbe, 0x6d, 0xbc, 0x18, + 0xe5, 0x6b, 0xf3, 0x20, 0x0f, 0x85, 0xa6, 0xd1, 0x77, 0x3e, 0x00, 0xeb, 0xb9, 0x84, 0xc3, 0x0d, + 0x50, 0xba, 0x22, 0xc3, 0xf0, 0x59, 0x46, 0xe2, 0x4f, 0xb8, 0x05, 0xca, 0x03, 0xdc, 0x0f, 0x48, + 0x58, 0x7c, 0x28, 0x5c, 0xbc, 0xbf, 0xf8, 0x9e, 0xa2, 0xfd, 0x59, 0x01, 0x19, 0x3a, 0x9b, 0x43, + 0x4b, 0x7f, 0x94, 0x6d, 0xe9, 0x97, 0xee, 0x51, 0xd3, 0x33, 0x9a, 0xf9, 0x97, 0x0a, 0x58, 0x4b, + 0x8f, 0x96, 0xf0, 0x0d, 0xb0, 0x8a, 0x03, 0x8b, 0x12, 0xc7, 0x9c, 0x4c, 0x25, 0x71, 0x20, 0x07, + 0x91, 0x1c, 0xc5, 0x16, 0x62, 0xf0, 0x24, 0xd7, 0x1e, 0xf5, 0xb1, 0x28, 0xb2, 0xc9, 0xb0, 0xb7, + 0x28, 0x87, 0x3d, 0xc9, 0x8c, 0xed, 0xbc, 0x12, 0x4d, 0xdb, 0x6b, 0xbf, 0x5d, 0x04, 0x1b, 0x61, + 0x6d, 0x84, 0x3f, 0x39, 0x6c, 0xe2, 0xf0, 0x39, 0x90, 0x4a, 0x27, 0x33, 0xd3, 0xbd, 0x7e, 0xeb, + 0xd0, 0x93, 0x04, 0x36, 0x6b, 0xb8, 0x83, 0x9f, 0x80, 0x65, 0xc6, 0x31, 0x0f, 0x98, 0x7c, 0xea, + 0xaa, 0xfb, 0x6f, 0xde, 0x17, 0x50, 0x3a, 0x25, 0x73, 0x5d, 0xb8, 0x46, 0x11, 0x98, 0xf6, 0x17, + 0x05, 0x6c, 0xe5, 0x5d, 0xe6, 0x50, 0x61, 0xc7, 0xd9, 0x0a, 0xfb, 0xce, 0x3d, 0x0f, 0x33, 0xa3, + 0xca, 0xfe, 0xa9, 0x80, 0x17, 0xa6, 0xce, 0x2d, 0x5f, 0x52, 0xc1, 0x4b, 0x5e, 0x8e, 0xfd, 0x4e, + 0x92, 0x89, 0x58, 0xf2, 0xd2, 0x69, 0x81, 0x1e, 0x15, 0x7a, 0xc1, 0x2f, 0xc0, 0x06, 0x75, 0xfa, + 0xd4, 0x21, 0xd1, 0xc3, 0x9b, 0xe4, 0xb7, 0x90, 0x3c, 0xf2, 0xc8, 0x32, 0xb9, 0x5b, 0x62, 0x3e, + 0x39, 0xca, 0xa1, 0xa0, 0x29, 0x5c, 0xed, 0x6f, 0x05, 0x99, 0x91, 0x33, 0xa3, 0x68, 0x21, 0x29, + 0x21, 0xfe, 0x54, 0x0b, 0x45, 0x72, 0x14, 0x5b, 0xc8, 0xba, 0x91, 0x57, 0x11, 0x05, 0x7a, 0xef, + 0xba, 0x91, 0x4e, 0xa9, 0xba, 0x91, 0x6b, 0x14, 0x81, 0x89, 0x20, 0xc4, 0x4c, 0x96, 0x9a, 0xbd, + 0xe2, 0x20, 0x4e, 0x22, 0x39, 0x8a, 0x2d, 0xb4, 0xff, 0x94, 0x0a, 0x12, 0x24, 0x0b, 0x30, 0x75, + 0x9a, 0xc9, 0xd7, 0x81, 0xfc, 0x69, 0xac, 0xf8, 0x34, 0x16, 0xfc, 0x8d, 0x02, 0x20, 0x8e, 0x21, + 0x3a, 0x93, 0x02, 0x0d, 0xab, 0xa8, 0xfd, 0xa0, 0x96, 0xd0, 0x0f, 0xa6, 0x70, 0xc2, 0xd7, 0x78, + 0x27, 0xda, 0x1f, 0x4e, 0x1b, 0xa0, 0x82, 0xcd, 0xa1, 0x05, 0xaa, 0xa1, 0xb4, 0xed, 0xfb, 0xae, + 0x1f, 0xb5, 0xa7, 0x76, 0x6b, 0x2c, 0xd2, 0xd2, 0xa8, 0xcb, 0x1f, 0x37, 0x89, 0xeb, 0xcd, 0xa8, + 0x51, 0x4d, 0xe9, 0x51, 0x1a, 0x56, 0xec, 0x62, 0x91, 0x64, 0x97, 0xa5, 0x87, 0xed, 0x72, 0x48, + 0x66, 0xef, 0x92, 0x82, 0xdd, 0x69, 0x83, 0x6f, 0xcd, 0xb8, 0x96, 0x07, 0xbd, 0x59, 0xa3, 0x45, + 0xb0, 0x1d, 0xdf, 0xba, 0x4f, 0xcf, 0x03, 0x4e, 0xd8, 0xbc, 0x86, 0xb9, 0x7d, 0x00, 0xc2, 0x1f, + 0x43, 0xb2, 0x36, 0xc3, 0x59, 0x2e, 0xf6, 0x38, 0x8c, 0x35, 0x28, 0x65, 0x05, 0xbd, 0x82, 0x49, + 0xee, 0xfb, 0x77, 0x55, 0x53, 0xfa, 0x5c, 0x0f, 0x1d, 0xe9, 0xbe, 0xe9, 0x50, 0xf0, 0x0f, 0x05, + 0xbc, 0x58, 0x18, 0xc8, 0x1c, 0xb8, 0xfb, 0xe3, 0x2c, 0x77, 0xbf, 0xf1, 0x90, 0x7b, 0x9a, 0x41, + 0xe0, 0x7f, 0x50, 0x40, 0xba, 0x26, 0xe1, 0x31, 0x58, 0xe2, 0x34, 0x62, 0xe9, 0xec, 0x07, 0x83, + 0x5b, 0x82, 0x3f, 0xa3, 0x36, 0x49, 0x9e, 0x4e, 0xb1, 0x42, 0x12, 0x05, 0xbe, 0x0a, 0x56, 0x6c, + 0xc2, 0x18, 0xee, 0x4d, 0xca, 0x21, 0xfe, 0xf9, 0xdc, 0x09, 0xc5, 0x68, 0xa2, 0x87, 0xaf, 0x83, + 0x0a, 0x11, 0x11, 0xb4, 0xc4, 0xc0, 0x29, 0x3a, 0xb9, 0x6c, 0xd4, 0xc6, 0xa3, 0x46, 0xa5, 0x3d, + 0x11, 0xa2, 0x44, 0xaf, 0xbd, 0x0b, 0x1e, 0x17, 0x7c, 0xb3, 0x80, 0x0d, 0x50, 0x36, 0xe5, 0x17, + 0x2e, 0x45, 0xfa, 0x57, 0xc4, 0x69, 0x5b, 0xf2, 0xd3, 0x56, 0x28, 0x37, 0xbe, 0xf7, 0xec, 0x79, + 0x7d, 0xe1, 0xab, 0xe7, 0xf5, 0x85, 0xaf, 0x9f, 0xd7, 0x17, 0x7e, 0x31, 0xae, 0x2b, 0xcf, 0xc6, + 0x75, 0xe5, 0xab, 0x71, 0x5d, 0xf9, 0x7a, 0x5c, 0x57, 0xfe, 0x35, 0xae, 0x2b, 0xbf, 0xfe, 0x77, + 0x7d, 0xe1, 0x47, 0xdb, 0x85, 0xff, 0x23, 0xf8, 0x7f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0a, 0xc6, + 0x28, 0xb1, 0x3b, 0x18, 0x00, 0x00, } func (m *CSIDriver) Marshal() (dAtA []byte, err error) { @@ -1672,6 +1736,115 @@ func (m *VolumeAttachmentStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) return len(dAtA) - i, nil } +func (m *VolumeAttributesClass) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *VolumeAttributesClass) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *VolumeAttributesClass) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Parameters) > 0 { + keysForParameters := make([]string, 0, len(m.Parameters)) + for k := range m.Parameters { + keysForParameters = append(keysForParameters, string(k)) + } + github.com_gogo_protobuf_sortkeys.Strings(keysForParameters) + for iNdEx := len(keysForParameters) - 1; iNdEx >= 0; iNdEx-- { + v := m.Parameters[string(keysForParameters[iNdEx])] + baseI := i + i -= len(v) + copy(dAtA[i:], v) + i = encodeVarintGenerated(dAtA, i, uint64(len(v))) + i-- + dAtA[i] = 0x12 + i -= len(keysForParameters[iNdEx]) + copy(dAtA[i:], keysForParameters[iNdEx]) + i = encodeVarintGenerated(dAtA, i, uint64(len(keysForParameters[iNdEx]))) + i-- + dAtA[i] = 0xa + i = encodeVarintGenerated(dAtA, i, uint64(baseI-i)) + i-- + dAtA[i] = 0x1a + } + } + i -= len(m.DriverName) + copy(dAtA[i:], m.DriverName) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.DriverName))) + i-- + dAtA[i] = 0x12 + { + size, err := m.ObjectMeta.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + +func (m *VolumeAttributesClassList) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *VolumeAttributesClassList) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *VolumeAttributesClassList) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Items) > 0 { + for iNdEx := len(m.Items) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Items[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + } + { + size, err := m.ListMeta.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + func (m *VolumeError) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -2102,6 +2275,44 @@ func (m *VolumeAttachmentStatus) Size() (n int) { return n } +func (m *VolumeAttributesClass) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = m.ObjectMeta.Size() + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.DriverName) + n += 1 + l + sovGenerated(uint64(l)) + if len(m.Parameters) > 0 { + for k, v := range m.Parameters { + _ = k + _ = v + mapEntrySize := 1 + len(k) + sovGenerated(uint64(len(k))) + 1 + len(v) + sovGenerated(uint64(len(v))) + n += mapEntrySize + 1 + sovGenerated(uint64(mapEntrySize)) + } + } + return n +} + +func (m *VolumeAttributesClassList) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = m.ListMeta.Size() + n += 1 + l + sovGenerated(uint64(l)) + if len(m.Items) > 0 { + for _, e := range m.Items { + l = e.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + } + return n +} + func (m *VolumeError) Size() (n int) { if m == nil { return 0 @@ -2404,6 +2615,44 @@ func (this *VolumeAttachmentStatus) String() string { }, "") return s } +func (this *VolumeAttributesClass) String() string { + if this == nil { + return "nil" + } + keysForParameters := make([]string, 0, len(this.Parameters)) + for k := range this.Parameters { + keysForParameters = append(keysForParameters, k) + } + github.com_gogo_protobuf_sortkeys.Strings(keysForParameters) + mapStringForParameters := "map[string]string{" + for _, k := range keysForParameters { + mapStringForParameters += fmt.Sprintf("%v: %v,", k, this.Parameters[k]) + } + mapStringForParameters += "}" + s := strings.Join([]string{`&VolumeAttributesClass{`, + `ObjectMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ObjectMeta), "ObjectMeta", "v1.ObjectMeta", 1), `&`, ``, 1) + `,`, + `DriverName:` + fmt.Sprintf("%v", this.DriverName) + `,`, + `Parameters:` + mapStringForParameters + `,`, + `}`, + }, "") + return s +} +func (this *VolumeAttributesClassList) String() string { + if this == nil { + return "nil" + } + repeatedStringForItems := "[]VolumeAttributesClass{" + for _, f := range this.Items { + repeatedStringForItems += strings.Replace(strings.Replace(f.String(), "VolumeAttributesClass", "VolumeAttributesClass", 1), `&`, ``, 1) + "," + } + repeatedStringForItems += "}" + s := strings.Join([]string{`&VolumeAttributesClassList{`, + `ListMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ListMeta), "ListMeta", "v1.ListMeta", 1), `&`, ``, 1) + `,`, + `Items:` + repeatedStringForItems + `,`, + `}`, + }, "") + return s +} func (this *VolumeError) String() string { if this == nil { return "nil" @@ -5195,6 +5444,365 @@ func (m *VolumeAttachmentStatus) Unmarshal(dAtA []byte) error { } return nil } +func (m *VolumeAttributesClass) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: VolumeAttributesClass: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: VolumeAttributesClass: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ObjectMeta", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.ObjectMeta.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DriverName", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.DriverName = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Parameters", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Parameters == nil { + m.Parameters = make(map[string]string) + } + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthGenerated + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey < 0 { + return ErrInvalidLengthGenerated + } + if postStringIndexmapkey > l { + return io.ErrUnexpectedEOF + } + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthGenerated + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue < 0 { + return ErrInvalidLengthGenerated + } + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipGenerated(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + m.Parameters[mapkey] = mapvalue + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipGenerated(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *VolumeAttributesClassList) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: VolumeAttributesClassList: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: VolumeAttributesClassList: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ListMeta", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.ListMeta.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Items", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Items = append(m.Items, VolumeAttributesClass{}) + if err := m.Items[len(m.Items)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipGenerated(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *VolumeError) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/storage/v1/generated.proto b/storage/v1/generated.proto index bc150a729d..d6965bf7ab 100644 --- a/storage/v1/generated.proto +++ b/storage/v1/generated.proto @@ -563,6 +563,46 @@ message VolumeAttachmentStatus { optional VolumeError detachError = 4; } +// VolumeAttributesClass represents a specification of mutable volume attributes +// defined by the CSI driver. The class can be specified during dynamic provisioning +// of PersistentVolumeClaims, and changed in the PersistentVolumeClaim spec after provisioning. +message VolumeAttributesClass { + // Standard object's metadata. + // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + // +optional + optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1; + + // Name of the CSI driver + // This field is immutable. + optional string driverName = 2; + + // parameters hold volume attributes defined by the CSI driver. These values + // are opaque to the Kubernetes and are passed directly to the CSI driver. + // The underlying storage provider supports changing these attributes on an + // existing volume, however the parameters field itself is immutable. To + // invoke a volume update, a new VolumeAttributesClass should be created with + // new parameters, and the PersistentVolumeClaim should be updated to reference + // the new VolumeAttributesClass. + // + // This field is required and must contain at least one key/value pair. + // The keys cannot be empty, and the maximum number of parameters is 512, with + // a cumulative max size of 256K. If the CSI driver rejects invalid parameters, + // the target PersistentVolumeClaim will be set to an "Infeasible" state in the + // modifyVolumeStatus field. + map parameters = 3; +} + +// VolumeAttributesClassList is a collection of VolumeAttributesClass objects. +message VolumeAttributesClassList { + // Standard list metadata + // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + // +optional + optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1; + + // items is the list of VolumeAttributesClass objects. + repeated VolumeAttributesClass items = 2; +} + // VolumeError captures an error encountered during a volume operation. message VolumeError { // time represents the time the error was encountered. diff --git a/storage/v1/register.go b/storage/v1/register.go index 094fa28217..cb1731a0a4 100644 --- a/storage/v1/register.go +++ b/storage/v1/register.go @@ -58,6 +58,9 @@ func addKnownTypes(scheme *runtime.Scheme) error { &CSIStorageCapacity{}, &CSIStorageCapacityList{}, + + &VolumeAttributesClass{}, + &VolumeAttributesClassList{}, ) metav1.AddToGroupVersion(scheme, SchemeGroupVersion) diff --git a/storage/v1/types.go b/storage/v1/types.go index df771ce7fe..6d004e5ba9 100644 --- a/storage/v1/types.go +++ b/storage/v1/types.go @@ -717,3 +717,55 @@ type CSIStorageCapacityList struct { // items is the list of CSIStorageCapacity objects. Items []CSIStorageCapacity `json:"items" protobuf:"bytes,2,rep,name=items"` } + +// +genclient +// +genclient:nonNamespaced +// +k8s:prerelease-lifecycle-gen:introduced=1.34 +// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object + +// VolumeAttributesClass represents a specification of mutable volume attributes +// defined by the CSI driver. The class can be specified during dynamic provisioning +// of PersistentVolumeClaims, and changed in the PersistentVolumeClaim spec after provisioning. +type VolumeAttributesClass struct { + metav1.TypeMeta `json:",inline"` + + // Standard object's metadata. + // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + // +optional + metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"` + + // Name of the CSI driver + // This field is immutable. + DriverName string `json:"driverName" protobuf:"bytes,2,opt,name=driverName"` + + // parameters hold volume attributes defined by the CSI driver. These values + // are opaque to the Kubernetes and are passed directly to the CSI driver. + // The underlying storage provider supports changing these attributes on an + // existing volume, however the parameters field itself is immutable. To + // invoke a volume update, a new VolumeAttributesClass should be created with + // new parameters, and the PersistentVolumeClaim should be updated to reference + // the new VolumeAttributesClass. + // + // This field is required and must contain at least one key/value pair. + // The keys cannot be empty, and the maximum number of parameters is 512, with + // a cumulative max size of 256K. If the CSI driver rejects invalid parameters, + // the target PersistentVolumeClaim will be set to an "Infeasible" state in the + // modifyVolumeStatus field. + Parameters map[string]string `json:"parameters,omitempty" protobuf:"bytes,3,rep,name=parameters"` +} + +// +k8s:prerelease-lifecycle-gen:introduced=1.34 +// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object + +// VolumeAttributesClassList is a collection of VolumeAttributesClass objects. +type VolumeAttributesClassList struct { + metav1.TypeMeta `json:",inline"` + + // Standard list metadata + // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + // +optional + metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"` + + // items is the list of VolumeAttributesClass objects. + Items []VolumeAttributesClass `json:"items" protobuf:"bytes,2,rep,name=items"` +} diff --git a/storage/v1/types_swagger_doc_generated.go b/storage/v1/types_swagger_doc_generated.go index 1141a53e8c..2e5a844311 100644 --- a/storage/v1/types_swagger_doc_generated.go +++ b/storage/v1/types_swagger_doc_generated.go @@ -217,6 +217,27 @@ func (VolumeAttachmentStatus) SwaggerDoc() map[string]string { return map_VolumeAttachmentStatus } +var map_VolumeAttributesClass = map[string]string{ + "": "VolumeAttributesClass represents a specification of mutable volume attributes defined by the CSI driver. The class can be specified during dynamic provisioning of PersistentVolumeClaims, and changed in the PersistentVolumeClaim spec after provisioning.", + "metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "driverName": "Name of the CSI driver This field is immutable.", + "parameters": "parameters hold volume attributes defined by the CSI driver. These values are opaque to the Kubernetes and are passed directly to the CSI driver. The underlying storage provider supports changing these attributes on an existing volume, however the parameters field itself is immutable. To invoke a volume update, a new VolumeAttributesClass should be created with new parameters, and the PersistentVolumeClaim should be updated to reference the new VolumeAttributesClass.\n\nThis field is required and must contain at least one key/value pair. The keys cannot be empty, and the maximum number of parameters is 512, with a cumulative max size of 256K. If the CSI driver rejects invalid parameters, the target PersistentVolumeClaim will be set to an \"Infeasible\" state in the modifyVolumeStatus field.", +} + +func (VolumeAttributesClass) SwaggerDoc() map[string]string { + return map_VolumeAttributesClass +} + +var map_VolumeAttributesClassList = map[string]string{ + "": "VolumeAttributesClassList is a collection of VolumeAttributesClass objects.", + "metadata": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "items": "items is the list of VolumeAttributesClass objects.", +} + +func (VolumeAttributesClassList) SwaggerDoc() map[string]string { + return map_VolumeAttributesClassList +} + var map_VolumeError = map[string]string{ "": "VolumeError captures an error encountered during a volume operation.", "time": "time represents the time the error was encountered.", diff --git a/storage/v1/zz_generated.deepcopy.go b/storage/v1/zz_generated.deepcopy.go index e159fc93d9..3379fc4518 100644 --- a/storage/v1/zz_generated.deepcopy.go +++ b/storage/v1/zz_generated.deepcopy.go @@ -584,6 +584,72 @@ func (in *VolumeAttachmentStatus) DeepCopy() *VolumeAttachmentStatus { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *VolumeAttributesClass) DeepCopyInto(out *VolumeAttributesClass) { + *out = *in + out.TypeMeta = in.TypeMeta + in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) + if in.Parameters != nil { + in, out := &in.Parameters, &out.Parameters + *out = make(map[string]string, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolumeAttributesClass. +func (in *VolumeAttributesClass) DeepCopy() *VolumeAttributesClass { + if in == nil { + return nil + } + out := new(VolumeAttributesClass) + in.DeepCopyInto(out) + return out +} + +// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. +func (in *VolumeAttributesClass) DeepCopyObject() runtime.Object { + if c := in.DeepCopy(); c != nil { + return c + } + return nil +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *VolumeAttributesClassList) DeepCopyInto(out *VolumeAttributesClassList) { + *out = *in + out.TypeMeta = in.TypeMeta + in.ListMeta.DeepCopyInto(&out.ListMeta) + if in.Items != nil { + in, out := &in.Items, &out.Items + *out = make([]VolumeAttributesClass, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolumeAttributesClassList. +func (in *VolumeAttributesClassList) DeepCopy() *VolumeAttributesClassList { + if in == nil { + return nil + } + out := new(VolumeAttributesClassList) + in.DeepCopyInto(out) + return out +} + +// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. +func (in *VolumeAttributesClassList) DeepCopyObject() runtime.Object { + if c := in.DeepCopy(); c != nil { + return c + } + return nil +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *VolumeError) DeepCopyInto(out *VolumeError) { *out = *in diff --git a/storage/v1/zz_generated.prerelease-lifecycle.go b/storage/v1/zz_generated.prerelease-lifecycle.go index a44c1181ad..6ea5b8e81e 100644 --- a/storage/v1/zz_generated.prerelease-lifecycle.go +++ b/storage/v1/zz_generated.prerelease-lifecycle.go @@ -80,3 +80,15 @@ func (in *VolumeAttachment) APILifecycleIntroduced() (major, minor int) { func (in *VolumeAttachmentList) APILifecycleIntroduced() (major, minor int) { return 1, 13 } + +// APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison. +// It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go. +func (in *VolumeAttributesClass) APILifecycleIntroduced() (major, minor int) { + return 1, 34 +} + +// APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison. +// It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go. +func (in *VolumeAttributesClassList) APILifecycleIntroduced() (major, minor int) { + return 1, 34 +} diff --git a/storage/v1alpha1/types.go b/storage/v1alpha1/types.go index 15a43292fc..62dbdb5366 100644 --- a/storage/v1alpha1/types.go +++ b/storage/v1alpha1/types.go @@ -295,6 +295,8 @@ type VolumeAttributesClass struct { } // +k8s:prerelease-lifecycle-gen:introduced=1.29 +// +k8s:prerelease-lifecycle-gen:deprecated=1.32 +// +k8s:prerelease-lifecycle-gen:replacement=storage.k8s.io,v1,VolumeAttributesClass // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object // VolumeAttributesClassList is a collection of VolumeAttributesClass objects. diff --git a/storage/v1alpha1/zz_generated.prerelease-lifecycle.go b/storage/v1alpha1/zz_generated.prerelease-lifecycle.go index c169e782ce..3048374c93 100644 --- a/storage/v1alpha1/zz_generated.prerelease-lifecycle.go +++ b/storage/v1alpha1/zz_generated.prerelease-lifecycle.go @@ -151,6 +151,12 @@ func (in *VolumeAttributesClassList) APILifecycleDeprecated() (major, minor int) return 1, 32 } +// APILifecycleReplacement is an autogenerated function, returning the group, version, and kind that should be used instead of this deprecated type. +// It is controlled by "k8s:prerelease-lifecycle-gen:replacement=,," tags in types.go. +func (in *VolumeAttributesClassList) APILifecycleReplacement() schema.GroupVersionKind { + return schema.GroupVersionKind{Group: "storage.k8s.io", Version: "v1", Kind: "VolumeAttributesClass"} +} + // APILifecycleRemoved is an autogenerated function, returning the release in which the API is no longer served as int versions of major and minor for comparison. // It is controlled by "k8s:prerelease-lifecycle-gen:removed" tags in types.go or "k8s:prerelease-lifecycle-gen:deprecated" plus three minor. func (in *VolumeAttributesClassList) APILifecycleRemoved() (major, minor int) { diff --git a/storage/v1beta1/types.go b/storage/v1beta1/types.go index 6ddca8dfaf..86123cf1d9 100644 --- a/storage/v1beta1/types.go +++ b/storage/v1beta1/types.go @@ -739,6 +739,8 @@ type CSIStorageCapacityList struct { // +genclient // +genclient:nonNamespaced // +k8s:prerelease-lifecycle-gen:introduced=1.31 +// +k8s:prerelease-lifecycle-gen:deprecated=1.34 +// +k8s:prerelease-lifecycle-gen:replacement=storage.k8s.io,v1,VolumeAttributesClass // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object // VolumeAttributesClass represents a specification of mutable volume attributes diff --git a/storage/v1beta1/zz_generated.prerelease-lifecycle.go b/storage/v1beta1/zz_generated.prerelease-lifecycle.go index 4be57dc0d4..825ce4b556 100644 --- a/storage/v1beta1/zz_generated.prerelease-lifecycle.go +++ b/storage/v1beta1/zz_generated.prerelease-lifecycle.go @@ -277,6 +277,12 @@ func (in *VolumeAttributesClass) APILifecycleDeprecated() (major, minor int) { return 1, 34 } +// APILifecycleReplacement is an autogenerated function, returning the group, version, and kind that should be used instead of this deprecated type. +// It is controlled by "k8s:prerelease-lifecycle-gen:replacement=,," tags in types.go. +func (in *VolumeAttributesClass) APILifecycleReplacement() schema.GroupVersionKind { + return schema.GroupVersionKind{Group: "storage.k8s.io", Version: "v1", Kind: "VolumeAttributesClass"} +} + // APILifecycleRemoved is an autogenerated function, returning the release in which the API is no longer served as int versions of major and minor for comparison. // It is controlled by "k8s:prerelease-lifecycle-gen:removed" tags in types.go or "k8s:prerelease-lifecycle-gen:deprecated" plus three minor. func (in *VolumeAttributesClass) APILifecycleRemoved() (major, minor int) { diff --git a/testdata/HEAD/storage.k8s.io.v1.VolumeAttributesClass.json b/testdata/HEAD/storage.k8s.io.v1.VolumeAttributesClass.json new file mode 100644 index 0000000000..b2ac8688bd --- /dev/null +++ b/testdata/HEAD/storage.k8s.io.v1.VolumeAttributesClass.json @@ -0,0 +1,50 @@ +{ + "kind": "VolumeAttributesClass", + "apiVersion": "storage.k8s.io/v1", + "metadata": { + "name": "nameValue", + "generateName": "generateNameValue", + "namespace": "namespaceValue", + "selfLink": "selfLinkValue", + "uid": "uidValue", + "resourceVersion": "resourceVersionValue", + "generation": 7, + "creationTimestamp": "2008-01-01T01:01:01Z", + "deletionTimestamp": "2009-01-01T01:01:01Z", + "deletionGracePeriodSeconds": 10, + "labels": { + "labelsKey": "labelsValue" + }, + "annotations": { + "annotationsKey": "annotationsValue" + }, + "ownerReferences": [ + { + "apiVersion": "apiVersionValue", + "kind": "kindValue", + "name": "nameValue", + "uid": "uidValue", + "controller": true, + "blockOwnerDeletion": true + } + ], + "finalizers": [ + "finalizersValue" + ], + "managedFields": [ + { + "manager": "managerValue", + "operation": "operationValue", + "apiVersion": "apiVersionValue", + "time": "2004-01-01T01:01:01Z", + "fieldsType": "fieldsTypeValue", + "fieldsV1": {}, + "subresource": "subresourceValue" + } + ] + }, + "driverName": "driverNameValue", + "parameters": { + "parametersKey": "parametersValue" + } +} \ No newline at end of file diff --git a/testdata/HEAD/storage.k8s.io.v1.VolumeAttributesClass.pb b/testdata/HEAD/storage.k8s.io.v1.VolumeAttributesClass.pb new file mode 100644 index 0000000000000000000000000000000000000000..8e8ab76b9d9a6b5f0e7bbb1c76cea6b839537a66 GIT binary patch literal 461 zcmZ9IyH3L}6o%7_L~Cf1Mj)X~C}V~Km5?Gf$_5BApbl&&MXc>{1A^&+Sexe-+?NZtoNl4njxzM1Ei5+_z zwcU9*Ac(j8I`jLr<8^?9x&WM>TAge7gmZ;O0!{}Mm= zZxfmuzUIF*&*>R6WU0EH=4CRcby9tN>U*k4R!P`U-Bi*E%5|g%q?Lm-v1$XdxZhou J79(&%=MQrVp#uN_ literal 0 HcmV?d00001 diff --git a/testdata/HEAD/storage.k8s.io.v1.VolumeAttributesClass.yaml b/testdata/HEAD/storage.k8s.io.v1.VolumeAttributesClass.yaml new file mode 100644 index 0000000000..95e68ff586 --- /dev/null +++ b/testdata/HEAD/storage.k8s.io.v1.VolumeAttributesClass.yaml @@ -0,0 +1,37 @@ +apiVersion: storage.k8s.io/v1 +driverName: driverNameValue +kind: VolumeAttributesClass +metadata: + annotations: + annotationsKey: annotationsValue + creationTimestamp: "2008-01-01T01:01:01Z" + deletionGracePeriodSeconds: 10 + deletionTimestamp: "2009-01-01T01:01:01Z" + finalizers: + - finalizersValue + generateName: generateNameValue + generation: 7 + labels: + labelsKey: labelsValue + managedFields: + - apiVersion: apiVersionValue + fieldsType: fieldsTypeValue + fieldsV1: {} + manager: managerValue + operation: operationValue + subresource: subresourceValue + time: "2004-01-01T01:01:01Z" + name: nameValue + namespace: namespaceValue + ownerReferences: + - apiVersion: apiVersionValue + blockOwnerDeletion: true + controller: true + kind: kindValue + name: nameValue + uid: uidValue + resourceVersion: resourceVersionValue + selfLink: selfLinkValue + uid: uidValue +parameters: + parametersKey: parametersValue From 241f52308927b3b8644493a3fc11097ecfeeeaa3 Mon Sep 17 00:00:00 2001 From: Joe Betz Date: Mon, 19 May 2025 11:22:20 -0400 Subject: [PATCH 034/100] Tag types with +k8s:isSubresource and +k8s:supportsSubresource for scale Kubernetes-commit: 6284a0f50bb12df8fc41344fa05ed75f5327085f --- apps/v1beta1/types.go | 1 + apps/v1beta2/types.go | 1 + autoscaling/v1/types.go | 1 + core/v1/types.go | 1 + extensions/v1beta1/types.go | 1 + 5 files changed, 5 insertions(+) diff --git a/apps/v1beta1/types.go b/apps/v1beta1/types.go index 5a863da271..cd140be12f 100644 --- a/apps/v1beta1/types.go +++ b/apps/v1beta1/types.go @@ -63,6 +63,7 @@ type ScaleStatus struct { // +k8s:prerelease-lifecycle-gen:deprecated=1.8 // +k8s:prerelease-lifecycle-gen:removed=1.16 // +k8s:prerelease-lifecycle-gen:replacement=autoscaling,v1,Scale +// +k8s:isSubresource=/scale // Scale represents a scaling request for a resource. type Scale struct { diff --git a/apps/v1beta2/types.go b/apps/v1beta2/types.go index 7f0438c5ed..e9dc85df05 100644 --- a/apps/v1beta2/types.go +++ b/apps/v1beta2/types.go @@ -66,6 +66,7 @@ type ScaleStatus struct { // +k8s:prerelease-lifecycle-gen:deprecated=1.9 // +k8s:prerelease-lifecycle-gen:removed=1.16 // +k8s:prerelease-lifecycle-gen:replacement=autoscaling,v1,Scale +// +k8s:isSubresource=/scale // Scale represents a scaling request for a resource. type Scale struct { diff --git a/autoscaling/v1/types.go b/autoscaling/v1/types.go index b8941145e7..e1e8809fe9 100644 --- a/autoscaling/v1/types.go +++ b/autoscaling/v1/types.go @@ -117,6 +117,7 @@ type HorizontalPodAutoscalerList struct { // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object // +k8s:prerelease-lifecycle-gen:introduced=1.2 +// +k8s:isSubresource=/scale // Scale represents a scaling request for a resource. type Scale struct { diff --git a/core/v1/types.go b/core/v1/types.go index ca0fa99a13..498afe1627 100644 --- a/core/v1/types.go +++ b/core/v1/types.go @@ -5309,6 +5309,7 @@ type ReplicationControllerCondition struct { // +genclient:method=UpdateScale,verb=update,subresource=scale,input=k8s.io/api/autoscaling/v1.Scale,result=k8s.io/api/autoscaling/v1.Scale // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object // +k8s:prerelease-lifecycle-gen:introduced=1.0 +// +k8s:supportsSubresource=/scale // ReplicationController represents the configuration of a replication controller. type ReplicationController struct { diff --git a/extensions/v1beta1/types.go b/extensions/v1beta1/types.go index 6b86b65756..c7b50e0590 100644 --- a/extensions/v1beta1/types.go +++ b/extensions/v1beta1/types.go @@ -57,6 +57,7 @@ type ScaleStatus struct { // +k8s:prerelease-lifecycle-gen:introduced=1.1 // +k8s:prerelease-lifecycle-gen:deprecated=1.2 // +k8s:prerelease-lifecycle-gen:removed=1.16 +// +k8s:isSubresource=/scale // represents a scaling request for a resource. type Scale struct { From 90efb83ce88cec3f71c239512b2d8b9663345285 Mon Sep 17 00:00:00 2001 From: Joe Betz Date: Fri, 23 May 2025 19:31:03 -0400 Subject: [PATCH 035/100] generate code Kubernetes-commit: 1d17ca9b7e9055a006c5b3b8bd2aadf3256a9f16 --- apps/v1beta1/generated.proto | 3 +++ apps/v1beta2/generated.proto | 3 +++ autoscaling/v1/generated.proto | 3 +++ extensions/v1beta1/generated.proto | 3 +++ extensions/v1beta1/zz_generated.validations.go | 7 ++++++- 5 files changed, 18 insertions(+), 1 deletion(-) diff --git a/apps/v1beta1/generated.proto b/apps/v1beta1/generated.proto index 0601efc3c4..b61dc490db 100644 --- a/apps/v1beta1/generated.proto +++ b/apps/v1beta1/generated.proto @@ -316,6 +316,9 @@ message Scale { message ScaleSpec { // replicas is the number of observed instances of the scaled object. // +optional + // +k8s:optional + // +default=0 + // +k8s:minimum=0 optional int32 replicas = 1; } diff --git a/apps/v1beta2/generated.proto b/apps/v1beta2/generated.proto index 29980012ea..37c6d5ae1b 100644 --- a/apps/v1beta2/generated.proto +++ b/apps/v1beta2/generated.proto @@ -614,6 +614,9 @@ message Scale { message ScaleSpec { // desired number of instances for the scaled object. // +optional + // +k8s:optional + // +default=0 + // +k8s:minimum=0 optional int32 replicas = 1; } diff --git a/autoscaling/v1/generated.proto b/autoscaling/v1/generated.proto index 68c35b6b22..a17d7989db 100644 --- a/autoscaling/v1/generated.proto +++ b/autoscaling/v1/generated.proto @@ -472,6 +472,9 @@ message Scale { message ScaleSpec { // replicas is the desired number of instances for the scaled object. // +optional + // +k8s:optional + // +default=0 + // +k8s:minimum=0 optional int32 replicas = 1; } diff --git a/extensions/v1beta1/generated.proto b/extensions/v1beta1/generated.proto index 0aa5a2ab4c..fed0b4835d 100644 --- a/extensions/v1beta1/generated.proto +++ b/extensions/v1beta1/generated.proto @@ -1039,6 +1039,9 @@ message Scale { message ScaleSpec { // desired number of instances for the scaled object. // +optional + // +k8s:optional + // +default=0 + // +k8s:minimum=0 optional int32 replicas = 1; } diff --git a/extensions/v1beta1/zz_generated.validations.go b/extensions/v1beta1/zz_generated.validations.go index 32314c92a2..16bd37c4e0 100644 --- a/extensions/v1beta1/zz_generated.validations.go +++ b/extensions/v1beta1/zz_generated.validations.go @@ -23,6 +23,7 @@ package v1beta1 import ( context "context" + fmt "fmt" operation "k8s.io/apimachinery/pkg/api/operation" safe "k8s.io/apimachinery/pkg/api/safe" @@ -37,7 +38,11 @@ func init() { localSchemeBuilder.Register(RegisterValidations) } // Public to allow building arbitrary schemes. func RegisterValidations(scheme *runtime.Scheme) error { scheme.AddValidationFunc((*Scale)(nil), func(ctx context.Context, op operation.Operation, obj, oldObj interface{}) field.ErrorList { - return Validate_Scale(ctx, op, nil /* fldPath */, obj.(*Scale), safe.Cast[*Scale](oldObj)) + switch op.Request.SubresourcePath() { + case "/scale": + return Validate_Scale(ctx, op, nil /* fldPath */, obj.(*Scale), safe.Cast[*Scale](oldObj)) + } + return field.ErrorList{field.InternalError(nil, fmt.Errorf("no validation found for %T, subresource: %v", obj, op.Request.SubresourcePath()))} }) return nil } From 16b0005a085f1a55f2672247152af0f84b4e414c Mon Sep 17 00:00:00 2001 From: Kubernetes Publisher Date: Tue, 27 May 2025 09:14:16 -0700 Subject: [PATCH 036/100] Merge pull request #131664 from jpbetz/subresources-enable-replicas Migrate to declarative validation: ReplicationController/scale spec.replicas field Kubernetes-commit: 144926558984ae41a7328d53bd9fc8602328f10e --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 80bf118362..934a9ac932 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ godebug default=go1.24 require ( github.com/gogo/protobuf v1.3.2 - k8s.io/apimachinery v0.0.0-20250516032956-da3bba90543c + k8s.io/apimachinery v0.0.0-20250527161416-09ff13941cda ) require ( diff --git a/go.sum b/go.sum index 5ee44c6f83..47484b2c92 100644 --- a/go.sum +++ b/go.sum @@ -80,8 +80,8 @@ gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc= gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -k8s.io/apimachinery v0.0.0-20250516032956-da3bba90543c h1:32RPTmIMyn/cz7/8xxQ4BhJTkvQE1nnzR0YR4ODcVRs= -k8s.io/apimachinery v0.0.0-20250516032956-da3bba90543c/go.mod h1:pJRnLHx/rdGhRBHKhKq/NczIcMw4cPylIe+hff1zJaU= +k8s.io/apimachinery v0.0.0-20250527161416-09ff13941cda h1:3GHsiuK4HX0R/gZ53Q/c0Pa9pNlOL1IiY6esUBs1Ps4= +k8s.io/apimachinery v0.0.0-20250527161416-09ff13941cda/go.mod h1:pJRnLHx/rdGhRBHKhKq/NczIcMw4cPylIe+hff1zJaU= k8s.io/klog/v2 v2.130.1 h1:n9Xl7H1Xvksem4KFG4PYbdQCQxqc/tTUyrgXaOhHSzk= k8s.io/klog/v2 v2.130.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE= k8s.io/utils v0.0.0-20250502105355-0f33e8f1c979 h1:jgJW5IePPXLGB8e/1wvd0Ich9QE97RvvF3a8J3fP/Lg= From 327745459a27d96ef1b15cabee0ab80d21e9cce3 Mon Sep 17 00:00:00 2001 From: Rita Zhang Date: Tue, 27 May 2025 21:19:25 -0700 Subject: [PATCH 037/100] DRAAdminAccess: update label key Signed-off-by: Rita Zhang Kubernetes-commit: 5058e385b094e52e2aa4bd4265556a593075a87f --- resource/v1alpha3/types.go | 2 +- resource/v1beta1/types.go | 2 +- resource/v1beta2/types.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/resource/v1alpha3/types.go b/resource/v1alpha3/types.go index 29a4b0343f..9f7662c08f 100644 --- a/resource/v1alpha3/types.go +++ b/resource/v1alpha3/types.go @@ -594,7 +594,7 @@ const ( // of adminAccess: true in any namespaced resource.k8s.io API types. Currently, // this permission applies to ResourceClaim and ResourceClaimTemplate objects. const ( - DRAAdminNamespaceLabelKey = "resource.k8s.io/admin-access" + DRAAdminNamespaceLabelKey = "resource.kubernetes.io/admin-access" ) // DeviceRequest is a request for devices required for a claim. diff --git a/resource/v1beta1/types.go b/resource/v1beta1/types.go index 3c64b426d9..892ed73510 100644 --- a/resource/v1beta1/types.go +++ b/resource/v1beta1/types.go @@ -600,7 +600,7 @@ const ( // of adminAccess: true in any namespaced resource.k8s.io API types. Currently, // this permission applies to ResourceClaim and ResourceClaimTemplate objects. const ( - DRAAdminNamespaceLabelKey = "resource.k8s.io/admin-access" + DRAAdminNamespaceLabelKey = "resource.kubernetes.io/admin-access" ) // DeviceRequest is a request for devices required for a claim. diff --git a/resource/v1beta2/types.go b/resource/v1beta2/types.go index 0d8d42a085..e45cd3434c 100644 --- a/resource/v1beta2/types.go +++ b/resource/v1beta2/types.go @@ -596,7 +596,7 @@ const ( // of adminAccess: true in any namespaced resource.k8s.io API types. Currently, // this permission applies to ResourceClaim and ResourceClaimTemplate objects. const ( - DRAAdminNamespaceLabelKey = "resource.k8s.io/admin-access" + DRAAdminNamespaceLabelKey = "resource.kubernetes.io/admin-access" ) // DeviceRequest is a request for devices required for a claim. From 8075dbc3fb0d26801ad6072de3f6272f92922988 Mon Sep 17 00:00:00 2001 From: Patrick Ohly Date: Wed, 28 May 2025 12:03:25 +0200 Subject: [PATCH 038/100] DRA API: remove obsolete types from v1alpha3 The v1alpha3 version is still needed for DeviceTaintRule, but the rest of the types and most structs became obsolete in v1.32 when we introduced v1beta1 and bumped the storage version to v1beta1. Removing them now simplifies adding new features because new fields don't need to be added to these obsolete types. This could have been done already in 1.33, but wasn't to minimize disrupting on-going work. Kubernetes-commit: 10de6780cf6b24d5115e508606334b81d6634ba6 --- resource/v1alpha3/devicetaint.go | 35 + resource/v1alpha3/generated.pb.go | 11648 ++-------------- resource/v1alpha3/generated.proto | 1160 +- resource/v1alpha3/register.go | 8 - resource/v1alpha3/types.go | 1534 +- .../v1alpha3/types_swagger_doc_generated.go | 395 - resource/v1alpha3/zz_generated.deepcopy.go | 1099 +- .../zz_generated.prerelease-lifecycle.go | 196 - .../resource.k8s.io.v1alpha3.DeviceClass.json | 72 - .../resource.k8s.io.v1alpha3.DeviceClass.pb | Bin 552 -> 0 bytes .../resource.k8s.io.v1alpha3.DeviceClass.yaml | 48 - ...esource.k8s.io.v1alpha3.ResourceClaim.json | 238 - .../resource.k8s.io.v1alpha3.ResourceClaim.pb | Bin 1526 -> 0 bytes ...esource.k8s.io.v1alpha3.ResourceClaim.yaml | 149 - ...k8s.io.v1alpha3.ResourceClaimTemplate.json | 171 - ...e.k8s.io.v1alpha3.ResourceClaimTemplate.pb | Bin 1226 -> 0 bytes ...k8s.io.v1alpha3.ResourceClaimTemplate.yaml | 114 - ...esource.k8s.io.v1alpha3.ResourceSlice.json | 153 - .../resource.k8s.io.v1alpha3.ResourceSlice.pb | Bin 856 -> 0 bytes ...esource.k8s.io.v1alpha3.ResourceSlice.yaml | 95 - 20 files changed, 958 insertions(+), 16157 deletions(-) create mode 100644 resource/v1alpha3/devicetaint.go delete mode 100644 testdata/HEAD/resource.k8s.io.v1alpha3.DeviceClass.json delete mode 100644 testdata/HEAD/resource.k8s.io.v1alpha3.DeviceClass.pb delete mode 100644 testdata/HEAD/resource.k8s.io.v1alpha3.DeviceClass.yaml delete mode 100644 testdata/HEAD/resource.k8s.io.v1alpha3.ResourceClaim.json delete mode 100644 testdata/HEAD/resource.k8s.io.v1alpha3.ResourceClaim.pb delete mode 100644 testdata/HEAD/resource.k8s.io.v1alpha3.ResourceClaim.yaml delete mode 100644 testdata/HEAD/resource.k8s.io.v1alpha3.ResourceClaimTemplate.json delete mode 100644 testdata/HEAD/resource.k8s.io.v1alpha3.ResourceClaimTemplate.pb delete mode 100644 testdata/HEAD/resource.k8s.io.v1alpha3.ResourceClaimTemplate.yaml delete mode 100644 testdata/HEAD/resource.k8s.io.v1alpha3.ResourceSlice.json delete mode 100644 testdata/HEAD/resource.k8s.io.v1alpha3.ResourceSlice.pb delete mode 100644 testdata/HEAD/resource.k8s.io.v1alpha3.ResourceSlice.yaml diff --git a/resource/v1alpha3/devicetaint.go b/resource/v1alpha3/devicetaint.go new file mode 100644 index 0000000000..dd3c65d26c --- /dev/null +++ b/resource/v1alpha3/devicetaint.go @@ -0,0 +1,35 @@ +/* +Copyright 2025 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package v1alpha3 + +import "fmt" + +var _ fmt.Stringer = DeviceTaint{} + +// String converts to a string in the format '=:', '=:', ':', or ''. +func (t DeviceTaint) String() string { + if len(t.Effect) == 0 { + if len(t.Value) == 0 { + return fmt.Sprintf("%v", t.Key) + } + return fmt.Sprintf("%v=%v:", t.Key, t.Value) + } + if len(t.Value) == 0 { + return fmt.Sprintf("%v:%v", t.Key, t.Effect) + } + return fmt.Sprintf("%v=%v:%v", t.Key, t.Value, t.Effect) +} diff --git a/resource/v1alpha3/generated.pb.go b/resource/v1alpha3/generated.pb.go index 716492fea4..dc37717ef7 100644 --- a/resource/v1alpha3/generated.pb.go +++ b/resource/v1alpha3/generated.pb.go @@ -25,18 +25,12 @@ import ( io "io" proto "github.com/gogo/protobuf/proto" - github.com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" - v11 "k8s.io/api/core/v1" - resource "k8s.io/apimachinery/pkg/api/resource" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" math "math" math_bits "math/bits" reflect "reflect" strings "strings" - - k8s_io_apimachinery_pkg_types "k8s.io/apimachinery/pkg/types" ) // Reference imports to suppress errors if they are not otherwise used. @@ -50,15 +44,15 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package -func (m *AllocatedDeviceStatus) Reset() { *m = AllocatedDeviceStatus{} } -func (*AllocatedDeviceStatus) ProtoMessage() {} -func (*AllocatedDeviceStatus) Descriptor() ([]byte, []int) { +func (m *CELDeviceSelector) Reset() { *m = CELDeviceSelector{} } +func (*CELDeviceSelector) ProtoMessage() {} +func (*CELDeviceSelector) Descriptor() ([]byte, []int) { return fileDescriptor_66649ee9bbcd89d2, []int{0} } -func (m *AllocatedDeviceStatus) XXX_Unmarshal(b []byte) error { +func (m *CELDeviceSelector) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *AllocatedDeviceStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *CELDeviceSelector) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) if err != nil { @@ -66,27 +60,27 @@ func (m *AllocatedDeviceStatus) XXX_Marshal(b []byte, deterministic bool) ([]byt } return b[:n], nil } -func (m *AllocatedDeviceStatus) XXX_Merge(src proto.Message) { - xxx_messageInfo_AllocatedDeviceStatus.Merge(m, src) +func (m *CELDeviceSelector) XXX_Merge(src proto.Message) { + xxx_messageInfo_CELDeviceSelector.Merge(m, src) } -func (m *AllocatedDeviceStatus) XXX_Size() int { +func (m *CELDeviceSelector) XXX_Size() int { return m.Size() } -func (m *AllocatedDeviceStatus) XXX_DiscardUnknown() { - xxx_messageInfo_AllocatedDeviceStatus.DiscardUnknown(m) +func (m *CELDeviceSelector) XXX_DiscardUnknown() { + xxx_messageInfo_CELDeviceSelector.DiscardUnknown(m) } -var xxx_messageInfo_AllocatedDeviceStatus proto.InternalMessageInfo +var xxx_messageInfo_CELDeviceSelector proto.InternalMessageInfo -func (m *AllocationResult) Reset() { *m = AllocationResult{} } -func (*AllocationResult) ProtoMessage() {} -func (*AllocationResult) Descriptor() ([]byte, []int) { +func (m *DeviceSelector) Reset() { *m = DeviceSelector{} } +func (*DeviceSelector) ProtoMessage() {} +func (*DeviceSelector) Descriptor() ([]byte, []int) { return fileDescriptor_66649ee9bbcd89d2, []int{1} } -func (m *AllocationResult) XXX_Unmarshal(b []byte) error { +func (m *DeviceSelector) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *AllocationResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *DeviceSelector) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) if err != nil { @@ -94,27 +88,27 @@ func (m *AllocationResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, er } return b[:n], nil } -func (m *AllocationResult) XXX_Merge(src proto.Message) { - xxx_messageInfo_AllocationResult.Merge(m, src) +func (m *DeviceSelector) XXX_Merge(src proto.Message) { + xxx_messageInfo_DeviceSelector.Merge(m, src) } -func (m *AllocationResult) XXX_Size() int { +func (m *DeviceSelector) XXX_Size() int { return m.Size() } -func (m *AllocationResult) XXX_DiscardUnknown() { - xxx_messageInfo_AllocationResult.DiscardUnknown(m) +func (m *DeviceSelector) XXX_DiscardUnknown() { + xxx_messageInfo_DeviceSelector.DiscardUnknown(m) } -var xxx_messageInfo_AllocationResult proto.InternalMessageInfo +var xxx_messageInfo_DeviceSelector proto.InternalMessageInfo -func (m *BasicDevice) Reset() { *m = BasicDevice{} } -func (*BasicDevice) ProtoMessage() {} -func (*BasicDevice) Descriptor() ([]byte, []int) { +func (m *DeviceTaint) Reset() { *m = DeviceTaint{} } +func (*DeviceTaint) ProtoMessage() {} +func (*DeviceTaint) Descriptor() ([]byte, []int) { return fileDescriptor_66649ee9bbcd89d2, []int{2} } -func (m *BasicDevice) XXX_Unmarshal(b []byte) error { +func (m *DeviceTaint) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *BasicDevice) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *DeviceTaint) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) if err != nil { @@ -122,27 +116,27 @@ func (m *BasicDevice) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) } return b[:n], nil } -func (m *BasicDevice) XXX_Merge(src proto.Message) { - xxx_messageInfo_BasicDevice.Merge(m, src) +func (m *DeviceTaint) XXX_Merge(src proto.Message) { + xxx_messageInfo_DeviceTaint.Merge(m, src) } -func (m *BasicDevice) XXX_Size() int { +func (m *DeviceTaint) XXX_Size() int { return m.Size() } -func (m *BasicDevice) XXX_DiscardUnknown() { - xxx_messageInfo_BasicDevice.DiscardUnknown(m) +func (m *DeviceTaint) XXX_DiscardUnknown() { + xxx_messageInfo_DeviceTaint.DiscardUnknown(m) } -var xxx_messageInfo_BasicDevice proto.InternalMessageInfo +var xxx_messageInfo_DeviceTaint proto.InternalMessageInfo -func (m *CELDeviceSelector) Reset() { *m = CELDeviceSelector{} } -func (*CELDeviceSelector) ProtoMessage() {} -func (*CELDeviceSelector) Descriptor() ([]byte, []int) { +func (m *DeviceTaintRule) Reset() { *m = DeviceTaintRule{} } +func (*DeviceTaintRule) ProtoMessage() {} +func (*DeviceTaintRule) Descriptor() ([]byte, []int) { return fileDescriptor_66649ee9bbcd89d2, []int{3} } -func (m *CELDeviceSelector) XXX_Unmarshal(b []byte) error { +func (m *DeviceTaintRule) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *CELDeviceSelector) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *DeviceTaintRule) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) if err != nil { @@ -150,27 +144,27 @@ func (m *CELDeviceSelector) XXX_Marshal(b []byte, deterministic bool) ([]byte, e } return b[:n], nil } -func (m *CELDeviceSelector) XXX_Merge(src proto.Message) { - xxx_messageInfo_CELDeviceSelector.Merge(m, src) +func (m *DeviceTaintRule) XXX_Merge(src proto.Message) { + xxx_messageInfo_DeviceTaintRule.Merge(m, src) } -func (m *CELDeviceSelector) XXX_Size() int { +func (m *DeviceTaintRule) XXX_Size() int { return m.Size() } -func (m *CELDeviceSelector) XXX_DiscardUnknown() { - xxx_messageInfo_CELDeviceSelector.DiscardUnknown(m) +func (m *DeviceTaintRule) XXX_DiscardUnknown() { + xxx_messageInfo_DeviceTaintRule.DiscardUnknown(m) } -var xxx_messageInfo_CELDeviceSelector proto.InternalMessageInfo +var xxx_messageInfo_DeviceTaintRule proto.InternalMessageInfo -func (m *Counter) Reset() { *m = Counter{} } -func (*Counter) ProtoMessage() {} -func (*Counter) Descriptor() ([]byte, []int) { +func (m *DeviceTaintRuleList) Reset() { *m = DeviceTaintRuleList{} } +func (*DeviceTaintRuleList) ProtoMessage() {} +func (*DeviceTaintRuleList) Descriptor() ([]byte, []int) { return fileDescriptor_66649ee9bbcd89d2, []int{4} } -func (m *Counter) XXX_Unmarshal(b []byte) error { +func (m *DeviceTaintRuleList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *Counter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *DeviceTaintRuleList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) if err != nil { @@ -178,27 +172,27 @@ func (m *Counter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { } return b[:n], nil } -func (m *Counter) XXX_Merge(src proto.Message) { - xxx_messageInfo_Counter.Merge(m, src) +func (m *DeviceTaintRuleList) XXX_Merge(src proto.Message) { + xxx_messageInfo_DeviceTaintRuleList.Merge(m, src) } -func (m *Counter) XXX_Size() int { +func (m *DeviceTaintRuleList) XXX_Size() int { return m.Size() } -func (m *Counter) XXX_DiscardUnknown() { - xxx_messageInfo_Counter.DiscardUnknown(m) +func (m *DeviceTaintRuleList) XXX_DiscardUnknown() { + xxx_messageInfo_DeviceTaintRuleList.DiscardUnknown(m) } -var xxx_messageInfo_Counter proto.InternalMessageInfo +var xxx_messageInfo_DeviceTaintRuleList proto.InternalMessageInfo -func (m *CounterSet) Reset() { *m = CounterSet{} } -func (*CounterSet) ProtoMessage() {} -func (*CounterSet) Descriptor() ([]byte, []int) { +func (m *DeviceTaintRuleSpec) Reset() { *m = DeviceTaintRuleSpec{} } +func (*DeviceTaintRuleSpec) ProtoMessage() {} +func (*DeviceTaintRuleSpec) Descriptor() ([]byte, []int) { return fileDescriptor_66649ee9bbcd89d2, []int{5} } -func (m *CounterSet) XXX_Unmarshal(b []byte) error { +func (m *DeviceTaintRuleSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *CounterSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *DeviceTaintRuleSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) if err != nil { @@ -206,27 +200,27 @@ func (m *CounterSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { } return b[:n], nil } -func (m *CounterSet) XXX_Merge(src proto.Message) { - xxx_messageInfo_CounterSet.Merge(m, src) +func (m *DeviceTaintRuleSpec) XXX_Merge(src proto.Message) { + xxx_messageInfo_DeviceTaintRuleSpec.Merge(m, src) } -func (m *CounterSet) XXX_Size() int { +func (m *DeviceTaintRuleSpec) XXX_Size() int { return m.Size() } -func (m *CounterSet) XXX_DiscardUnknown() { - xxx_messageInfo_CounterSet.DiscardUnknown(m) +func (m *DeviceTaintRuleSpec) XXX_DiscardUnknown() { + xxx_messageInfo_DeviceTaintRuleSpec.DiscardUnknown(m) } -var xxx_messageInfo_CounterSet proto.InternalMessageInfo +var xxx_messageInfo_DeviceTaintRuleSpec proto.InternalMessageInfo -func (m *Device) Reset() { *m = Device{} } -func (*Device) ProtoMessage() {} -func (*Device) Descriptor() ([]byte, []int) { +func (m *DeviceTaintSelector) Reset() { *m = DeviceTaintSelector{} } +func (*DeviceTaintSelector) ProtoMessage() {} +func (*DeviceTaintSelector) Descriptor() ([]byte, []int) { return fileDescriptor_66649ee9bbcd89d2, []int{6} } -func (m *Device) XXX_Unmarshal(b []byte) error { +func (m *DeviceTaintSelector) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *Device) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *DeviceTaintSelector) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) if err != nil { @@ -234,10718 +228,616 @@ func (m *Device) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { } return b[:n], nil } -func (m *Device) XXX_Merge(src proto.Message) { - xxx_messageInfo_Device.Merge(m, src) +func (m *DeviceTaintSelector) XXX_Merge(src proto.Message) { + xxx_messageInfo_DeviceTaintSelector.Merge(m, src) } -func (m *Device) XXX_Size() int { +func (m *DeviceTaintSelector) XXX_Size() int { return m.Size() } -func (m *Device) XXX_DiscardUnknown() { - xxx_messageInfo_Device.DiscardUnknown(m) +func (m *DeviceTaintSelector) XXX_DiscardUnknown() { + xxx_messageInfo_DeviceTaintSelector.DiscardUnknown(m) } -var xxx_messageInfo_Device proto.InternalMessageInfo +var xxx_messageInfo_DeviceTaintSelector proto.InternalMessageInfo -func (m *DeviceAllocationConfiguration) Reset() { *m = DeviceAllocationConfiguration{} } -func (*DeviceAllocationConfiguration) ProtoMessage() {} -func (*DeviceAllocationConfiguration) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{7} -} -func (m *DeviceAllocationConfiguration) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *DeviceAllocationConfiguration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil -} -func (m *DeviceAllocationConfiguration) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceAllocationConfiguration.Merge(m, src) -} -func (m *DeviceAllocationConfiguration) XXX_Size() int { - return m.Size() -} -func (m *DeviceAllocationConfiguration) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceAllocationConfiguration.DiscardUnknown(m) +func init() { + proto.RegisterType((*CELDeviceSelector)(nil), "k8s.io.api.resource.v1alpha3.CELDeviceSelector") + proto.RegisterType((*DeviceSelector)(nil), "k8s.io.api.resource.v1alpha3.DeviceSelector") + proto.RegisterType((*DeviceTaint)(nil), "k8s.io.api.resource.v1alpha3.DeviceTaint") + proto.RegisterType((*DeviceTaintRule)(nil), "k8s.io.api.resource.v1alpha3.DeviceTaintRule") + proto.RegisterType((*DeviceTaintRuleList)(nil), "k8s.io.api.resource.v1alpha3.DeviceTaintRuleList") + proto.RegisterType((*DeviceTaintRuleSpec)(nil), "k8s.io.api.resource.v1alpha3.DeviceTaintRuleSpec") + proto.RegisterType((*DeviceTaintSelector)(nil), "k8s.io.api.resource.v1alpha3.DeviceTaintSelector") } -var xxx_messageInfo_DeviceAllocationConfiguration proto.InternalMessageInfo - -func (m *DeviceAllocationResult) Reset() { *m = DeviceAllocationResult{} } -func (*DeviceAllocationResult) ProtoMessage() {} -func (*DeviceAllocationResult) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{8} +func init() { + proto.RegisterFile("k8s.io/api/resource/v1alpha3/generated.proto", fileDescriptor_66649ee9bbcd89d2) } -func (m *DeviceAllocationResult) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) + +var fileDescriptor_66649ee9bbcd89d2 = []byte{ + // 716 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x55, 0xbf, 0x6f, 0xd3, 0x40, + 0x14, 0x8e, 0x9b, 0xa4, 0x24, 0x17, 0xda, 0xd2, 0xeb, 0x12, 0x55, 0xc5, 0xae, 0xdc, 0xa5, 0xa0, + 0xd6, 0x26, 0x01, 0x21, 0x04, 0x62, 0x20, 0x6d, 0x84, 0x80, 0x52, 0xd0, 0xb5, 0x02, 0x09, 0x15, + 0x89, 0xab, 0xf3, 0x9a, 0x98, 0xd8, 0xb1, 0xe5, 0x73, 0x22, 0xba, 0xf5, 0x4f, 0x60, 0x84, 0x8d, + 0xff, 0x86, 0x8c, 0x1d, 0x18, 0x3a, 0xa0, 0x88, 0x9a, 0xbf, 0x80, 0x95, 0x09, 0xdd, 0xf9, 0x12, + 0xa7, 0x8e, 0x28, 0x61, 0x8b, 0xbf, 0xfb, 0xde, 0xf7, 0xde, 0xf7, 0x7e, 0x28, 0x68, 0xa3, 0x7d, + 0x8f, 0x19, 0xb6, 0x67, 0x52, 0xdf, 0x36, 0x03, 0x60, 0x5e, 0x37, 0xb0, 0xc0, 0xec, 0x55, 0xa8, + 0xe3, 0xb7, 0xe8, 0x6d, 0xb3, 0x09, 0x1d, 0x08, 0x68, 0x08, 0x0d, 0xc3, 0x0f, 0xbc, 0xd0, 0xc3, + 0x2b, 0x31, 0xdb, 0xa0, 0xbe, 0x6d, 0x0c, 0xd9, 0xc6, 0x90, 0xbd, 0xbc, 0xd9, 0xb4, 0xc3, 0x56, + 0xf7, 0xd0, 0xb0, 0x3c, 0xd7, 0x6c, 0x7a, 0x4d, 0xcf, 0x14, 0x41, 0x87, 0xdd, 0x23, 0xf1, 0x25, + 0x3e, 0xc4, 0xaf, 0x58, 0x6c, 0xf9, 0x4e, 0x92, 0xda, 0xa5, 0x56, 0xcb, 0xee, 0x40, 0x70, 0x6c, + 0xfa, 0xed, 0x26, 0x07, 0x98, 0xe9, 0x42, 0x48, 0xcd, 0x5e, 0x25, 0x5d, 0xc2, 0xb2, 0xf9, 0xb7, + 0xa8, 0xa0, 0xdb, 0x09, 0x6d, 0x17, 0x26, 0x02, 0xee, 0xfe, 0x2b, 0x80, 0x59, 0x2d, 0x70, 0x69, + 0x3a, 0x4e, 0x7f, 0x8c, 0x16, 0xb7, 0xea, 0x3b, 0xdb, 0xd0, 0xb3, 0x2d, 0xd8, 0x03, 0x07, 0xac, + 0xd0, 0x0b, 0x70, 0x15, 0x21, 0xf8, 0xe0, 0x07, 0xc0, 0x98, 0xed, 0x75, 0xca, 0xca, 0xaa, 0xb2, + 0x5e, 0xac, 0xe1, 0xfe, 0x40, 0xcb, 0x44, 0x03, 0x0d, 0xd5, 0x47, 0x2f, 0x64, 0x8c, 0xa5, 0x1f, + 0xa0, 0xf9, 0x94, 0xca, 0x53, 0x94, 0xb5, 0xc0, 0x11, 0xe1, 0xa5, 0xaa, 0x69, 0x5c, 0xd6, 0x54, + 0x63, 0xa2, 0x86, 0xda, 0x95, 0x68, 0xa0, 0x65, 0xb7, 0xea, 0x3b, 0x84, 0x8b, 0xe8, 0xbf, 0x14, + 0x54, 0x8a, 0x09, 0xfb, 0xd4, 0xee, 0x84, 0xf8, 0x3a, 0xca, 0xb6, 0xe1, 0x58, 0x96, 0x56, 0x92, + 0xa5, 0x65, 0x9f, 0xc1, 0x31, 0xe1, 0x38, 0x5e, 0x43, 0xf9, 0x1e, 0x75, 0xba, 0x50, 0x9e, 0x11, + 0x84, 0x39, 0x49, 0xc8, 0xbf, 0xe2, 0x20, 0x89, 0xdf, 0xf0, 0x03, 0x34, 0x0b, 0x47, 0x47, 0x60, + 0x85, 0xe5, 0xac, 0x60, 0xad, 0x49, 0xd6, 0x6c, 0x5d, 0xa0, 0xbf, 0x07, 0xda, 0xe2, 0x58, 0xca, + 0x18, 0x24, 0x32, 0x04, 0xbf, 0x46, 0x45, 0xde, 0xd6, 0x47, 0x8d, 0x06, 0x34, 0xca, 0x39, 0x61, + 0xf1, 0xe6, 0x98, 0xc5, 0xd1, 0x0c, 0x0c, 0xbf, 0xdd, 0xe4, 0x00, 0x33, 0xf8, 0xa8, 0x8d, 0x5e, + 0xc5, 0xd8, 0xb7, 0x5d, 0xa8, 0xcd, 0x45, 0x03, 0xad, 0xb8, 0x3f, 0x14, 0x20, 0x89, 0xd6, 0xfd, + 0xc2, 0xa7, 0x2f, 0x5a, 0xe6, 0xe4, 0xfb, 0x6a, 0x46, 0xef, 0x2b, 0x68, 0x61, 0xac, 0x00, 0xd2, + 0x75, 0x00, 0xbf, 0x43, 0x05, 0xae, 0xd3, 0xa0, 0x21, 0x95, 0x8d, 0xbd, 0x35, 0x5d, 0xd6, 0x17, + 0x87, 0xef, 0xc1, 0x0a, 0x9f, 0x43, 0x48, 0x93, 0x49, 0x26, 0x18, 0x19, 0xa9, 0xe2, 0x3d, 0x94, + 0x63, 0x3e, 0x58, 0xa2, 0x73, 0xa5, 0x6a, 0xe5, 0xf2, 0xb1, 0xa5, 0xca, 0xdb, 0xf3, 0xc1, 0xaa, + 0x5d, 0x95, 0xf2, 0x39, 0xfe, 0x45, 0x84, 0x98, 0xfe, 0x55, 0x41, 0x4b, 0x29, 0xee, 0x8e, 0xcd, + 0x42, 0x7c, 0x30, 0x61, 0xc7, 0x98, 0xce, 0x0e, 0x8f, 0x16, 0x66, 0xae, 0xc9, 0x6c, 0x85, 0x21, + 0x32, 0x66, 0x85, 0xa0, 0xbc, 0x1d, 0x82, 0xcb, 0xca, 0x33, 0xab, 0xd9, 0xf5, 0x52, 0x75, 0xf3, + 0xbf, 0xbc, 0x24, 0x4b, 0xf3, 0x84, 0x6b, 0x90, 0x58, 0x4a, 0xff, 0x36, 0xe9, 0x84, 0xfb, 0xc4, + 0x2e, 0x9a, 0x6f, 0x5c, 0x58, 0x60, 0xe9, 0x67, 0xfa, 0x06, 0x8e, 0x36, 0x1f, 0x47, 0x03, 0x2d, + 0x75, 0x4b, 0x24, 0x25, 0x8e, 0x77, 0x51, 0x3e, 0xe4, 0x41, 0x72, 0x4c, 0x37, 0xa6, 0xce, 0x92, + 0xd8, 0x8a, 0xeb, 0x8f, 0x65, 0xf4, 0xcf, 0x33, 0x17, 0x6c, 0x8d, 0xf2, 0x3c, 0x44, 0x0b, 0x71, + 0xe6, 0x2d, 0x87, 0x32, 0xb6, 0x4b, 0x5d, 0x90, 0x37, 0xb7, 0x14, 0x0d, 0x34, 0xb9, 0x9d, 0xa3, + 0x27, 0x92, 0xe6, 0x62, 0x1d, 0xcd, 0x36, 0x02, 0xbb, 0x07, 0x81, 0x3c, 0x44, 0xc4, 0xcf, 0x6b, + 0x5b, 0x20, 0x44, 0xbe, 0xe0, 0x15, 0x94, 0xf3, 0x3d, 0xcf, 0x91, 0x47, 0x58, 0xe0, 0x9b, 0xf3, + 0xd2, 0xf3, 0x1c, 0x22, 0x50, 0xa1, 0x20, 0x44, 0xc5, 0x91, 0x0d, 0x15, 0x04, 0x42, 0xe4, 0x0b, + 0x7e, 0x8b, 0x8a, 0x4c, 0x16, 0xcc, 0xca, 0x79, 0x31, 0xeb, 0x8d, 0x69, 0x1a, 0x32, 0xea, 0xf8, + 0xa2, 0xec, 0x49, 0x71, 0x88, 0x30, 0x92, 0x28, 0xd6, 0x6a, 0xfd, 0x73, 0x35, 0x73, 0x7a, 0xae, + 0x66, 0xce, 0xce, 0xd5, 0xcc, 0x49, 0xa4, 0x2a, 0xfd, 0x48, 0x55, 0x4e, 0x23, 0x55, 0x39, 0x8b, + 0x54, 0xe5, 0x47, 0xa4, 0x2a, 0x1f, 0x7f, 0xaa, 0x99, 0x37, 0x2b, 0x97, 0xfd, 0xc5, 0xfc, 0x09, + 0x00, 0x00, 0xff, 0xff, 0x7e, 0xb1, 0x06, 0x7b, 0x81, 0x06, 0x00, 0x00, } -func (m *DeviceAllocationResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) + +func (m *CELDeviceSelector) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) if err != nil { return nil, err } - return b[:n], nil -} -func (m *DeviceAllocationResult) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceAllocationResult.Merge(m, src) -} -func (m *DeviceAllocationResult) XXX_Size() int { - return m.Size() -} -func (m *DeviceAllocationResult) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceAllocationResult.DiscardUnknown(m) + return dAtA[:n], nil } -var xxx_messageInfo_DeviceAllocationResult proto.InternalMessageInfo - -func (m *DeviceAttribute) Reset() { *m = DeviceAttribute{} } -func (*DeviceAttribute) ProtoMessage() {} -func (*DeviceAttribute) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{9} +func (m *CELDeviceSelector) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *DeviceAttribute) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) + +func (m *CELDeviceSelector) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + i -= len(m.Expression) + copy(dAtA[i:], m.Expression) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Expression))) + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil } -func (m *DeviceAttribute) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) + +func (m *DeviceSelector) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) if err != nil { return nil, err } - return b[:n], nil -} -func (m *DeviceAttribute) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceAttribute.Merge(m, src) -} -func (m *DeviceAttribute) XXX_Size() int { - return m.Size() -} -func (m *DeviceAttribute) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceAttribute.DiscardUnknown(m) + return dAtA[:n], nil } -var xxx_messageInfo_DeviceAttribute proto.InternalMessageInfo - -func (m *DeviceClaim) Reset() { *m = DeviceClaim{} } -func (*DeviceClaim) ProtoMessage() {} -func (*DeviceClaim) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{10} -} -func (m *DeviceClaim) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) +func (m *DeviceSelector) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *DeviceClaim) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err + +func (m *DeviceSelector) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.CEL != nil { + { + size, err := m.CEL.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa } - return b[:n], nil -} -func (m *DeviceClaim) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceClaim.Merge(m, src) -} -func (m *DeviceClaim) XXX_Size() int { - return m.Size() -} -func (m *DeviceClaim) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceClaim.DiscardUnknown(m) + return len(dAtA) - i, nil } -var xxx_messageInfo_DeviceClaim proto.InternalMessageInfo - -func (m *DeviceClaimConfiguration) Reset() { *m = DeviceClaimConfiguration{} } -func (*DeviceClaimConfiguration) ProtoMessage() {} -func (*DeviceClaimConfiguration) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{11} -} -func (m *DeviceClaimConfiguration) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *DeviceClaimConfiguration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) +func (m *DeviceTaint) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) if err != nil { return nil, err } - return b[:n], nil -} -func (m *DeviceClaimConfiguration) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceClaimConfiguration.Merge(m, src) -} -func (m *DeviceClaimConfiguration) XXX_Size() int { - return m.Size() -} -func (m *DeviceClaimConfiguration) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceClaimConfiguration.DiscardUnknown(m) + return dAtA[:n], nil } -var xxx_messageInfo_DeviceClaimConfiguration proto.InternalMessageInfo - -func (m *DeviceClass) Reset() { *m = DeviceClass{} } -func (*DeviceClass) ProtoMessage() {} -func (*DeviceClass) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{12} +func (m *DeviceTaint) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *DeviceClass) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) + +func (m *DeviceTaint) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.TimeAdded != nil { + { + size, err := m.TimeAdded.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + i -= len(m.Effect) + copy(dAtA[i:], m.Effect) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Effect))) + i-- + dAtA[i] = 0x1a + i -= len(m.Value) + copy(dAtA[i:], m.Value) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Value))) + i-- + dAtA[i] = 0x12 + i -= len(m.Key) + copy(dAtA[i:], m.Key) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Key))) + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil } -func (m *DeviceClass) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) + +func (m *DeviceTaintRule) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) if err != nil { return nil, err } - return b[:n], nil -} -func (m *DeviceClass) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceClass.Merge(m, src) -} -func (m *DeviceClass) XXX_Size() int { - return m.Size() -} -func (m *DeviceClass) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceClass.DiscardUnknown(m) + return dAtA[:n], nil } -var xxx_messageInfo_DeviceClass proto.InternalMessageInfo - -func (m *DeviceClassConfiguration) Reset() { *m = DeviceClassConfiguration{} } -func (*DeviceClassConfiguration) ProtoMessage() {} -func (*DeviceClassConfiguration) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{13} -} -func (m *DeviceClassConfiguration) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *DeviceClassConfiguration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil -} -func (m *DeviceClassConfiguration) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceClassConfiguration.Merge(m, src) -} -func (m *DeviceClassConfiguration) XXX_Size() int { - return m.Size() -} -func (m *DeviceClassConfiguration) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceClassConfiguration.DiscardUnknown(m) +func (m *DeviceTaintRule) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) } -var xxx_messageInfo_DeviceClassConfiguration proto.InternalMessageInfo - -func (m *DeviceClassList) Reset() { *m = DeviceClassList{} } -func (*DeviceClassList) ProtoMessage() {} -func (*DeviceClassList) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{14} -} -func (m *DeviceClassList) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *DeviceClassList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err +func (m *DeviceTaintRule) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + { + size, err := m.Spec.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) } - return b[:n], nil -} -func (m *DeviceClassList) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceClassList.Merge(m, src) -} -func (m *DeviceClassList) XXX_Size() int { - return m.Size() -} -func (m *DeviceClassList) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceClassList.DiscardUnknown(m) -} - -var xxx_messageInfo_DeviceClassList proto.InternalMessageInfo - -func (m *DeviceClassSpec) Reset() { *m = DeviceClassSpec{} } -func (*DeviceClassSpec) ProtoMessage() {} -func (*DeviceClassSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{15} -} -func (m *DeviceClassSpec) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *DeviceClassSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err + i-- + dAtA[i] = 0x12 + { + size, err := m.ObjectMeta.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) } - return b[:n], nil -} -func (m *DeviceClassSpec) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceClassSpec.Merge(m, src) -} -func (m *DeviceClassSpec) XXX_Size() int { - return m.Size() -} -func (m *DeviceClassSpec) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceClassSpec.DiscardUnknown(m) + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil } -var xxx_messageInfo_DeviceClassSpec proto.InternalMessageInfo - -func (m *DeviceConfiguration) Reset() { *m = DeviceConfiguration{} } -func (*DeviceConfiguration) ProtoMessage() {} -func (*DeviceConfiguration) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{16} -} -func (m *DeviceConfiguration) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *DeviceConfiguration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) +func (m *DeviceTaintRuleList) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) if err != nil { return nil, err } - return b[:n], nil -} -func (m *DeviceConfiguration) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceConfiguration.Merge(m, src) -} -func (m *DeviceConfiguration) XXX_Size() int { - return m.Size() -} -func (m *DeviceConfiguration) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceConfiguration.DiscardUnknown(m) + return dAtA[:n], nil } -var xxx_messageInfo_DeviceConfiguration proto.InternalMessageInfo - -func (m *DeviceConstraint) Reset() { *m = DeviceConstraint{} } -func (*DeviceConstraint) ProtoMessage() {} -func (*DeviceConstraint) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{17} -} -func (m *DeviceConstraint) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *DeviceConstraint) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil -} -func (m *DeviceConstraint) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceConstraint.Merge(m, src) -} -func (m *DeviceConstraint) XXX_Size() int { - return m.Size() -} -func (m *DeviceConstraint) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceConstraint.DiscardUnknown(m) +func (m *DeviceTaintRuleList) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) } -var xxx_messageInfo_DeviceConstraint proto.InternalMessageInfo - -func (m *DeviceCounterConsumption) Reset() { *m = DeviceCounterConsumption{} } -func (*DeviceCounterConsumption) ProtoMessage() {} -func (*DeviceCounterConsumption) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{18} -} -func (m *DeviceCounterConsumption) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *DeviceCounterConsumption) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err +func (m *DeviceTaintRuleList) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Items) > 0 { + for iNdEx := len(m.Items) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Items[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } } - return b[:n], nil -} -func (m *DeviceCounterConsumption) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceCounterConsumption.Merge(m, src) -} -func (m *DeviceCounterConsumption) XXX_Size() int { - return m.Size() -} -func (m *DeviceCounterConsumption) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceCounterConsumption.DiscardUnknown(m) -} - -var xxx_messageInfo_DeviceCounterConsumption proto.InternalMessageInfo - -func (m *DeviceRequest) Reset() { *m = DeviceRequest{} } -func (*DeviceRequest) ProtoMessage() {} -func (*DeviceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{19} -} -func (m *DeviceRequest) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *DeviceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err + { + size, err := m.ListMeta.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) } - return b[:n], nil -} -func (m *DeviceRequest) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceRequest.Merge(m, src) -} -func (m *DeviceRequest) XXX_Size() int { - return m.Size() -} -func (m *DeviceRequest) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceRequest.DiscardUnknown(m) + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil } -var xxx_messageInfo_DeviceRequest proto.InternalMessageInfo - -func (m *DeviceRequestAllocationResult) Reset() { *m = DeviceRequestAllocationResult{} } -func (*DeviceRequestAllocationResult) ProtoMessage() {} -func (*DeviceRequestAllocationResult) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{20} -} -func (m *DeviceRequestAllocationResult) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *DeviceRequestAllocationResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) +func (m *DeviceTaintRuleSpec) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) if err != nil { return nil, err } - return b[:n], nil -} -func (m *DeviceRequestAllocationResult) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceRequestAllocationResult.Merge(m, src) -} -func (m *DeviceRequestAllocationResult) XXX_Size() int { - return m.Size() -} -func (m *DeviceRequestAllocationResult) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceRequestAllocationResult.DiscardUnknown(m) + return dAtA[:n], nil } -var xxx_messageInfo_DeviceRequestAllocationResult proto.InternalMessageInfo - -func (m *DeviceSelector) Reset() { *m = DeviceSelector{} } -func (*DeviceSelector) ProtoMessage() {} -func (*DeviceSelector) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{21} -} -func (m *DeviceSelector) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) +func (m *DeviceTaintRuleSpec) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *DeviceSelector) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err + +func (m *DeviceTaintRuleSpec) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + { + size, err := m.Taint.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) } - return b[:n], nil -} -func (m *DeviceSelector) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceSelector.Merge(m, src) -} -func (m *DeviceSelector) XXX_Size() int { - return m.Size() -} -func (m *DeviceSelector) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceSelector.DiscardUnknown(m) + i-- + dAtA[i] = 0x12 + if m.DeviceSelector != nil { + { + size, err := m.DeviceSelector.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil } -var xxx_messageInfo_DeviceSelector proto.InternalMessageInfo - -func (m *DeviceSubRequest) Reset() { *m = DeviceSubRequest{} } -func (*DeviceSubRequest) ProtoMessage() {} -func (*DeviceSubRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{22} -} -func (m *DeviceSubRequest) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *DeviceSubRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) +func (m *DeviceTaintSelector) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) if err != nil { return nil, err } - return b[:n], nil -} -func (m *DeviceSubRequest) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceSubRequest.Merge(m, src) -} -func (m *DeviceSubRequest) XXX_Size() int { - return m.Size() -} -func (m *DeviceSubRequest) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceSubRequest.DiscardUnknown(m) + return dAtA[:n], nil } -var xxx_messageInfo_DeviceSubRequest proto.InternalMessageInfo - -func (m *DeviceTaint) Reset() { *m = DeviceTaint{} } -func (*DeviceTaint) ProtoMessage() {} -func (*DeviceTaint) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{23} +func (m *DeviceTaintSelector) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *DeviceTaint) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *DeviceTaint) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil -} -func (m *DeviceTaint) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceTaint.Merge(m, src) -} -func (m *DeviceTaint) XXX_Size() int { - return m.Size() -} -func (m *DeviceTaint) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceTaint.DiscardUnknown(m) -} - -var xxx_messageInfo_DeviceTaint proto.InternalMessageInfo -func (m *DeviceTaintRule) Reset() { *m = DeviceTaintRule{} } -func (*DeviceTaintRule) ProtoMessage() {} -func (*DeviceTaintRule) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{24} -} -func (m *DeviceTaintRule) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *DeviceTaintRule) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err +func (m *DeviceTaintSelector) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Selectors) > 0 { + for iNdEx := len(m.Selectors) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Selectors[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x2a + } } - return b[:n], nil -} -func (m *DeviceTaintRule) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceTaintRule.Merge(m, src) -} -func (m *DeviceTaintRule) XXX_Size() int { - return m.Size() -} -func (m *DeviceTaintRule) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceTaintRule.DiscardUnknown(m) + if m.Device != nil { + i -= len(*m.Device) + copy(dAtA[i:], *m.Device) + i = encodeVarintGenerated(dAtA, i, uint64(len(*m.Device))) + i-- + dAtA[i] = 0x22 + } + if m.Pool != nil { + i -= len(*m.Pool) + copy(dAtA[i:], *m.Pool) + i = encodeVarintGenerated(dAtA, i, uint64(len(*m.Pool))) + i-- + dAtA[i] = 0x1a + } + if m.Driver != nil { + i -= len(*m.Driver) + copy(dAtA[i:], *m.Driver) + i = encodeVarintGenerated(dAtA, i, uint64(len(*m.Driver))) + i-- + dAtA[i] = 0x12 + } + if m.DeviceClassName != nil { + i -= len(*m.DeviceClassName) + copy(dAtA[i:], *m.DeviceClassName) + i = encodeVarintGenerated(dAtA, i, uint64(len(*m.DeviceClassName))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil } -var xxx_messageInfo_DeviceTaintRule proto.InternalMessageInfo - -func (m *DeviceTaintRuleList) Reset() { *m = DeviceTaintRuleList{} } -func (*DeviceTaintRuleList) ProtoMessage() {} -func (*DeviceTaintRuleList) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{25} -} -func (m *DeviceTaintRuleList) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *DeviceTaintRuleList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err +func encodeVarintGenerated(dAtA []byte, offset int, v uint64) int { + offset -= sovGenerated(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ } - return b[:n], nil -} -func (m *DeviceTaintRuleList) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceTaintRuleList.Merge(m, src) -} -func (m *DeviceTaintRuleList) XXX_Size() int { - return m.Size() + dAtA[offset] = uint8(v) + return base } -func (m *DeviceTaintRuleList) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceTaintRuleList.DiscardUnknown(m) +func (m *CELDeviceSelector) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Expression) + n += 1 + l + sovGenerated(uint64(l)) + return n } -var xxx_messageInfo_DeviceTaintRuleList proto.InternalMessageInfo - -func (m *DeviceTaintRuleSpec) Reset() { *m = DeviceTaintRuleSpec{} } -func (*DeviceTaintRuleSpec) ProtoMessage() {} -func (*DeviceTaintRuleSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{26} -} -func (m *DeviceTaintRuleSpec) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *DeviceTaintRuleSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err +func (m *DeviceSelector) Size() (n int) { + if m == nil { + return 0 } - return b[:n], nil -} -func (m *DeviceTaintRuleSpec) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceTaintRuleSpec.Merge(m, src) -} -func (m *DeviceTaintRuleSpec) XXX_Size() int { - return m.Size() -} -func (m *DeviceTaintRuleSpec) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceTaintRuleSpec.DiscardUnknown(m) + var l int + _ = l + if m.CEL != nil { + l = m.CEL.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + return n } -var xxx_messageInfo_DeviceTaintRuleSpec proto.InternalMessageInfo - -func (m *DeviceTaintSelector) Reset() { *m = DeviceTaintSelector{} } -func (*DeviceTaintSelector) ProtoMessage() {} -func (*DeviceTaintSelector) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{27} -} -func (m *DeviceTaintSelector) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *DeviceTaintSelector) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err +func (m *DeviceTaint) Size() (n int) { + if m == nil { + return 0 } - return b[:n], nil -} -func (m *DeviceTaintSelector) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceTaintSelector.Merge(m, src) -} -func (m *DeviceTaintSelector) XXX_Size() int { - return m.Size() -} -func (m *DeviceTaintSelector) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceTaintSelector.DiscardUnknown(m) + var l int + _ = l + l = len(m.Key) + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.Value) + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.Effect) + n += 1 + l + sovGenerated(uint64(l)) + if m.TimeAdded != nil { + l = m.TimeAdded.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + return n } -var xxx_messageInfo_DeviceTaintSelector proto.InternalMessageInfo - -func (m *DeviceToleration) Reset() { *m = DeviceToleration{} } -func (*DeviceToleration) ProtoMessage() {} -func (*DeviceToleration) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{28} -} -func (m *DeviceToleration) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *DeviceToleration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err +func (m *DeviceTaintRule) Size() (n int) { + if m == nil { + return 0 } - return b[:n], nil -} -func (m *DeviceToleration) XXX_Merge(src proto.Message) { - xxx_messageInfo_DeviceToleration.Merge(m, src) -} -func (m *DeviceToleration) XXX_Size() int { - return m.Size() -} -func (m *DeviceToleration) XXX_DiscardUnknown() { - xxx_messageInfo_DeviceToleration.DiscardUnknown(m) + var l int + _ = l + l = m.ObjectMeta.Size() + n += 1 + l + sovGenerated(uint64(l)) + l = m.Spec.Size() + n += 1 + l + sovGenerated(uint64(l)) + return n } -var xxx_messageInfo_DeviceToleration proto.InternalMessageInfo - -func (m *NetworkDeviceData) Reset() { *m = NetworkDeviceData{} } -func (*NetworkDeviceData) ProtoMessage() {} -func (*NetworkDeviceData) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{29} -} -func (m *NetworkDeviceData) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *NetworkDeviceData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err +func (m *DeviceTaintRuleList) Size() (n int) { + if m == nil { + return 0 } - return b[:n], nil -} -func (m *NetworkDeviceData) XXX_Merge(src proto.Message) { - xxx_messageInfo_NetworkDeviceData.Merge(m, src) -} -func (m *NetworkDeviceData) XXX_Size() int { - return m.Size() -} -func (m *NetworkDeviceData) XXX_DiscardUnknown() { - xxx_messageInfo_NetworkDeviceData.DiscardUnknown(m) + var l int + _ = l + l = m.ListMeta.Size() + n += 1 + l + sovGenerated(uint64(l)) + if len(m.Items) > 0 { + for _, e := range m.Items { + l = e.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + } + return n } -var xxx_messageInfo_NetworkDeviceData proto.InternalMessageInfo - -func (m *OpaqueDeviceConfiguration) Reset() { *m = OpaqueDeviceConfiguration{} } -func (*OpaqueDeviceConfiguration) ProtoMessage() {} -func (*OpaqueDeviceConfiguration) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{30} -} -func (m *OpaqueDeviceConfiguration) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *OpaqueDeviceConfiguration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil -} -func (m *OpaqueDeviceConfiguration) XXX_Merge(src proto.Message) { - xxx_messageInfo_OpaqueDeviceConfiguration.Merge(m, src) -} -func (m *OpaqueDeviceConfiguration) XXX_Size() int { - return m.Size() -} -func (m *OpaqueDeviceConfiguration) XXX_DiscardUnknown() { - xxx_messageInfo_OpaqueDeviceConfiguration.DiscardUnknown(m) -} - -var xxx_messageInfo_OpaqueDeviceConfiguration proto.InternalMessageInfo - -func (m *ResourceClaim) Reset() { *m = ResourceClaim{} } -func (*ResourceClaim) ProtoMessage() {} -func (*ResourceClaim) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{31} -} -func (m *ResourceClaim) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *ResourceClaim) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil -} -func (m *ResourceClaim) XXX_Merge(src proto.Message) { - xxx_messageInfo_ResourceClaim.Merge(m, src) -} -func (m *ResourceClaim) XXX_Size() int { - return m.Size() -} -func (m *ResourceClaim) XXX_DiscardUnknown() { - xxx_messageInfo_ResourceClaim.DiscardUnknown(m) -} - -var xxx_messageInfo_ResourceClaim proto.InternalMessageInfo - -func (m *ResourceClaimConsumerReference) Reset() { *m = ResourceClaimConsumerReference{} } -func (*ResourceClaimConsumerReference) ProtoMessage() {} -func (*ResourceClaimConsumerReference) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{32} -} -func (m *ResourceClaimConsumerReference) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *ResourceClaimConsumerReference) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err +func (m *DeviceTaintRuleSpec) Size() (n int) { + if m == nil { + return 0 } - return b[:n], nil -} -func (m *ResourceClaimConsumerReference) XXX_Merge(src proto.Message) { - xxx_messageInfo_ResourceClaimConsumerReference.Merge(m, src) -} -func (m *ResourceClaimConsumerReference) XXX_Size() int { - return m.Size() -} -func (m *ResourceClaimConsumerReference) XXX_DiscardUnknown() { - xxx_messageInfo_ResourceClaimConsumerReference.DiscardUnknown(m) -} - -var xxx_messageInfo_ResourceClaimConsumerReference proto.InternalMessageInfo - -func (m *ResourceClaimList) Reset() { *m = ResourceClaimList{} } -func (*ResourceClaimList) ProtoMessage() {} -func (*ResourceClaimList) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{33} -} -func (m *ResourceClaimList) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *ResourceClaimList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err + var l int + _ = l + if m.DeviceSelector != nil { + l = m.DeviceSelector.Size() + n += 1 + l + sovGenerated(uint64(l)) } - return b[:n], nil -} -func (m *ResourceClaimList) XXX_Merge(src proto.Message) { - xxx_messageInfo_ResourceClaimList.Merge(m, src) -} -func (m *ResourceClaimList) XXX_Size() int { - return m.Size() -} -func (m *ResourceClaimList) XXX_DiscardUnknown() { - xxx_messageInfo_ResourceClaimList.DiscardUnknown(m) + l = m.Taint.Size() + n += 1 + l + sovGenerated(uint64(l)) + return n } -var xxx_messageInfo_ResourceClaimList proto.InternalMessageInfo - -func (m *ResourceClaimSpec) Reset() { *m = ResourceClaimSpec{} } -func (*ResourceClaimSpec) ProtoMessage() {} -func (*ResourceClaimSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{34} -} -func (m *ResourceClaimSpec) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *ResourceClaimSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err +func (m *DeviceTaintSelector) Size() (n int) { + if m == nil { + return 0 } - return b[:n], nil -} -func (m *ResourceClaimSpec) XXX_Merge(src proto.Message) { - xxx_messageInfo_ResourceClaimSpec.Merge(m, src) -} -func (m *ResourceClaimSpec) XXX_Size() int { - return m.Size() -} -func (m *ResourceClaimSpec) XXX_DiscardUnknown() { - xxx_messageInfo_ResourceClaimSpec.DiscardUnknown(m) -} - -var xxx_messageInfo_ResourceClaimSpec proto.InternalMessageInfo - -func (m *ResourceClaimStatus) Reset() { *m = ResourceClaimStatus{} } -func (*ResourceClaimStatus) ProtoMessage() {} -func (*ResourceClaimStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{35} -} -func (m *ResourceClaimStatus) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *ResourceClaimStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err + var l int + _ = l + if m.DeviceClassName != nil { + l = len(*m.DeviceClassName) + n += 1 + l + sovGenerated(uint64(l)) } - return b[:n], nil -} -func (m *ResourceClaimStatus) XXX_Merge(src proto.Message) { - xxx_messageInfo_ResourceClaimStatus.Merge(m, src) -} -func (m *ResourceClaimStatus) XXX_Size() int { - return m.Size() -} -func (m *ResourceClaimStatus) XXX_DiscardUnknown() { - xxx_messageInfo_ResourceClaimStatus.DiscardUnknown(m) -} - -var xxx_messageInfo_ResourceClaimStatus proto.InternalMessageInfo - -func (m *ResourceClaimTemplate) Reset() { *m = ResourceClaimTemplate{} } -func (*ResourceClaimTemplate) ProtoMessage() {} -func (*ResourceClaimTemplate) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{36} -} -func (m *ResourceClaimTemplate) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *ResourceClaimTemplate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err + if m.Driver != nil { + l = len(*m.Driver) + n += 1 + l + sovGenerated(uint64(l)) } - return b[:n], nil -} -func (m *ResourceClaimTemplate) XXX_Merge(src proto.Message) { - xxx_messageInfo_ResourceClaimTemplate.Merge(m, src) -} -func (m *ResourceClaimTemplate) XXX_Size() int { - return m.Size() -} -func (m *ResourceClaimTemplate) XXX_DiscardUnknown() { - xxx_messageInfo_ResourceClaimTemplate.DiscardUnknown(m) -} - -var xxx_messageInfo_ResourceClaimTemplate proto.InternalMessageInfo - -func (m *ResourceClaimTemplateList) Reset() { *m = ResourceClaimTemplateList{} } -func (*ResourceClaimTemplateList) ProtoMessage() {} -func (*ResourceClaimTemplateList) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{37} -} -func (m *ResourceClaimTemplateList) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *ResourceClaimTemplateList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err + if m.Pool != nil { + l = len(*m.Pool) + n += 1 + l + sovGenerated(uint64(l)) } - return b[:n], nil -} -func (m *ResourceClaimTemplateList) XXX_Merge(src proto.Message) { - xxx_messageInfo_ResourceClaimTemplateList.Merge(m, src) -} -func (m *ResourceClaimTemplateList) XXX_Size() int { - return m.Size() -} -func (m *ResourceClaimTemplateList) XXX_DiscardUnknown() { - xxx_messageInfo_ResourceClaimTemplateList.DiscardUnknown(m) -} - -var xxx_messageInfo_ResourceClaimTemplateList proto.InternalMessageInfo - -func (m *ResourceClaimTemplateSpec) Reset() { *m = ResourceClaimTemplateSpec{} } -func (*ResourceClaimTemplateSpec) ProtoMessage() {} -func (*ResourceClaimTemplateSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{38} -} -func (m *ResourceClaimTemplateSpec) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *ResourceClaimTemplateSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err + if m.Device != nil { + l = len(*m.Device) + n += 1 + l + sovGenerated(uint64(l)) } - return b[:n], nil -} -func (m *ResourceClaimTemplateSpec) XXX_Merge(src proto.Message) { - xxx_messageInfo_ResourceClaimTemplateSpec.Merge(m, src) -} -func (m *ResourceClaimTemplateSpec) XXX_Size() int { - return m.Size() -} -func (m *ResourceClaimTemplateSpec) XXX_DiscardUnknown() { - xxx_messageInfo_ResourceClaimTemplateSpec.DiscardUnknown(m) -} - -var xxx_messageInfo_ResourceClaimTemplateSpec proto.InternalMessageInfo - -func (m *ResourcePool) Reset() { *m = ResourcePool{} } -func (*ResourcePool) ProtoMessage() {} -func (*ResourcePool) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{39} -} -func (m *ResourcePool) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *ResourcePool) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err + if len(m.Selectors) > 0 { + for _, e := range m.Selectors { + l = e.Size() + n += 1 + l + sovGenerated(uint64(l)) + } } - return b[:n], nil -} -func (m *ResourcePool) XXX_Merge(src proto.Message) { - xxx_messageInfo_ResourcePool.Merge(m, src) -} -func (m *ResourcePool) XXX_Size() int { - return m.Size() -} -func (m *ResourcePool) XXX_DiscardUnknown() { - xxx_messageInfo_ResourcePool.DiscardUnknown(m) + return n } -var xxx_messageInfo_ResourcePool proto.InternalMessageInfo - -func (m *ResourceSlice) Reset() { *m = ResourceSlice{} } -func (*ResourceSlice) ProtoMessage() {} -func (*ResourceSlice) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{40} +func sovGenerated(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 } -func (m *ResourceSlice) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) +func sozGenerated(x uint64) (n int) { + return sovGenerated(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } -func (m *ResourceSlice) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err +func (this *CELDeviceSelector) String() string { + if this == nil { + return "nil" } - return b[:n], nil -} -func (m *ResourceSlice) XXX_Merge(src proto.Message) { - xxx_messageInfo_ResourceSlice.Merge(m, src) -} -func (m *ResourceSlice) XXX_Size() int { - return m.Size() -} -func (m *ResourceSlice) XXX_DiscardUnknown() { - xxx_messageInfo_ResourceSlice.DiscardUnknown(m) -} - -var xxx_messageInfo_ResourceSlice proto.InternalMessageInfo - -func (m *ResourceSliceList) Reset() { *m = ResourceSliceList{} } -func (*ResourceSliceList) ProtoMessage() {} -func (*ResourceSliceList) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{41} -} -func (m *ResourceSliceList) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) + s := strings.Join([]string{`&CELDeviceSelector{`, + `Expression:` + fmt.Sprintf("%v", this.Expression) + `,`, + `}`, + }, "") + return s } -func (m *ResourceSliceList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err +func (this *DeviceSelector) String() string { + if this == nil { + return "nil" } - return b[:n], nil -} -func (m *ResourceSliceList) XXX_Merge(src proto.Message) { - xxx_messageInfo_ResourceSliceList.Merge(m, src) -} -func (m *ResourceSliceList) XXX_Size() int { - return m.Size() -} -func (m *ResourceSliceList) XXX_DiscardUnknown() { - xxx_messageInfo_ResourceSliceList.DiscardUnknown(m) -} - -var xxx_messageInfo_ResourceSliceList proto.InternalMessageInfo - -func (m *ResourceSliceSpec) Reset() { *m = ResourceSliceSpec{} } -func (*ResourceSliceSpec) ProtoMessage() {} -func (*ResourceSliceSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_66649ee9bbcd89d2, []int{42} -} -func (m *ResourceSliceSpec) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) + s := strings.Join([]string{`&DeviceSelector{`, + `CEL:` + strings.Replace(this.CEL.String(), "CELDeviceSelector", "CELDeviceSelector", 1) + `,`, + `}`, + }, "") + return s } -func (m *ResourceSliceSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err +func (this *DeviceTaintRule) String() string { + if this == nil { + return "nil" } - return b[:n], nil -} -func (m *ResourceSliceSpec) XXX_Merge(src proto.Message) { - xxx_messageInfo_ResourceSliceSpec.Merge(m, src) -} -func (m *ResourceSliceSpec) XXX_Size() int { - return m.Size() -} -func (m *ResourceSliceSpec) XXX_DiscardUnknown() { - xxx_messageInfo_ResourceSliceSpec.DiscardUnknown(m) + s := strings.Join([]string{`&DeviceTaintRule{`, + `ObjectMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ObjectMeta), "ObjectMeta", "v1.ObjectMeta", 1), `&`, ``, 1) + `,`, + `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "DeviceTaintRuleSpec", "DeviceTaintRuleSpec", 1), `&`, ``, 1) + `,`, + `}`, + }, "") + return s } - -var xxx_messageInfo_ResourceSliceSpec proto.InternalMessageInfo - -func init() { - proto.RegisterType((*AllocatedDeviceStatus)(nil), "k8s.io.api.resource.v1alpha3.AllocatedDeviceStatus") - proto.RegisterType((*AllocationResult)(nil), "k8s.io.api.resource.v1alpha3.AllocationResult") - proto.RegisterType((*BasicDevice)(nil), "k8s.io.api.resource.v1alpha3.BasicDevice") - proto.RegisterMapType((map[QualifiedName]DeviceAttribute)(nil), "k8s.io.api.resource.v1alpha3.BasicDevice.AttributesEntry") - proto.RegisterMapType((map[QualifiedName]resource.Quantity)(nil), "k8s.io.api.resource.v1alpha3.BasicDevice.CapacityEntry") - proto.RegisterType((*CELDeviceSelector)(nil), "k8s.io.api.resource.v1alpha3.CELDeviceSelector") - proto.RegisterType((*Counter)(nil), "k8s.io.api.resource.v1alpha3.Counter") - proto.RegisterType((*CounterSet)(nil), "k8s.io.api.resource.v1alpha3.CounterSet") - proto.RegisterMapType((map[string]Counter)(nil), "k8s.io.api.resource.v1alpha3.CounterSet.CountersEntry") - proto.RegisterType((*Device)(nil), "k8s.io.api.resource.v1alpha3.Device") - proto.RegisterType((*DeviceAllocationConfiguration)(nil), "k8s.io.api.resource.v1alpha3.DeviceAllocationConfiguration") - proto.RegisterType((*DeviceAllocationResult)(nil), "k8s.io.api.resource.v1alpha3.DeviceAllocationResult") - proto.RegisterType((*DeviceAttribute)(nil), "k8s.io.api.resource.v1alpha3.DeviceAttribute") - proto.RegisterType((*DeviceClaim)(nil), "k8s.io.api.resource.v1alpha3.DeviceClaim") - proto.RegisterType((*DeviceClaimConfiguration)(nil), "k8s.io.api.resource.v1alpha3.DeviceClaimConfiguration") - proto.RegisterType((*DeviceClass)(nil), "k8s.io.api.resource.v1alpha3.DeviceClass") - proto.RegisterType((*DeviceClassConfiguration)(nil), "k8s.io.api.resource.v1alpha3.DeviceClassConfiguration") - proto.RegisterType((*DeviceClassList)(nil), "k8s.io.api.resource.v1alpha3.DeviceClassList") - proto.RegisterType((*DeviceClassSpec)(nil), "k8s.io.api.resource.v1alpha3.DeviceClassSpec") - proto.RegisterType((*DeviceConfiguration)(nil), "k8s.io.api.resource.v1alpha3.DeviceConfiguration") - proto.RegisterType((*DeviceConstraint)(nil), "k8s.io.api.resource.v1alpha3.DeviceConstraint") - proto.RegisterType((*DeviceCounterConsumption)(nil), "k8s.io.api.resource.v1alpha3.DeviceCounterConsumption") - proto.RegisterMapType((map[string]Counter)(nil), "k8s.io.api.resource.v1alpha3.DeviceCounterConsumption.CountersEntry") - proto.RegisterType((*DeviceRequest)(nil), "k8s.io.api.resource.v1alpha3.DeviceRequest") - proto.RegisterType((*DeviceRequestAllocationResult)(nil), "k8s.io.api.resource.v1alpha3.DeviceRequestAllocationResult") - proto.RegisterType((*DeviceSelector)(nil), "k8s.io.api.resource.v1alpha3.DeviceSelector") - proto.RegisterType((*DeviceSubRequest)(nil), "k8s.io.api.resource.v1alpha3.DeviceSubRequest") - proto.RegisterType((*DeviceTaint)(nil), "k8s.io.api.resource.v1alpha3.DeviceTaint") - proto.RegisterType((*DeviceTaintRule)(nil), "k8s.io.api.resource.v1alpha3.DeviceTaintRule") - proto.RegisterType((*DeviceTaintRuleList)(nil), "k8s.io.api.resource.v1alpha3.DeviceTaintRuleList") - proto.RegisterType((*DeviceTaintRuleSpec)(nil), "k8s.io.api.resource.v1alpha3.DeviceTaintRuleSpec") - proto.RegisterType((*DeviceTaintSelector)(nil), "k8s.io.api.resource.v1alpha3.DeviceTaintSelector") - proto.RegisterType((*DeviceToleration)(nil), "k8s.io.api.resource.v1alpha3.DeviceToleration") - proto.RegisterType((*NetworkDeviceData)(nil), "k8s.io.api.resource.v1alpha3.NetworkDeviceData") - proto.RegisterType((*OpaqueDeviceConfiguration)(nil), "k8s.io.api.resource.v1alpha3.OpaqueDeviceConfiguration") - proto.RegisterType((*ResourceClaim)(nil), "k8s.io.api.resource.v1alpha3.ResourceClaim") - proto.RegisterType((*ResourceClaimConsumerReference)(nil), "k8s.io.api.resource.v1alpha3.ResourceClaimConsumerReference") - proto.RegisterType((*ResourceClaimList)(nil), "k8s.io.api.resource.v1alpha3.ResourceClaimList") - proto.RegisterType((*ResourceClaimSpec)(nil), "k8s.io.api.resource.v1alpha3.ResourceClaimSpec") - proto.RegisterType((*ResourceClaimStatus)(nil), "k8s.io.api.resource.v1alpha3.ResourceClaimStatus") - proto.RegisterType((*ResourceClaimTemplate)(nil), "k8s.io.api.resource.v1alpha3.ResourceClaimTemplate") - proto.RegisterType((*ResourceClaimTemplateList)(nil), "k8s.io.api.resource.v1alpha3.ResourceClaimTemplateList") - proto.RegisterType((*ResourceClaimTemplateSpec)(nil), "k8s.io.api.resource.v1alpha3.ResourceClaimTemplateSpec") - proto.RegisterType((*ResourcePool)(nil), "k8s.io.api.resource.v1alpha3.ResourcePool") - proto.RegisterType((*ResourceSlice)(nil), "k8s.io.api.resource.v1alpha3.ResourceSlice") - proto.RegisterType((*ResourceSliceList)(nil), "k8s.io.api.resource.v1alpha3.ResourceSliceList") - proto.RegisterType((*ResourceSliceSpec)(nil), "k8s.io.api.resource.v1alpha3.ResourceSliceSpec") -} - -func init() { - proto.RegisterFile("k8s.io/api/resource/v1alpha3/generated.proto", fileDescriptor_66649ee9bbcd89d2) -} - -var fileDescriptor_66649ee9bbcd89d2 = []byte{ - // 2635 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x1a, 0x5b, 0x6f, 0x1c, 0x57, - 0x39, 0xb3, 0xbb, 0x5e, 0xaf, 0xbf, 0x8d, 0x1d, 0xfb, 0x84, 0x84, 0x8d, 0x49, 0x77, 0x93, 0x09, - 0x17, 0xa7, 0x75, 0xd6, 0x8d, 0x53, 0xb5, 0x85, 0x80, 0x84, 0xd7, 0x76, 0x52, 0xa7, 0x89, 0xe3, - 0x9c, 0x75, 0x03, 0x81, 0x12, 0x18, 0xcf, 0x1e, 0xdb, 0x83, 0x67, 0x67, 0xa6, 0x73, 0x66, 0x9d, - 0x5a, 0x42, 0xa8, 0xe2, 0x07, 0x54, 0xbc, 0xf2, 0x80, 0x2a, 0xf1, 0x50, 0x89, 0x17, 0xe0, 0x99, - 0x17, 0x90, 0x40, 0x6a, 0x04, 0x3c, 0x44, 0xa2, 0x42, 0x15, 0x12, 0x0b, 0x59, 0x84, 0xf8, 0x0b, - 0xc8, 0x4f, 0xe8, 0x5c, 0xe6, 0xba, 0x3b, 0xce, 0xac, 0x49, 0xac, 0x20, 0xf5, 0x6d, 0xf7, 0x3b, - 0xdf, 0xed, 0x7c, 0xf7, 0x73, 0xe6, 0xc0, 0xec, 0xce, 0xeb, 0xb4, 0x6e, 0xd8, 0x73, 0x9a, 0x63, - 0xcc, 0xb9, 0x84, 0xda, 0x1d, 0x57, 0x27, 0x73, 0xbb, 0x97, 0x35, 0xd3, 0xd9, 0xd6, 0xae, 0xcc, - 0x6d, 0x11, 0x8b, 0xb8, 0x9a, 0x47, 0x5a, 0x75, 0xc7, 0xb5, 0x3d, 0x1b, 0x9d, 0x15, 0xd8, 0x75, - 0xcd, 0x31, 0xea, 0x3e, 0x76, 0xdd, 0xc7, 0x9e, 0xbe, 0xb4, 0x65, 0x78, 0xdb, 0x9d, 0x8d, 0xba, - 0x6e, 0xb7, 0xe7, 0xb6, 0xec, 0x2d, 0x7b, 0x8e, 0x13, 0x6d, 0x74, 0x36, 0xf9, 0x3f, 0xfe, 0x87, - 0xff, 0x12, 0xcc, 0xa6, 0xd5, 0x88, 0x68, 0xdd, 0x76, 0x99, 0xd8, 0xa4, 0xc0, 0xe9, 0x57, 0x42, - 0x9c, 0xb6, 0xa6, 0x6f, 0x1b, 0x16, 0x71, 0xf7, 0xe6, 0x9c, 0x9d, 0xad, 0xb8, 0xbe, 0xc3, 0x50, - 0xd1, 0xb9, 0x36, 0xf1, 0xb4, 0x41, 0xb2, 0xe6, 0xd2, 0xa8, 0xdc, 0x8e, 0xe5, 0x19, 0xed, 0x7e, - 0x31, 0xaf, 0x3e, 0x89, 0x80, 0xea, 0xdb, 0xa4, 0xad, 0x25, 0xe9, 0xd4, 0x0f, 0xf2, 0x70, 0x6a, - 0xc1, 0x34, 0x6d, 0x9d, 0xc1, 0x96, 0xc8, 0xae, 0xa1, 0x93, 0xa6, 0xa7, 0x79, 0x1d, 0x8a, 0xbe, - 0x08, 0xc5, 0x96, 0x6b, 0xec, 0x12, 0xb7, 0xa2, 0x9c, 0x53, 0x66, 0xc6, 0x1a, 0x13, 0x0f, 0xbb, - 0xb5, 0x63, 0xbd, 0x6e, 0xad, 0xb8, 0xc4, 0xa1, 0x58, 0xae, 0xa2, 0x73, 0x50, 0x70, 0x6c, 0xdb, - 0xac, 0xe4, 0x38, 0xd6, 0x71, 0x89, 0x55, 0x58, 0xb3, 0x6d, 0x13, 0xf3, 0x15, 0xce, 0x89, 0x73, - 0xae, 0xe4, 0x13, 0x9c, 0x38, 0x14, 0xcb, 0x55, 0xa4, 0x03, 0xe8, 0xb6, 0xd5, 0x32, 0x3c, 0xc3, - 0xb6, 0x68, 0xa5, 0x70, 0x2e, 0x3f, 0x53, 0x9e, 0x9f, 0xab, 0x87, 0x6e, 0x0e, 0x36, 0x56, 0x77, - 0x76, 0xb6, 0x18, 0x80, 0xd6, 0x99, 0xfd, 0xea, 0xbb, 0x97, 0xeb, 0x8b, 0x3e, 0x5d, 0x03, 0x49, - 0xe6, 0x10, 0x80, 0x28, 0x8e, 0xb0, 0x45, 0x6f, 0x42, 0xa1, 0xa5, 0x79, 0x5a, 0x65, 0xe4, 0x9c, - 0x32, 0x53, 0x9e, 0xbf, 0x94, 0xca, 0x5e, 0xda, 0xad, 0x8e, 0xb5, 0x07, 0xcb, 0xef, 0x7a, 0xc4, - 0xa2, 0x8c, 0x79, 0x89, 0xed, 0x6c, 0x49, 0xf3, 0x34, 0xcc, 0x99, 0xa0, 0x0d, 0x28, 0x5b, 0xc4, - 0x7b, 0x60, 0xbb, 0x3b, 0x0c, 0x58, 0x29, 0x72, 0x9e, 0x51, 0x95, 0xfb, 0x23, 0xb3, 0xbe, 0x2a, - 0x09, 0xf8, 0x9e, 0x19, 0x59, 0xe3, 0x44, 0xaf, 0x5b, 0x2b, 0xaf, 0x86, 0x7c, 0x70, 0x94, 0xa9, - 0xfa, 0x47, 0x05, 0x26, 0xa5, 0x87, 0x0c, 0xdb, 0xc2, 0x84, 0x76, 0x4c, 0x0f, 0x7d, 0x17, 0x46, - 0x85, 0xd1, 0x28, 0xf7, 0x4e, 0x79, 0xfe, 0x95, 0x83, 0x85, 0x0a, 0x69, 0x49, 0x36, 0x8d, 0x13, - 0xd2, 0x58, 0xa3, 0x62, 0x9d, 0x62, 0x9f, 0x2b, 0xba, 0x0b, 0xc7, 0x2d, 0xbb, 0x45, 0x9a, 0xc4, - 0x24, 0xba, 0x67, 0xbb, 0xdc, 0x73, 0xe5, 0xf9, 0x73, 0x51, 0x29, 0x2c, 0x4f, 0x98, 0xed, 0x57, - 0x23, 0x78, 0x8d, 0xc9, 0x5e, 0xb7, 0x76, 0x3c, 0x0a, 0xc1, 0x31, 0x3e, 0xea, 0xdf, 0x8a, 0x50, - 0x6e, 0x68, 0xd4, 0xd0, 0x85, 0x44, 0xf4, 0x43, 0x00, 0xcd, 0xf3, 0x5c, 0x63, 0xa3, 0xe3, 0xf1, - 0xbd, 0x30, 0x9f, 0x7f, 0xf9, 0xe0, 0xbd, 0x44, 0xc8, 0xeb, 0x0b, 0x01, 0xed, 0xb2, 0xe5, 0xb9, - 0x7b, 0x8d, 0x0b, 0xbe, 0xf7, 0xc3, 0x85, 0x1f, 0xfd, 0xbd, 0x36, 0x7e, 0xa7, 0xa3, 0x99, 0xc6, - 0xa6, 0x41, 0x5a, 0xab, 0x5a, 0x9b, 0xe0, 0x88, 0x44, 0xb4, 0x0b, 0x25, 0x5d, 0x73, 0x34, 0xdd, - 0xf0, 0xf6, 0x2a, 0x39, 0x2e, 0xfd, 0xb5, 0xec, 0xd2, 0x17, 0x25, 0xa5, 0x90, 0x7d, 0x5e, 0xca, - 0x2e, 0xf9, 0xe0, 0x7e, 0xc9, 0x81, 0x2c, 0xf4, 0x03, 0x98, 0xd4, 0x6d, 0x8b, 0x76, 0xda, 0x84, - 0x2e, 0xda, 0x1d, 0xcb, 0x23, 0x2e, 0xad, 0xe4, 0xb9, 0xfc, 0x57, 0xb3, 0x78, 0x52, 0xd2, 0x2c, - 0x72, 0x16, 0x0e, 0x0f, 0xfc, 0x8a, 0x14, 0x3f, 0xb9, 0x98, 0xe0, 0x8b, 0xfb, 0x24, 0xa1, 0x19, - 0x28, 0x31, 0xaf, 0x30, 0x9d, 0x2a, 0x05, 0x91, 0xb7, 0x4c, 0xf1, 0x55, 0x09, 0xc3, 0xc1, 0x6a, - 0x5f, 0x1c, 0x8c, 0x3c, 0x9d, 0x38, 0x60, 0x1a, 0x68, 0xa6, 0xc9, 0x10, 0x28, 0x4f, 0x9b, 0x92, - 0xd0, 0x60, 0x41, 0xc2, 0x70, 0xb0, 0x8a, 0xee, 0x40, 0xd1, 0xd3, 0x0c, 0xcb, 0xa3, 0x95, 0x51, - 0x6e, 0x9f, 0x8b, 0x59, 0xec, 0xb3, 0xce, 0x28, 0xc2, 0x42, 0xc3, 0xff, 0x52, 0x2c, 0x19, 0x4d, - 0x9b, 0x70, 0x22, 0x11, 0x38, 0x68, 0x12, 0xf2, 0x3b, 0x64, 0x4f, 0x94, 0x3a, 0xcc, 0x7e, 0xa2, - 0x45, 0x18, 0xd9, 0xd5, 0xcc, 0x0e, 0xe1, 0x85, 0x2d, 0x5e, 0x29, 0xd2, 0x13, 0xcc, 0xe7, 0x8a, - 0x05, 0xed, 0x57, 0x72, 0xaf, 0x2b, 0xd3, 0x3b, 0x30, 0x1e, 0x0b, 0x94, 0x01, 0xb2, 0x96, 0xe2, - 0xb2, 0xea, 0x07, 0x15, 0xbd, 0x50, 0xf8, 0x9d, 0x8e, 0x66, 0x79, 0x86, 0xb7, 0x17, 0x11, 0xa6, - 0x5e, 0x87, 0xa9, 0xc5, 0xe5, 0x9b, 0xb2, 0x90, 0xfb, 0xc6, 0x9e, 0x07, 0x20, 0xef, 0x3a, 0x2e, - 0xa1, 0xac, 0x88, 0xc9, 0x72, 0x1e, 0xd4, 0xc9, 0xe5, 0x60, 0x05, 0x47, 0xb0, 0xd4, 0xfb, 0x30, - 0x2a, 0xc3, 0x05, 0x35, 0x7d, 0xed, 0x94, 0xc3, 0x68, 0xd7, 0x18, 0x97, 0x92, 0x46, 0xee, 0x32, - 0x26, 0x52, 0x59, 0xf5, 0x3f, 0x0a, 0x80, 0x14, 0xd0, 0x24, 0x1e, 0xeb, 0x22, 0x16, 0x8b, 0x46, - 0x25, 0xde, 0x45, 0x78, 0x34, 0xf2, 0x15, 0xd4, 0x82, 0x92, 0xee, 0x67, 0x4a, 0x2e, 0x4b, 0xa6, - 0x84, 0xdc, 0xfd, 0x9f, 0xb2, 0x48, 0x4c, 0x06, 0x89, 0xea, 0x67, 0x48, 0xc0, 0x79, 0x7a, 0x03, - 0xc6, 0x63, 0xc8, 0x03, 0x9c, 0x75, 0x35, 0xee, 0xac, 0x2f, 0x64, 0xd2, 0x22, 0xea, 0xa3, 0x5d, - 0x90, 0x9d, 0x2f, 0xc3, 0xae, 0x6f, 0xc0, 0xc8, 0x06, 0xab, 0x38, 0x52, 0xd8, 0xc5, 0xcc, 0xc5, - 0xa9, 0x31, 0xc6, 0x4c, 0xce, 0x01, 0x58, 0xb0, 0x50, 0xdf, 0xcf, 0xc1, 0x0b, 0xc9, 0x46, 0xb0, - 0x68, 0x5b, 0x9b, 0xc6, 0x56, 0xc7, 0xe5, 0x7f, 0xd0, 0xd7, 0xa1, 0x28, 0x58, 0x4a, 0x8d, 0x66, - 0xfc, 0x04, 0x6a, 0x72, 0xe8, 0x7e, 0xb7, 0x76, 0x3a, 0x49, 0x2a, 0x56, 0xb0, 0xa4, 0x63, 0x79, - 0xed, 0x92, 0x77, 0x3a, 0x84, 0x7a, 0xc2, 0x4b, 0xb2, 0xb2, 0x60, 0x09, 0xc3, 0xc1, 0x2a, 0x7a, - 0x4f, 0x81, 0x93, 0x2d, 0x59, 0xcc, 0x22, 0x3a, 0xc8, 0x4e, 0x73, 0x39, 0x5b, 0x15, 0x8c, 0x10, - 0x36, 0x3e, 0x27, 0x95, 0x3d, 0x39, 0x60, 0x11, 0x0f, 0x12, 0xa5, 0xfe, 0x4b, 0x81, 0xd3, 0x83, - 0x3b, 0x23, 0xda, 0x84, 0x51, 0x97, 0xff, 0xf2, 0x9b, 0xd2, 0xd5, 0x2c, 0x0a, 0xc9, 0x6d, 0xa6, - 0xf7, 0x59, 0xf1, 0x9f, 0x62, 0x9f, 0x39, 0xd2, 0xa1, 0xa8, 0x73, 0x9d, 0x64, 0x4c, 0x5f, 0x1d, - 0xae, 0x8f, 0xc7, 0x2d, 0x10, 0xd4, 0x3b, 0x01, 0xc6, 0x92, 0xb5, 0xfa, 0x73, 0x05, 0x4e, 0x24, - 0x0a, 0x14, 0xaa, 0x42, 0xde, 0xb0, 0x3c, 0x1e, 0x56, 0x79, 0xe1, 0xa3, 0x15, 0xcb, 0x13, 0x19, - 0xca, 0x16, 0xd0, 0x79, 0x28, 0x6c, 0xb0, 0xb1, 0x2e, 0xcf, 0x8b, 0xf3, 0x78, 0xaf, 0x5b, 0x1b, - 0x6b, 0xd8, 0xb6, 0x29, 0x30, 0xf8, 0x12, 0xfa, 0x12, 0x14, 0xa9, 0xe7, 0x1a, 0xd6, 0x96, 0xec, - 0x21, 0x7c, 0x8e, 0x69, 0x72, 0x88, 0x40, 0x93, 0xcb, 0xe8, 0x45, 0x18, 0xdd, 0x25, 0x2e, 0x2f, - 0x3e, 0x23, 0x1c, 0x93, 0x77, 0x87, 0xbb, 0x02, 0x24, 0x50, 0x7d, 0x04, 0xf5, 0x97, 0x39, 0x28, - 0x4b, 0x07, 0x9a, 0x9a, 0xd1, 0x46, 0xf7, 0x22, 0x01, 0x25, 0x3c, 0xf1, 0xd2, 0x10, 0x9e, 0x08, - 0x73, 0x7d, 0x40, 0x04, 0x12, 0x28, 0xb3, 0xce, 0xe8, 0xb9, 0xa2, 0xbd, 0x08, 0x07, 0xd4, 0x33, - 0x06, 0x9e, 0x24, 0x6b, 0x9c, 0x94, 0x02, 0xca, 0x21, 0x8c, 0xe2, 0x28, 0x5f, 0x74, 0x3f, 0x70, - 0xf1, 0x30, 0x0d, 0x9e, 0x6d, 0x3e, 0x9b, 0x77, 0x3f, 0x52, 0xa0, 0x92, 0x46, 0x14, 0xcb, 0x47, - 0xe5, 0x50, 0xf9, 0x98, 0x3b, 0xba, 0x7c, 0xfc, 0xad, 0x12, 0xf1, 0x3d, 0xa5, 0xe8, 0x7b, 0x50, - 0x62, 0x03, 0x3e, 0x9f, 0xd7, 0x45, 0xef, 0x79, 0x39, 0xdb, 0x71, 0xe0, 0xf6, 0xc6, 0xf7, 0x89, - 0xee, 0xdd, 0x22, 0x9e, 0x16, 0xf6, 0xb9, 0x10, 0x86, 0x03, 0xae, 0xe8, 0x36, 0x14, 0xa8, 0x43, - 0xf4, 0x61, 0x7a, 0x3c, 0x57, 0xad, 0xe9, 0x10, 0x3d, 0xac, 0xd7, 0xec, 0x1f, 0xe6, 0x8c, 0xd4, - 0x9f, 0x46, 0x9d, 0x41, 0x69, 0xdc, 0x19, 0x69, 0x26, 0x56, 0x8e, 0xce, 0xc4, 0xbf, 0x09, 0x4a, - 0x01, 0xd7, 0xef, 0xa6, 0x41, 0x3d, 0xf4, 0x76, 0x9f, 0x99, 0xeb, 0xd9, 0xcc, 0xcc, 0xa8, 0xb9, - 0x91, 0x83, 0x2c, 0xf3, 0x21, 0x11, 0x13, 0xaf, 0xc2, 0x88, 0xe1, 0x91, 0xb6, 0x9f, 0x5f, 0x17, - 0x33, 0xdb, 0x38, 0x1c, 0x1c, 0x56, 0x18, 0x3d, 0x16, 0x6c, 0xd4, 0x47, 0xf1, 0x1d, 0x30, 0xdb, - 0xa3, 0xef, 0xc0, 0x18, 0x95, 0xc3, 0x8e, 0x5f, 0x25, 0x66, 0xb3, 0xc8, 0x09, 0xc6, 0xd5, 0x29, - 0x29, 0x6a, 0xcc, 0x87, 0x50, 0x1c, 0x72, 0x8c, 0x64, 0x70, 0x6e, 0xa8, 0x0c, 0x4e, 0xf8, 0x3f, - 0x35, 0x83, 0x5d, 0x18, 0xe4, 0x40, 0xf4, 0x6d, 0x28, 0xda, 0x8e, 0xf6, 0x4e, 0x30, 0x78, 0x3d, - 0xe1, 0x64, 0x72, 0x9b, 0xe3, 0x0e, 0x0a, 0x13, 0x60, 0x32, 0xc5, 0x32, 0x96, 0x2c, 0xd5, 0xf7, - 0x15, 0x98, 0x4c, 0x16, 0xb3, 0x21, 0xaa, 0xc5, 0x1a, 0x4c, 0xb4, 0x35, 0x4f, 0xdf, 0x0e, 0x1a, - 0x8a, 0x3c, 0xff, 0xcf, 0xf4, 0xba, 0xb5, 0x89, 0x5b, 0xb1, 0x95, 0xfd, 0x6e, 0x0d, 0x5d, 0xeb, - 0x98, 0xe6, 0x5e, 0xfc, 0x2c, 0x94, 0xa0, 0x57, 0x3f, 0xcc, 0x05, 0x99, 0xd3, 0x77, 0xb8, 0x61, - 0x13, 0xac, 0x1e, 0x8c, 0x73, 0xc9, 0x09, 0x36, 0x1c, 0xf4, 0x70, 0x04, 0x0b, 0xb9, 0x7d, 0x03, - 0xe3, 0xd2, 0xe1, 0x8e, 0x56, 0xcf, 0xd9, 0xf8, 0xf8, 0xd7, 0x02, 0x8c, 0xc7, 0x9a, 0x5c, 0x86, - 0x31, 0x72, 0x01, 0x4e, 0xb4, 0xc2, 0xa8, 0xe4, 0xe7, 0x3e, 0xe1, 0xaf, 0xcf, 0x4a, 0xe4, 0x68, - 0x4a, 0x71, 0xba, 0x24, 0x7e, 0x3c, 0xc7, 0xf2, 0x4f, 0x3d, 0xc7, 0xee, 0xc2, 0x84, 0x16, 0x8c, - 0x35, 0xb7, 0xec, 0x96, 0x7f, 0x30, 0xad, 0x4b, 0xaa, 0x89, 0x85, 0xd8, 0xea, 0x7e, 0xb7, 0xf6, - 0x99, 0xe4, 0x30, 0xc4, 0xe0, 0x38, 0xc1, 0x05, 0x5d, 0x80, 0x11, 0xee, 0x1d, 0x3e, 0x79, 0xe4, - 0xc3, 0x9a, 0xc2, 0x0d, 0x8b, 0xc5, 0x1a, 0xba, 0x0c, 0x65, 0xad, 0xd5, 0x36, 0xac, 0x05, 0x5d, - 0x27, 0xd4, 0x3f, 0x90, 0xf2, 0x71, 0x66, 0x21, 0x04, 0xe3, 0x28, 0x0e, 0xb2, 0x60, 0x62, 0xd3, - 0x70, 0xa9, 0xb7, 0xb0, 0xab, 0x19, 0xa6, 0xb6, 0x61, 0x12, 0x79, 0x3c, 0xcd, 0x34, 0x3f, 0x34, - 0x3b, 0x1b, 0xfe, 0x80, 0x72, 0xda, 0xdf, 0xdf, 0xb5, 0x18, 0x37, 0x9c, 0xe0, 0xce, 0x86, 0x15, - 0xcf, 0x36, 0x89, 0xc8, 0x68, 0x5a, 0x29, 0x65, 0x17, 0xb6, 0x1e, 0x90, 0x85, 0xc3, 0x4a, 0x08, - 0xa3, 0x38, 0xca, 0x57, 0xfd, 0x4b, 0x70, 0x46, 0x48, 0x99, 0x65, 0xd1, 0x45, 0x36, 0x19, 0xf3, - 0x25, 0x19, 0x6f, 0x91, 0xe1, 0x96, 0x83, 0xb1, 0xbf, 0x1e, 0xb9, 0x42, 0xcc, 0x65, 0xba, 0x42, - 0xcc, 0x67, 0xb8, 0x42, 0x2c, 0x1c, 0x78, 0x85, 0x98, 0x70, 0xe4, 0x48, 0x06, 0x47, 0x26, 0x0c, - 0x5b, 0x7c, 0x46, 0x86, 0x7d, 0x1b, 0x26, 0x12, 0xa7, 0xf2, 0x1b, 0x90, 0xd7, 0x89, 0x29, 0x6b, - 0xfb, 0x13, 0x2e, 0x0d, 0xfb, 0xce, 0xf4, 0x8d, 0xd1, 0x5e, 0xb7, 0x96, 0x5f, 0x5c, 0xbe, 0x89, - 0x19, 0x13, 0xf5, 0xd7, 0x79, 0xbf, 0x9a, 0x87, 0xa1, 0xf5, 0x69, 0x59, 0xf8, 0x5f, 0xcb, 0x42, - 0x22, 0x34, 0x46, 0x9f, 0x51, 0x68, 0xfc, 0x3b, 0x18, 0x7b, 0xf9, 0x3d, 0x15, 0x7a, 0x21, 0xd2, - 0x33, 0x1a, 0x65, 0x49, 0x9e, 0x7f, 0x93, 0xec, 0x89, 0x06, 0x72, 0x21, 0xda, 0x40, 0xc6, 0x06, - 0x5f, 0xaf, 0xa0, 0xab, 0x50, 0x24, 0x9b, 0x9b, 0x44, 0xf7, 0x64, 0x52, 0xf9, 0x17, 0xa3, 0xc5, - 0x65, 0x0e, 0xdd, 0xef, 0xd6, 0xa6, 0x22, 0x22, 0x05, 0x10, 0x4b, 0x12, 0xf4, 0x0d, 0x18, 0xf3, - 0x8c, 0x36, 0x59, 0x68, 0xb5, 0x48, 0x8b, 0xdb, 0xbb, 0x3c, 0xff, 0x62, 0xb6, 0x89, 0x70, 0xdd, - 0x68, 0x13, 0x71, 0x58, 0x5c, 0xf7, 0x19, 0xe0, 0x90, 0x97, 0xfa, 0x30, 0x98, 0xdd, 0xb8, 0x58, - 0xdc, 0x31, 0xc9, 0x11, 0x0c, 0xf9, 0xcd, 0xd8, 0x90, 0x7f, 0x39, 0xf3, 0xfd, 0x21, 0x53, 0x2f, - 0x75, 0xd0, 0xff, 0x48, 0xf1, 0x87, 0xb6, 0x00, 0xf7, 0x08, 0x86, 0x69, 0x1c, 0x1f, 0xa6, 0x2f, - 0x0d, 0xb5, 0x97, 0x94, 0x81, 0xfa, 0xe3, 0xfe, 0x9d, 0xf0, 0xa1, 0xba, 0x0d, 0x13, 0xad, 0x58, - 0xaa, 0x0e, 0x73, 0x4e, 0xe1, 0xac, 0x82, 0x1c, 0x47, 0x2c, 0x53, 0xe3, 0x79, 0x8f, 0x13, 0xcc, - 0xd9, 0x39, 0x81, 0x5f, 0xcf, 0x66, 0xbb, 0xe9, 0x8a, 0x5e, 0xf3, 0x06, 0xdb, 0x12, 0xfa, 0x0b, - 0x36, 0xea, 0x4f, 0x72, 0xb1, 0x6d, 0x05, 0x72, 0xbe, 0xd6, 0x5f, 0xf3, 0x44, 0xa6, 0x9d, 0xcc, - 0x54, 0xef, 0xd4, 0x44, 0x4f, 0x83, 0x01, 0xfd, 0xec, 0x6c, 0xac, 0x9f, 0x95, 0x12, 0xbd, 0x4c, - 0x4d, 0xf4, 0x32, 0x18, 0xd0, 0xc7, 0x62, 0x55, 0x75, 0xe4, 0x69, 0x57, 0x55, 0xf5, 0x67, 0x39, - 0xbf, 0x5d, 0x84, 0x45, 0xe9, 0x49, 0x65, 0xe7, 0x0d, 0x28, 0xd9, 0x0e, 0xc3, 0xb5, 0xfd, 0xad, - 0xcf, 0xfa, 0x81, 0x7a, 0x5b, 0xc2, 0xf7, 0xbb, 0xb5, 0x4a, 0x92, 0xad, 0xbf, 0x86, 0x03, 0xea, - 0xb0, 0x80, 0xe5, 0x33, 0x15, 0xb0, 0xc2, 0xf0, 0x05, 0x6c, 0x11, 0xa6, 0xc2, 0x02, 0xdb, 0x24, - 0xba, 0x6d, 0xb5, 0xa8, 0xac, 0xf4, 0xa7, 0x7a, 0xdd, 0xda, 0xd4, 0x7a, 0x72, 0x11, 0xf7, 0xe3, - 0xab, 0xbf, 0x50, 0x60, 0xaa, 0xef, 0x63, 0x1d, 0xba, 0x0a, 0xe3, 0x06, 0x9b, 0xc8, 0x37, 0x35, - 0x9d, 0x44, 0x82, 0xe7, 0x94, 0x54, 0x6f, 0x7c, 0x25, 0xba, 0x88, 0xe3, 0xb8, 0xe8, 0x0c, 0xe4, - 0x0d, 0xc7, 0xbf, 0x18, 0xe5, 0x1d, 0x7c, 0x65, 0x8d, 0x62, 0x06, 0x63, 0xad, 0x78, 0x5b, 0x73, - 0x5b, 0x0f, 0x34, 0x97, 0xd5, 0x4a, 0x97, 0x4d, 0x2f, 0xf9, 0x78, 0x2b, 0x7e, 0x23, 0xbe, 0x8c, - 0x93, 0xf8, 0xea, 0x87, 0x0a, 0x9c, 0x49, 0x3d, 0x04, 0x66, 0xfe, 0x9e, 0xab, 0x01, 0x38, 0x9a, - 0xab, 0xb5, 0x89, 0x3c, 0x38, 0x1d, 0xe2, 0x33, 0x69, 0x50, 0x8e, 0xd7, 0x02, 0x46, 0x38, 0xc2, - 0x54, 0xfd, 0x20, 0x07, 0xe3, 0x58, 0x46, 0xb0, 0xb8, 0xe5, 0x7b, 0xf6, 0x4d, 0xe0, 0x4e, 0xac, - 0x09, 0x3c, 0x61, 0xdc, 0x8a, 0x29, 0x97, 0xd6, 0x02, 0xd0, 0x3d, 0x28, 0x52, 0xfe, 0xad, 0x3c, - 0xdb, 0x9d, 0x75, 0x9c, 0x29, 0x27, 0x0c, 0x9d, 0x20, 0xfe, 0x63, 0xc9, 0x50, 0xed, 0x29, 0x50, - 0x8d, 0xe1, 0xcb, 0x8f, 0x7a, 0x2e, 0x26, 0x9b, 0xc4, 0x25, 0x96, 0x4e, 0xd0, 0x2c, 0x94, 0x34, - 0xc7, 0xb8, 0xee, 0xda, 0x1d, 0x47, 0x7a, 0x34, 0x68, 0x1c, 0x0b, 0x6b, 0x2b, 0x1c, 0x8e, 0x03, - 0x0c, 0x86, 0xed, 0x6b, 0x24, 0xe3, 0x2a, 0x72, 0x33, 0x2a, 0xe0, 0x38, 0xc0, 0x08, 0x26, 0xc7, - 0x42, 0xea, 0xe4, 0xd8, 0x80, 0x7c, 0xc7, 0x68, 0xc9, 0xeb, 0xdc, 0x97, 0xfd, 0x62, 0xf1, 0xd6, - 0xca, 0xd2, 0x7e, 0xb7, 0x76, 0x3e, 0xed, 0x2d, 0x82, 0xb7, 0xe7, 0x10, 0x5a, 0x7f, 0x6b, 0x65, - 0x09, 0x33, 0x62, 0xf5, 0x77, 0x0a, 0x4c, 0xc5, 0x36, 0x79, 0x04, 0x0d, 0x74, 0x2d, 0xde, 0x40, - 0x5f, 0x1a, 0xc2, 0x65, 0x29, 0xed, 0xd3, 0x48, 0x6c, 0x82, 0xf7, 0xce, 0xf5, 0xe4, 0xf7, 0xf9, - 0x8b, 0x99, 0x2f, 0x7d, 0xd3, 0x3f, 0xca, 0xab, 0x7f, 0xc8, 0xc1, 0xc9, 0x01, 0x51, 0x84, 0xee, - 0x03, 0x84, 0xe3, 0xed, 0x00, 0xa3, 0x0d, 0x10, 0xd8, 0xf7, 0x89, 0x62, 0x82, 0x7f, 0x35, 0x0f, - 0xa1, 0x11, 0x8e, 0x88, 0x42, 0xd9, 0x25, 0x94, 0xb8, 0xbb, 0xa4, 0x75, 0x8d, 0x57, 0x7f, 0x66, - 0xba, 0xaf, 0x0e, 0x61, 0xba, 0xbe, 0xe8, 0x0d, 0xa7, 0x62, 0x1c, 0x32, 0xc6, 0x51, 0x29, 0xe8, - 0x7e, 0x68, 0x42, 0xf1, 0x14, 0xe4, 0x4a, 0xa6, 0x1d, 0xc5, 0x5f, 0xb1, 0x1c, 0x60, 0xcc, 0x8f, - 0x15, 0x38, 0x15, 0x53, 0x72, 0x9d, 0xb4, 0x1d, 0x53, 0xf3, 0x8e, 0x62, 0x22, 0xbd, 0x17, 0x2b, - 0x46, 0xaf, 0x0d, 0x61, 0x49, 0x5f, 0xc9, 0xd4, 0xb9, 0xf4, 0xcf, 0x0a, 0x9c, 0x19, 0x48, 0x71, - 0x04, 0xc9, 0xf5, 0xcd, 0x78, 0x72, 0x5d, 0x39, 0xc4, 0xbe, 0xd2, 0x2f, 0x7d, 0xcf, 0xa4, 0xda, - 0xe1, 0xff, 0xb2, 0x7b, 0xa8, 0xbf, 0x52, 0xe0, 0xb8, 0x8f, 0xc9, 0xa6, 0xc3, 0x0c, 0xc7, 0xf5, - 0x79, 0x00, 0xf9, 0x7e, 0xcb, 0xff, 0x30, 0x93, 0x0f, 0xf5, 0xbe, 0x1e, 0xac, 0xe0, 0x08, 0x16, - 0xba, 0x01, 0xc8, 0xd7, 0xb0, 0x69, 0xfa, 0xd7, 0x9b, 0xbc, 0x05, 0xe4, 0x1b, 0xd3, 0x92, 0x16, - 0xe1, 0x3e, 0x0c, 0x3c, 0x80, 0x4a, 0xfd, 0xbd, 0x12, 0xf6, 0x6d, 0x0e, 0x7e, 0x5e, 0x2d, 0xcf, - 0x95, 0x4b, 0xb5, 0x7c, 0xb4, 0xef, 0x70, 0xcc, 0xe7, 0xb6, 0xef, 0x70, 0xed, 0x52, 0x52, 0xe2, - 0x4f, 0x85, 0xc4, 0x2e, 0x78, 0x2a, 0x64, 0x9d, 0xf2, 0x6e, 0x46, 0x5e, 0xed, 0xc5, 0x4f, 0xf7, - 0x07, 0xa8, 0xc3, 0xc2, 0x74, 0xe0, 0xf5, 0xdc, 0x6c, 0xe4, 0x3d, 0x51, 0x62, 0xba, 0xc8, 0xf0, - 0xa6, 0xa8, 0xf0, 0x94, 0xde, 0x14, 0xcd, 0x46, 0xde, 0x14, 0x89, 0x9b, 0xbf, 0x70, 0x22, 0xea, - 0x7f, 0x57, 0x74, 0x3b, 0xec, 0x2f, 0xe2, 0xce, 0xef, 0xf3, 0x59, 0x5a, 0xf4, 0x01, 0x4f, 0xe6, - 0x30, 0x9c, 0x76, 0x88, 0x2b, 0xc0, 0xa1, 0x96, 0x2c, 0x53, 0x47, 0xb9, 0x32, 0xd3, 0xbd, 0x6e, - 0xed, 0xf4, 0xda, 0x40, 0x0c, 0x9c, 0x42, 0x89, 0xb6, 0x61, 0x82, 0x6e, 0x6b, 0x2e, 0x69, 0x05, - 0x8f, 0xc4, 0xc4, 0xc5, 0xef, 0x4c, 0xd6, 0xa7, 0x2f, 0xe1, 0xfd, 0x72, 0x33, 0xc6, 0x07, 0x27, - 0xf8, 0x36, 0x1a, 0x0f, 0x1f, 0x57, 0x8f, 0x3d, 0x7a, 0x5c, 0x3d, 0xf6, 0xc9, 0xe3, 0xea, 0xb1, - 0xf7, 0x7a, 0x55, 0xe5, 0x61, 0xaf, 0xaa, 0x3c, 0xea, 0x55, 0x95, 0x4f, 0x7a, 0x55, 0xe5, 0x1f, - 0xbd, 0xaa, 0xf2, 0xe3, 0x7f, 0x56, 0x8f, 0x7d, 0xeb, 0xec, 0x41, 0x4f, 0x74, 0xff, 0x1b, 0x00, - 0x00, 0xff, 0xff, 0xa5, 0x57, 0x37, 0xad, 0xc1, 0x2b, 0x00, 0x00, -} - -func (m *AllocatedDeviceStatus) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *AllocatedDeviceStatus) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *AllocatedDeviceStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if m.NetworkData != nil { - { - size, err := m.NetworkData.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x32 - } - if m.Data != nil { - { - size, err := m.Data.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x2a - } - if len(m.Conditions) > 0 { - for iNdEx := len(m.Conditions) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Conditions[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x22 - } - } - i -= len(m.Device) - copy(dAtA[i:], m.Device) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Device))) - i-- - dAtA[i] = 0x1a - i -= len(m.Pool) - copy(dAtA[i:], m.Pool) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Pool))) - i-- - dAtA[i] = 0x12 - i -= len(m.Driver) - copy(dAtA[i:], m.Driver) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Driver))) - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *AllocationResult) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *AllocationResult) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *AllocationResult) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if m.NodeSelector != nil { - { - size, err := m.NodeSelector.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a - } - { - size, err := m.Devices.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *BasicDevice) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *BasicDevice) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *BasicDevice) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Taints) > 0 { - for iNdEx := len(m.Taints) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Taints[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x3a - } - } - if m.AllNodes != nil { - i-- - if *m.AllNodes { - dAtA[i] = 1 - } else { - dAtA[i] = 0 - } - i-- - dAtA[i] = 0x30 - } - if m.NodeSelector != nil { - { - size, err := m.NodeSelector.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x2a - } - if m.NodeName != nil { - i -= len(*m.NodeName) - copy(dAtA[i:], *m.NodeName) - i = encodeVarintGenerated(dAtA, i, uint64(len(*m.NodeName))) - i-- - dAtA[i] = 0x22 - } - if len(m.ConsumesCounters) > 0 { - for iNdEx := len(m.ConsumesCounters) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.ConsumesCounters[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a - } - } - if len(m.Capacity) > 0 { - keysForCapacity := make([]string, 0, len(m.Capacity)) - for k := range m.Capacity { - keysForCapacity = append(keysForCapacity, string(k)) - } - github.com_gogo_protobuf_sortkeys.Strings(keysForCapacity) - for iNdEx := len(keysForCapacity) - 1; iNdEx >= 0; iNdEx-- { - v := m.Capacity[QualifiedName(keysForCapacity[iNdEx])] - baseI := i - { - size, err := (&v).MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - i -= len(keysForCapacity[iNdEx]) - copy(dAtA[i:], keysForCapacity[iNdEx]) - i = encodeVarintGenerated(dAtA, i, uint64(len(keysForCapacity[iNdEx]))) - i-- - dAtA[i] = 0xa - i = encodeVarintGenerated(dAtA, i, uint64(baseI-i)) - i-- - dAtA[i] = 0x12 - } - } - if len(m.Attributes) > 0 { - keysForAttributes := make([]string, 0, len(m.Attributes)) - for k := range m.Attributes { - keysForAttributes = append(keysForAttributes, string(k)) - } - github.com_gogo_protobuf_sortkeys.Strings(keysForAttributes) - for iNdEx := len(keysForAttributes) - 1; iNdEx >= 0; iNdEx-- { - v := m.Attributes[QualifiedName(keysForAttributes[iNdEx])] - baseI := i - { - size, err := (&v).MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - i -= len(keysForAttributes[iNdEx]) - copy(dAtA[i:], keysForAttributes[iNdEx]) - i = encodeVarintGenerated(dAtA, i, uint64(len(keysForAttributes[iNdEx]))) - i-- - dAtA[i] = 0xa - i = encodeVarintGenerated(dAtA, i, uint64(baseI-i)) - i-- - dAtA[i] = 0xa - } - } - return len(dAtA) - i, nil -} - -func (m *CELDeviceSelector) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *CELDeviceSelector) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *CELDeviceSelector) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - i -= len(m.Expression) - copy(dAtA[i:], m.Expression) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Expression))) - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *Counter) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *Counter) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *Counter) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size, err := m.Value.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *CounterSet) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *CounterSet) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *CounterSet) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Counters) > 0 { - keysForCounters := make([]string, 0, len(m.Counters)) - for k := range m.Counters { - keysForCounters = append(keysForCounters, string(k)) - } - github.com_gogo_protobuf_sortkeys.Strings(keysForCounters) - for iNdEx := len(keysForCounters) - 1; iNdEx >= 0; iNdEx-- { - v := m.Counters[string(keysForCounters[iNdEx])] - baseI := i - { - size, err := (&v).MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - i -= len(keysForCounters[iNdEx]) - copy(dAtA[i:], keysForCounters[iNdEx]) - i = encodeVarintGenerated(dAtA, i, uint64(len(keysForCounters[iNdEx]))) - i-- - dAtA[i] = 0xa - i = encodeVarintGenerated(dAtA, i, uint64(baseI-i)) - i-- - dAtA[i] = 0x12 - } - } - i -= len(m.Name) - copy(dAtA[i:], m.Name) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name))) - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *Device) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *Device) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *Device) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if m.Basic != nil { - { - size, err := m.Basic.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - } - i -= len(m.Name) - copy(dAtA[i:], m.Name) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name))) - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *DeviceAllocationConfiguration) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceAllocationConfiguration) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceAllocationConfiguration) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size, err := m.DeviceConfiguration.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a - if len(m.Requests) > 0 { - for iNdEx := len(m.Requests) - 1; iNdEx >= 0; iNdEx-- { - i -= len(m.Requests[iNdEx]) - copy(dAtA[i:], m.Requests[iNdEx]) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Requests[iNdEx]))) - i-- - dAtA[i] = 0x12 - } - } - i -= len(m.Source) - copy(dAtA[i:], m.Source) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Source))) - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *DeviceAllocationResult) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceAllocationResult) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceAllocationResult) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Config) > 0 { - for iNdEx := len(m.Config) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Config[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - } - } - if len(m.Results) > 0 { - for iNdEx := len(m.Results) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Results[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - } - } - return len(dAtA) - i, nil -} - -func (m *DeviceAttribute) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceAttribute) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceAttribute) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if m.VersionValue != nil { - i -= len(*m.VersionValue) - copy(dAtA[i:], *m.VersionValue) - i = encodeVarintGenerated(dAtA, i, uint64(len(*m.VersionValue))) - i-- - dAtA[i] = 0x2a - } - if m.StringValue != nil { - i -= len(*m.StringValue) - copy(dAtA[i:], *m.StringValue) - i = encodeVarintGenerated(dAtA, i, uint64(len(*m.StringValue))) - i-- - dAtA[i] = 0x22 - } - if m.BoolValue != nil { - i-- - if *m.BoolValue { - dAtA[i] = 1 - } else { - dAtA[i] = 0 - } - i-- - dAtA[i] = 0x18 - } - if m.IntValue != nil { - i = encodeVarintGenerated(dAtA, i, uint64(*m.IntValue)) - i-- - dAtA[i] = 0x10 - } - return len(dAtA) - i, nil -} - -func (m *DeviceClaim) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceClaim) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceClaim) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Config) > 0 { - for iNdEx := len(m.Config) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Config[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a - } - } - if len(m.Constraints) > 0 { - for iNdEx := len(m.Constraints) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Constraints[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - } - } - if len(m.Requests) > 0 { - for iNdEx := len(m.Requests) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Requests[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - } - } - return len(dAtA) - i, nil -} - -func (m *DeviceClaimConfiguration) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceClaimConfiguration) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceClaimConfiguration) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size, err := m.DeviceConfiguration.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - if len(m.Requests) > 0 { - for iNdEx := len(m.Requests) - 1; iNdEx >= 0; iNdEx-- { - i -= len(m.Requests[iNdEx]) - copy(dAtA[i:], m.Requests[iNdEx]) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Requests[iNdEx]))) - i-- - dAtA[i] = 0xa - } - } - return len(dAtA) - i, nil -} - -func (m *DeviceClass) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceClass) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceClass) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size, err := m.Spec.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - { - size, err := m.ObjectMeta.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *DeviceClassConfiguration) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceClassConfiguration) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceClassConfiguration) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size, err := m.DeviceConfiguration.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *DeviceClassList) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceClassList) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceClassList) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Items) > 0 { - for iNdEx := len(m.Items) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Items[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - } - } - { - size, err := m.ListMeta.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *DeviceClassSpec) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceClassSpec) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceClassSpec) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Config) > 0 { - for iNdEx := len(m.Config) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Config[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - } - } - if len(m.Selectors) > 0 { - for iNdEx := len(m.Selectors) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Selectors[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - } - } - return len(dAtA) - i, nil -} - -func (m *DeviceConfiguration) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceConfiguration) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceConfiguration) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if m.Opaque != nil { - { - size, err := m.Opaque.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - -func (m *DeviceConstraint) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceConstraint) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceConstraint) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if m.MatchAttribute != nil { - i -= len(*m.MatchAttribute) - copy(dAtA[i:], *m.MatchAttribute) - i = encodeVarintGenerated(dAtA, i, uint64(len(*m.MatchAttribute))) - i-- - dAtA[i] = 0x12 - } - if len(m.Requests) > 0 { - for iNdEx := len(m.Requests) - 1; iNdEx >= 0; iNdEx-- { - i -= len(m.Requests[iNdEx]) - copy(dAtA[i:], m.Requests[iNdEx]) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Requests[iNdEx]))) - i-- - dAtA[i] = 0xa - } - } - return len(dAtA) - i, nil -} - -func (m *DeviceCounterConsumption) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceCounterConsumption) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceCounterConsumption) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Counters) > 0 { - keysForCounters := make([]string, 0, len(m.Counters)) - for k := range m.Counters { - keysForCounters = append(keysForCounters, string(k)) - } - github.com_gogo_protobuf_sortkeys.Strings(keysForCounters) - for iNdEx := len(keysForCounters) - 1; iNdEx >= 0; iNdEx-- { - v := m.Counters[string(keysForCounters[iNdEx])] - baseI := i - { - size, err := (&v).MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - i -= len(keysForCounters[iNdEx]) - copy(dAtA[i:], keysForCounters[iNdEx]) - i = encodeVarintGenerated(dAtA, i, uint64(len(keysForCounters[iNdEx]))) - i-- - dAtA[i] = 0xa - i = encodeVarintGenerated(dAtA, i, uint64(baseI-i)) - i-- - dAtA[i] = 0x12 - } - } - i -= len(m.CounterSet) - copy(dAtA[i:], m.CounterSet) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.CounterSet))) - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *DeviceRequest) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceRequest) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Tolerations) > 0 { - for iNdEx := len(m.Tolerations) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Tolerations[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x42 - } - } - if len(m.FirstAvailable) > 0 { - for iNdEx := len(m.FirstAvailable) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.FirstAvailable[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x3a - } - } - if m.AdminAccess != nil { - i-- - if *m.AdminAccess { - dAtA[i] = 1 - } else { - dAtA[i] = 0 - } - i-- - dAtA[i] = 0x30 - } - i = encodeVarintGenerated(dAtA, i, uint64(m.Count)) - i-- - dAtA[i] = 0x28 - i -= len(m.AllocationMode) - copy(dAtA[i:], m.AllocationMode) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.AllocationMode))) - i-- - dAtA[i] = 0x22 - if len(m.Selectors) > 0 { - for iNdEx := len(m.Selectors) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Selectors[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a - } - } - i -= len(m.DeviceClassName) - copy(dAtA[i:], m.DeviceClassName) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.DeviceClassName))) - i-- - dAtA[i] = 0x12 - i -= len(m.Name) - copy(dAtA[i:], m.Name) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name))) - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *DeviceRequestAllocationResult) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceRequestAllocationResult) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceRequestAllocationResult) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Tolerations) > 0 { - for iNdEx := len(m.Tolerations) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Tolerations[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x32 - } - } - if m.AdminAccess != nil { - i-- - if *m.AdminAccess { - dAtA[i] = 1 - } else { - dAtA[i] = 0 - } - i-- - dAtA[i] = 0x28 - } - i -= len(m.Device) - copy(dAtA[i:], m.Device) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Device))) - i-- - dAtA[i] = 0x22 - i -= len(m.Pool) - copy(dAtA[i:], m.Pool) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Pool))) - i-- - dAtA[i] = 0x1a - i -= len(m.Driver) - copy(dAtA[i:], m.Driver) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Driver))) - i-- - dAtA[i] = 0x12 - i -= len(m.Request) - copy(dAtA[i:], m.Request) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Request))) - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *DeviceSelector) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceSelector) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceSelector) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if m.CEL != nil { - { - size, err := m.CEL.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - -func (m *DeviceSubRequest) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceSubRequest) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceSubRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Tolerations) > 0 { - for iNdEx := len(m.Tolerations) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Tolerations[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x3a - } - } - i = encodeVarintGenerated(dAtA, i, uint64(m.Count)) - i-- - dAtA[i] = 0x28 - i -= len(m.AllocationMode) - copy(dAtA[i:], m.AllocationMode) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.AllocationMode))) - i-- - dAtA[i] = 0x22 - if len(m.Selectors) > 0 { - for iNdEx := len(m.Selectors) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Selectors[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a - } - } - i -= len(m.DeviceClassName) - copy(dAtA[i:], m.DeviceClassName) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.DeviceClassName))) - i-- - dAtA[i] = 0x12 - i -= len(m.Name) - copy(dAtA[i:], m.Name) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name))) - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *DeviceTaint) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceTaint) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceTaint) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if m.TimeAdded != nil { - { - size, err := m.TimeAdded.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x22 - } - i -= len(m.Effect) - copy(dAtA[i:], m.Effect) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Effect))) - i-- - dAtA[i] = 0x1a - i -= len(m.Value) - copy(dAtA[i:], m.Value) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Value))) - i-- - dAtA[i] = 0x12 - i -= len(m.Key) - copy(dAtA[i:], m.Key) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Key))) - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *DeviceTaintRule) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceTaintRule) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceTaintRule) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size, err := m.Spec.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - { - size, err := m.ObjectMeta.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *DeviceTaintRuleList) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceTaintRuleList) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceTaintRuleList) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Items) > 0 { - for iNdEx := len(m.Items) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Items[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - } - } - { - size, err := m.ListMeta.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *DeviceTaintRuleSpec) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceTaintRuleSpec) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceTaintRuleSpec) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size, err := m.Taint.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - if m.DeviceSelector != nil { - { - size, err := m.DeviceSelector.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - -func (m *DeviceTaintSelector) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceTaintSelector) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceTaintSelector) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Selectors) > 0 { - for iNdEx := len(m.Selectors) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Selectors[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x2a - } - } - if m.Device != nil { - i -= len(*m.Device) - copy(dAtA[i:], *m.Device) - i = encodeVarintGenerated(dAtA, i, uint64(len(*m.Device))) - i-- - dAtA[i] = 0x22 - } - if m.Pool != nil { - i -= len(*m.Pool) - copy(dAtA[i:], *m.Pool) - i = encodeVarintGenerated(dAtA, i, uint64(len(*m.Pool))) - i-- - dAtA[i] = 0x1a - } - if m.Driver != nil { - i -= len(*m.Driver) - copy(dAtA[i:], *m.Driver) - i = encodeVarintGenerated(dAtA, i, uint64(len(*m.Driver))) - i-- - dAtA[i] = 0x12 - } - if m.DeviceClassName != nil { - i -= len(*m.DeviceClassName) - copy(dAtA[i:], *m.DeviceClassName) - i = encodeVarintGenerated(dAtA, i, uint64(len(*m.DeviceClassName))) - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - -func (m *DeviceToleration) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DeviceToleration) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DeviceToleration) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if m.TolerationSeconds != nil { - i = encodeVarintGenerated(dAtA, i, uint64(*m.TolerationSeconds)) - i-- - dAtA[i] = 0x28 - } - i -= len(m.Effect) - copy(dAtA[i:], m.Effect) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Effect))) - i-- - dAtA[i] = 0x22 - i -= len(m.Value) - copy(dAtA[i:], m.Value) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Value))) - i-- - dAtA[i] = 0x1a - i -= len(m.Operator) - copy(dAtA[i:], m.Operator) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Operator))) - i-- - dAtA[i] = 0x12 - i -= len(m.Key) - copy(dAtA[i:], m.Key) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Key))) - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *NetworkDeviceData) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *NetworkDeviceData) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *NetworkDeviceData) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - i -= len(m.HardwareAddress) - copy(dAtA[i:], m.HardwareAddress) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.HardwareAddress))) - i-- - dAtA[i] = 0x1a - if len(m.IPs) > 0 { - for iNdEx := len(m.IPs) - 1; iNdEx >= 0; iNdEx-- { - i -= len(m.IPs[iNdEx]) - copy(dAtA[i:], m.IPs[iNdEx]) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.IPs[iNdEx]))) - i-- - dAtA[i] = 0x12 - } - } - i -= len(m.InterfaceName) - copy(dAtA[i:], m.InterfaceName) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.InterfaceName))) - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *OpaqueDeviceConfiguration) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *OpaqueDeviceConfiguration) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *OpaqueDeviceConfiguration) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size, err := m.Parameters.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - i -= len(m.Driver) - copy(dAtA[i:], m.Driver) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Driver))) - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *ResourceClaim) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *ResourceClaim) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *ResourceClaim) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size, err := m.Status.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a - { - size, err := m.Spec.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - { - size, err := m.ObjectMeta.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *ResourceClaimConsumerReference) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *ResourceClaimConsumerReference) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *ResourceClaimConsumerReference) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - i -= len(m.UID) - copy(dAtA[i:], m.UID) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.UID))) - i-- - dAtA[i] = 0x2a - i -= len(m.Name) - copy(dAtA[i:], m.Name) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name))) - i-- - dAtA[i] = 0x22 - i -= len(m.Resource) - copy(dAtA[i:], m.Resource) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Resource))) - i-- - dAtA[i] = 0x1a - i -= len(m.APIGroup) - copy(dAtA[i:], m.APIGroup) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.APIGroup))) - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *ResourceClaimList) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *ResourceClaimList) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *ResourceClaimList) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Items) > 0 { - for iNdEx := len(m.Items) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Items[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - } - } - { - size, err := m.ListMeta.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *ResourceClaimSpec) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *ResourceClaimSpec) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *ResourceClaimSpec) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size, err := m.Devices.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *ResourceClaimStatus) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *ResourceClaimStatus) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *ResourceClaimStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Devices) > 0 { - for iNdEx := len(m.Devices) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Devices[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x22 - } - } - if len(m.ReservedFor) > 0 { - for iNdEx := len(m.ReservedFor) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.ReservedFor[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - } - } - if m.Allocation != nil { - { - size, err := m.Allocation.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - -func (m *ResourceClaimTemplate) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *ResourceClaimTemplate) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *ResourceClaimTemplate) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size, err := m.Spec.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - { - size, err := m.ObjectMeta.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *ResourceClaimTemplateList) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *ResourceClaimTemplateList) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *ResourceClaimTemplateList) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Items) > 0 { - for iNdEx := len(m.Items) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Items[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - } - } - { - size, err := m.ListMeta.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *ResourceClaimTemplateSpec) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *ResourceClaimTemplateSpec) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *ResourceClaimTemplateSpec) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size, err := m.Spec.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - { - size, err := m.ObjectMeta.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *ResourcePool) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *ResourcePool) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *ResourcePool) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - i = encodeVarintGenerated(dAtA, i, uint64(m.ResourceSliceCount)) - i-- - dAtA[i] = 0x18 - i = encodeVarintGenerated(dAtA, i, uint64(m.Generation)) - i-- - dAtA[i] = 0x10 - i -= len(m.Name) - copy(dAtA[i:], m.Name) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name))) - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *ResourceSlice) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *ResourceSlice) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *ResourceSlice) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size, err := m.Spec.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - { - size, err := m.ObjectMeta.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *ResourceSliceList) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *ResourceSliceList) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *ResourceSliceList) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Items) > 0 { - for iNdEx := len(m.Items) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Items[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - } - } - { - size, err := m.ListMeta.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *ResourceSliceSpec) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *ResourceSliceSpec) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *ResourceSliceSpec) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.SharedCounters) > 0 { - for iNdEx := len(m.SharedCounters) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.SharedCounters[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x42 - } - } - if m.PerDeviceNodeSelection != nil { - i-- - if *m.PerDeviceNodeSelection { - dAtA[i] = 1 - } else { - dAtA[i] = 0 - } - i-- - dAtA[i] = 0x38 - } - if len(m.Devices) > 0 { - for iNdEx := len(m.Devices) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Devices[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x32 - } - } - i-- - if m.AllNodes { - dAtA[i] = 1 - } else { - dAtA[i] = 0 - } - i-- - dAtA[i] = 0x28 - if m.NodeSelector != nil { - { - size, err := m.NodeSelector.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x22 - } - i -= len(m.NodeName) - copy(dAtA[i:], m.NodeName) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.NodeName))) - i-- - dAtA[i] = 0x1a - { - size, err := m.Pool.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - i -= len(m.Driver) - copy(dAtA[i:], m.Driver) - i = encodeVarintGenerated(dAtA, i, uint64(len(m.Driver))) - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func encodeVarintGenerated(dAtA []byte, offset int, v uint64) int { - offset -= sovGenerated(v) - base := offset - for v >= 1<<7 { - dAtA[offset] = uint8(v&0x7f | 0x80) - v >>= 7 - offset++ - } - dAtA[offset] = uint8(v) - return base -} -func (m *AllocatedDeviceStatus) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Driver) - n += 1 + l + sovGenerated(uint64(l)) - l = len(m.Pool) - n += 1 + l + sovGenerated(uint64(l)) - l = len(m.Device) - n += 1 + l + sovGenerated(uint64(l)) - if len(m.Conditions) > 0 { - for _, e := range m.Conditions { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - if m.Data != nil { - l = m.Data.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - if m.NetworkData != nil { - l = m.NetworkData.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - return n -} - -func (m *AllocationResult) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.Devices.Size() - n += 1 + l + sovGenerated(uint64(l)) - if m.NodeSelector != nil { - l = m.NodeSelector.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - return n -} - -func (m *BasicDevice) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if len(m.Attributes) > 0 { - for k, v := range m.Attributes { - _ = k - _ = v - l = v.Size() - mapEntrySize := 1 + len(k) + sovGenerated(uint64(len(k))) + 1 + l + sovGenerated(uint64(l)) - n += mapEntrySize + 1 + sovGenerated(uint64(mapEntrySize)) - } - } - if len(m.Capacity) > 0 { - for k, v := range m.Capacity { - _ = k - _ = v - l = v.Size() - mapEntrySize := 1 + len(k) + sovGenerated(uint64(len(k))) + 1 + l + sovGenerated(uint64(l)) - n += mapEntrySize + 1 + sovGenerated(uint64(mapEntrySize)) - } - } - if len(m.ConsumesCounters) > 0 { - for _, e := range m.ConsumesCounters { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - if m.NodeName != nil { - l = len(*m.NodeName) - n += 1 + l + sovGenerated(uint64(l)) - } - if m.NodeSelector != nil { - l = m.NodeSelector.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - if m.AllNodes != nil { - n += 2 - } - if len(m.Taints) > 0 { - for _, e := range m.Taints { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - return n -} - -func (m *CELDeviceSelector) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Expression) - n += 1 + l + sovGenerated(uint64(l)) - return n -} - -func (m *Counter) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.Value.Size() - n += 1 + l + sovGenerated(uint64(l)) - return n -} - -func (m *CounterSet) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Name) - n += 1 + l + sovGenerated(uint64(l)) - if len(m.Counters) > 0 { - for k, v := range m.Counters { - _ = k - _ = v - l = v.Size() - mapEntrySize := 1 + len(k) + sovGenerated(uint64(len(k))) + 1 + l + sovGenerated(uint64(l)) - n += mapEntrySize + 1 + sovGenerated(uint64(mapEntrySize)) - } - } - return n -} - -func (m *Device) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Name) - n += 1 + l + sovGenerated(uint64(l)) - if m.Basic != nil { - l = m.Basic.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - return n -} - -func (m *DeviceAllocationConfiguration) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Source) - n += 1 + l + sovGenerated(uint64(l)) - if len(m.Requests) > 0 { - for _, s := range m.Requests { - l = len(s) - n += 1 + l + sovGenerated(uint64(l)) - } - } - l = m.DeviceConfiguration.Size() - n += 1 + l + sovGenerated(uint64(l)) - return n -} - -func (m *DeviceAllocationResult) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if len(m.Results) > 0 { - for _, e := range m.Results { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - if len(m.Config) > 0 { - for _, e := range m.Config { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - return n -} - -func (m *DeviceAttribute) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.IntValue != nil { - n += 1 + sovGenerated(uint64(*m.IntValue)) - } - if m.BoolValue != nil { - n += 2 - } - if m.StringValue != nil { - l = len(*m.StringValue) - n += 1 + l + sovGenerated(uint64(l)) - } - if m.VersionValue != nil { - l = len(*m.VersionValue) - n += 1 + l + sovGenerated(uint64(l)) - } - return n -} - -func (m *DeviceClaim) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if len(m.Requests) > 0 { - for _, e := range m.Requests { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - if len(m.Constraints) > 0 { - for _, e := range m.Constraints { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - if len(m.Config) > 0 { - for _, e := range m.Config { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - return n -} - -func (m *DeviceClaimConfiguration) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if len(m.Requests) > 0 { - for _, s := range m.Requests { - l = len(s) - n += 1 + l + sovGenerated(uint64(l)) - } - } - l = m.DeviceConfiguration.Size() - n += 1 + l + sovGenerated(uint64(l)) - return n -} - -func (m *DeviceClass) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.ObjectMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) - l = m.Spec.Size() - n += 1 + l + sovGenerated(uint64(l)) - return n -} - -func (m *DeviceClassConfiguration) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.DeviceConfiguration.Size() - n += 1 + l + sovGenerated(uint64(l)) - return n -} - -func (m *DeviceClassList) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.ListMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) - if len(m.Items) > 0 { - for _, e := range m.Items { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - return n -} - -func (m *DeviceClassSpec) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if len(m.Selectors) > 0 { - for _, e := range m.Selectors { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - if len(m.Config) > 0 { - for _, e := range m.Config { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - return n -} - -func (m *DeviceConfiguration) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.Opaque != nil { - l = m.Opaque.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - return n -} - -func (m *DeviceConstraint) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if len(m.Requests) > 0 { - for _, s := range m.Requests { - l = len(s) - n += 1 + l + sovGenerated(uint64(l)) - } - } - if m.MatchAttribute != nil { - l = len(*m.MatchAttribute) - n += 1 + l + sovGenerated(uint64(l)) - } - return n -} - -func (m *DeviceCounterConsumption) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.CounterSet) - n += 1 + l + sovGenerated(uint64(l)) - if len(m.Counters) > 0 { - for k, v := range m.Counters { - _ = k - _ = v - l = v.Size() - mapEntrySize := 1 + len(k) + sovGenerated(uint64(len(k))) + 1 + l + sovGenerated(uint64(l)) - n += mapEntrySize + 1 + sovGenerated(uint64(mapEntrySize)) - } - } - return n -} - -func (m *DeviceRequest) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Name) - n += 1 + l + sovGenerated(uint64(l)) - l = len(m.DeviceClassName) - n += 1 + l + sovGenerated(uint64(l)) - if len(m.Selectors) > 0 { - for _, e := range m.Selectors { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - l = len(m.AllocationMode) - n += 1 + l + sovGenerated(uint64(l)) - n += 1 + sovGenerated(uint64(m.Count)) - if m.AdminAccess != nil { - n += 2 - } - if len(m.FirstAvailable) > 0 { - for _, e := range m.FirstAvailable { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - if len(m.Tolerations) > 0 { - for _, e := range m.Tolerations { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - return n -} - -func (m *DeviceRequestAllocationResult) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Request) - n += 1 + l + sovGenerated(uint64(l)) - l = len(m.Driver) - n += 1 + l + sovGenerated(uint64(l)) - l = len(m.Pool) - n += 1 + l + sovGenerated(uint64(l)) - l = len(m.Device) - n += 1 + l + sovGenerated(uint64(l)) - if m.AdminAccess != nil { - n += 2 - } - if len(m.Tolerations) > 0 { - for _, e := range m.Tolerations { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - return n -} - -func (m *DeviceSelector) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.CEL != nil { - l = m.CEL.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - return n -} - -func (m *DeviceSubRequest) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Name) - n += 1 + l + sovGenerated(uint64(l)) - l = len(m.DeviceClassName) - n += 1 + l + sovGenerated(uint64(l)) - if len(m.Selectors) > 0 { - for _, e := range m.Selectors { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - l = len(m.AllocationMode) - n += 1 + l + sovGenerated(uint64(l)) - n += 1 + sovGenerated(uint64(m.Count)) - if len(m.Tolerations) > 0 { - for _, e := range m.Tolerations { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - return n -} - -func (m *DeviceTaint) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Key) - n += 1 + l + sovGenerated(uint64(l)) - l = len(m.Value) - n += 1 + l + sovGenerated(uint64(l)) - l = len(m.Effect) - n += 1 + l + sovGenerated(uint64(l)) - if m.TimeAdded != nil { - l = m.TimeAdded.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - return n -} - -func (m *DeviceTaintRule) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.ObjectMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) - l = m.Spec.Size() - n += 1 + l + sovGenerated(uint64(l)) - return n -} - -func (m *DeviceTaintRuleList) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.ListMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) - if len(m.Items) > 0 { - for _, e := range m.Items { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - return n -} - -func (m *DeviceTaintRuleSpec) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.DeviceSelector != nil { - l = m.DeviceSelector.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - l = m.Taint.Size() - n += 1 + l + sovGenerated(uint64(l)) - return n -} - -func (m *DeviceTaintSelector) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.DeviceClassName != nil { - l = len(*m.DeviceClassName) - n += 1 + l + sovGenerated(uint64(l)) - } - if m.Driver != nil { - l = len(*m.Driver) - n += 1 + l + sovGenerated(uint64(l)) - } - if m.Pool != nil { - l = len(*m.Pool) - n += 1 + l + sovGenerated(uint64(l)) - } - if m.Device != nil { - l = len(*m.Device) - n += 1 + l + sovGenerated(uint64(l)) - } - if len(m.Selectors) > 0 { - for _, e := range m.Selectors { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - return n -} - -func (m *DeviceToleration) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Key) - n += 1 + l + sovGenerated(uint64(l)) - l = len(m.Operator) - n += 1 + l + sovGenerated(uint64(l)) - l = len(m.Value) - n += 1 + l + sovGenerated(uint64(l)) - l = len(m.Effect) - n += 1 + l + sovGenerated(uint64(l)) - if m.TolerationSeconds != nil { - n += 1 + sovGenerated(uint64(*m.TolerationSeconds)) - } - return n -} - -func (m *NetworkDeviceData) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.InterfaceName) - n += 1 + l + sovGenerated(uint64(l)) - if len(m.IPs) > 0 { - for _, s := range m.IPs { - l = len(s) - n += 1 + l + sovGenerated(uint64(l)) - } - } - l = len(m.HardwareAddress) - n += 1 + l + sovGenerated(uint64(l)) - return n -} - -func (m *OpaqueDeviceConfiguration) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Driver) - n += 1 + l + sovGenerated(uint64(l)) - l = m.Parameters.Size() - n += 1 + l + sovGenerated(uint64(l)) - return n -} - -func (m *ResourceClaim) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.ObjectMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) - l = m.Spec.Size() - n += 1 + l + sovGenerated(uint64(l)) - l = m.Status.Size() - n += 1 + l + sovGenerated(uint64(l)) - return n -} - -func (m *ResourceClaimConsumerReference) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.APIGroup) - n += 1 + l + sovGenerated(uint64(l)) - l = len(m.Resource) - n += 1 + l + sovGenerated(uint64(l)) - l = len(m.Name) - n += 1 + l + sovGenerated(uint64(l)) - l = len(m.UID) - n += 1 + l + sovGenerated(uint64(l)) - return n -} - -func (m *ResourceClaimList) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.ListMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) - if len(m.Items) > 0 { - for _, e := range m.Items { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - return n -} - -func (m *ResourceClaimSpec) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.Devices.Size() - n += 1 + l + sovGenerated(uint64(l)) - return n -} - -func (m *ResourceClaimStatus) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.Allocation != nil { - l = m.Allocation.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - if len(m.ReservedFor) > 0 { - for _, e := range m.ReservedFor { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - if len(m.Devices) > 0 { - for _, e := range m.Devices { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - return n -} - -func (m *ResourceClaimTemplate) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.ObjectMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) - l = m.Spec.Size() - n += 1 + l + sovGenerated(uint64(l)) - return n -} - -func (m *ResourceClaimTemplateList) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.ListMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) - if len(m.Items) > 0 { - for _, e := range m.Items { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - return n -} - -func (m *ResourceClaimTemplateSpec) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.ObjectMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) - l = m.Spec.Size() - n += 1 + l + sovGenerated(uint64(l)) - return n -} - -func (m *ResourcePool) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Name) - n += 1 + l + sovGenerated(uint64(l)) - n += 1 + sovGenerated(uint64(m.Generation)) - n += 1 + sovGenerated(uint64(m.ResourceSliceCount)) - return n -} - -func (m *ResourceSlice) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.ObjectMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) - l = m.Spec.Size() - n += 1 + l + sovGenerated(uint64(l)) - return n -} - -func (m *ResourceSliceList) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.ListMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) - if len(m.Items) > 0 { - for _, e := range m.Items { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - return n -} - -func (m *ResourceSliceSpec) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Driver) - n += 1 + l + sovGenerated(uint64(l)) - l = m.Pool.Size() - n += 1 + l + sovGenerated(uint64(l)) - l = len(m.NodeName) - n += 1 + l + sovGenerated(uint64(l)) - if m.NodeSelector != nil { - l = m.NodeSelector.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - n += 2 - if len(m.Devices) > 0 { - for _, e := range m.Devices { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - if m.PerDeviceNodeSelection != nil { - n += 2 - } - if len(m.SharedCounters) > 0 { - for _, e := range m.SharedCounters { - l = e.Size() - n += 1 + l + sovGenerated(uint64(l)) - } - } - return n -} - -func sovGenerated(x uint64) (n int) { - return (math_bits.Len64(x|1) + 6) / 7 -} -func sozGenerated(x uint64) (n int) { - return sovGenerated(uint64((x << 1) ^ uint64((int64(x) >> 63)))) -} -func (this *AllocatedDeviceStatus) String() string { - if this == nil { - return "nil" - } - repeatedStringForConditions := "[]Condition{" - for _, f := range this.Conditions { - repeatedStringForConditions += fmt.Sprintf("%v", f) + "," - } - repeatedStringForConditions += "}" - s := strings.Join([]string{`&AllocatedDeviceStatus{`, - `Driver:` + fmt.Sprintf("%v", this.Driver) + `,`, - `Pool:` + fmt.Sprintf("%v", this.Pool) + `,`, - `Device:` + fmt.Sprintf("%v", this.Device) + `,`, - `Conditions:` + repeatedStringForConditions + `,`, - `Data:` + strings.Replace(fmt.Sprintf("%v", this.Data), "RawExtension", "runtime.RawExtension", 1) + `,`, - `NetworkData:` + strings.Replace(this.NetworkData.String(), "NetworkDeviceData", "NetworkDeviceData", 1) + `,`, - `}`, - }, "") - return s -} -func (this *AllocationResult) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&AllocationResult{`, - `Devices:` + strings.Replace(strings.Replace(this.Devices.String(), "DeviceAllocationResult", "DeviceAllocationResult", 1), `&`, ``, 1) + `,`, - `NodeSelector:` + strings.Replace(fmt.Sprintf("%v", this.NodeSelector), "NodeSelector", "v11.NodeSelector", 1) + `,`, - `}`, - }, "") - return s -} -func (this *BasicDevice) String() string { - if this == nil { - return "nil" - } - repeatedStringForConsumesCounters := "[]DeviceCounterConsumption{" - for _, f := range this.ConsumesCounters { - repeatedStringForConsumesCounters += strings.Replace(strings.Replace(f.String(), "DeviceCounterConsumption", "DeviceCounterConsumption", 1), `&`, ``, 1) + "," - } - repeatedStringForConsumesCounters += "}" - repeatedStringForTaints := "[]DeviceTaint{" - for _, f := range this.Taints { - repeatedStringForTaints += strings.Replace(strings.Replace(f.String(), "DeviceTaint", "DeviceTaint", 1), `&`, ``, 1) + "," - } - repeatedStringForTaints += "}" - keysForAttributes := make([]string, 0, len(this.Attributes)) - for k := range this.Attributes { - keysForAttributes = append(keysForAttributes, string(k)) - } - github.com_gogo_protobuf_sortkeys.Strings(keysForAttributes) - mapStringForAttributes := "map[QualifiedName]DeviceAttribute{" - for _, k := range keysForAttributes { - mapStringForAttributes += fmt.Sprintf("%v: %v,", k, this.Attributes[QualifiedName(k)]) - } - mapStringForAttributes += "}" - keysForCapacity := make([]string, 0, len(this.Capacity)) - for k := range this.Capacity { - keysForCapacity = append(keysForCapacity, string(k)) - } - github.com_gogo_protobuf_sortkeys.Strings(keysForCapacity) - mapStringForCapacity := "map[QualifiedName]resource.Quantity{" - for _, k := range keysForCapacity { - mapStringForCapacity += fmt.Sprintf("%v: %v,", k, this.Capacity[QualifiedName(k)]) - } - mapStringForCapacity += "}" - s := strings.Join([]string{`&BasicDevice{`, - `Attributes:` + mapStringForAttributes + `,`, - `Capacity:` + mapStringForCapacity + `,`, - `ConsumesCounters:` + repeatedStringForConsumesCounters + `,`, - `NodeName:` + valueToStringGenerated(this.NodeName) + `,`, - `NodeSelector:` + strings.Replace(fmt.Sprintf("%v", this.NodeSelector), "NodeSelector", "v11.NodeSelector", 1) + `,`, - `AllNodes:` + valueToStringGenerated(this.AllNodes) + `,`, - `Taints:` + repeatedStringForTaints + `,`, - `}`, - }, "") - return s -} -func (this *CELDeviceSelector) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&CELDeviceSelector{`, - `Expression:` + fmt.Sprintf("%v", this.Expression) + `,`, - `}`, - }, "") - return s -} -func (this *Counter) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&Counter{`, - `Value:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Value), "Quantity", "resource.Quantity", 1), `&`, ``, 1) + `,`, - `}`, - }, "") - return s -} -func (this *CounterSet) String() string { - if this == nil { - return "nil" - } - keysForCounters := make([]string, 0, len(this.Counters)) - for k := range this.Counters { - keysForCounters = append(keysForCounters, k) - } - github.com_gogo_protobuf_sortkeys.Strings(keysForCounters) - mapStringForCounters := "map[string]Counter{" - for _, k := range keysForCounters { - mapStringForCounters += fmt.Sprintf("%v: %v,", k, this.Counters[k]) - } - mapStringForCounters += "}" - s := strings.Join([]string{`&CounterSet{`, - `Name:` + fmt.Sprintf("%v", this.Name) + `,`, - `Counters:` + mapStringForCounters + `,`, - `}`, - }, "") - return s -} -func (this *Device) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&Device{`, - `Name:` + fmt.Sprintf("%v", this.Name) + `,`, - `Basic:` + strings.Replace(this.Basic.String(), "BasicDevice", "BasicDevice", 1) + `,`, - `}`, - }, "") - return s -} -func (this *DeviceAllocationConfiguration) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&DeviceAllocationConfiguration{`, - `Source:` + fmt.Sprintf("%v", this.Source) + `,`, - `Requests:` + fmt.Sprintf("%v", this.Requests) + `,`, - `DeviceConfiguration:` + strings.Replace(strings.Replace(this.DeviceConfiguration.String(), "DeviceConfiguration", "DeviceConfiguration", 1), `&`, ``, 1) + `,`, - `}`, - }, "") - return s -} -func (this *DeviceAllocationResult) String() string { - if this == nil { - return "nil" - } - repeatedStringForResults := "[]DeviceRequestAllocationResult{" - for _, f := range this.Results { - repeatedStringForResults += strings.Replace(strings.Replace(f.String(), "DeviceRequestAllocationResult", "DeviceRequestAllocationResult", 1), `&`, ``, 1) + "," - } - repeatedStringForResults += "}" - repeatedStringForConfig := "[]DeviceAllocationConfiguration{" - for _, f := range this.Config { - repeatedStringForConfig += strings.Replace(strings.Replace(f.String(), "DeviceAllocationConfiguration", "DeviceAllocationConfiguration", 1), `&`, ``, 1) + "," - } - repeatedStringForConfig += "}" - s := strings.Join([]string{`&DeviceAllocationResult{`, - `Results:` + repeatedStringForResults + `,`, - `Config:` + repeatedStringForConfig + `,`, - `}`, - }, "") - return s -} -func (this *DeviceAttribute) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&DeviceAttribute{`, - `IntValue:` + valueToStringGenerated(this.IntValue) + `,`, - `BoolValue:` + valueToStringGenerated(this.BoolValue) + `,`, - `StringValue:` + valueToStringGenerated(this.StringValue) + `,`, - `VersionValue:` + valueToStringGenerated(this.VersionValue) + `,`, - `}`, - }, "") - return s -} -func (this *DeviceClaim) String() string { - if this == nil { - return "nil" - } - repeatedStringForRequests := "[]DeviceRequest{" - for _, f := range this.Requests { - repeatedStringForRequests += strings.Replace(strings.Replace(f.String(), "DeviceRequest", "DeviceRequest", 1), `&`, ``, 1) + "," - } - repeatedStringForRequests += "}" - repeatedStringForConstraints := "[]DeviceConstraint{" - for _, f := range this.Constraints { - repeatedStringForConstraints += strings.Replace(strings.Replace(f.String(), "DeviceConstraint", "DeviceConstraint", 1), `&`, ``, 1) + "," - } - repeatedStringForConstraints += "}" - repeatedStringForConfig := "[]DeviceClaimConfiguration{" - for _, f := range this.Config { - repeatedStringForConfig += strings.Replace(strings.Replace(f.String(), "DeviceClaimConfiguration", "DeviceClaimConfiguration", 1), `&`, ``, 1) + "," - } - repeatedStringForConfig += "}" - s := strings.Join([]string{`&DeviceClaim{`, - `Requests:` + repeatedStringForRequests + `,`, - `Constraints:` + repeatedStringForConstraints + `,`, - `Config:` + repeatedStringForConfig + `,`, - `}`, - }, "") - return s -} -func (this *DeviceClaimConfiguration) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&DeviceClaimConfiguration{`, - `Requests:` + fmt.Sprintf("%v", this.Requests) + `,`, - `DeviceConfiguration:` + strings.Replace(strings.Replace(this.DeviceConfiguration.String(), "DeviceConfiguration", "DeviceConfiguration", 1), `&`, ``, 1) + `,`, - `}`, - }, "") - return s -} -func (this *DeviceClass) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&DeviceClass{`, - `ObjectMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ObjectMeta), "ObjectMeta", "v1.ObjectMeta", 1), `&`, ``, 1) + `,`, - `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "DeviceClassSpec", "DeviceClassSpec", 1), `&`, ``, 1) + `,`, - `}`, - }, "") - return s -} -func (this *DeviceClassConfiguration) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&DeviceClassConfiguration{`, - `DeviceConfiguration:` + strings.Replace(strings.Replace(this.DeviceConfiguration.String(), "DeviceConfiguration", "DeviceConfiguration", 1), `&`, ``, 1) + `,`, - `}`, - }, "") - return s -} -func (this *DeviceClassList) String() string { - if this == nil { - return "nil" - } - repeatedStringForItems := "[]DeviceClass{" - for _, f := range this.Items { - repeatedStringForItems += strings.Replace(strings.Replace(f.String(), "DeviceClass", "DeviceClass", 1), `&`, ``, 1) + "," - } - repeatedStringForItems += "}" - s := strings.Join([]string{`&DeviceClassList{`, - `ListMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ListMeta), "ListMeta", "v1.ListMeta", 1), `&`, ``, 1) + `,`, - `Items:` + repeatedStringForItems + `,`, - `}`, - }, "") - return s -} -func (this *DeviceClassSpec) String() string { - if this == nil { - return "nil" - } - repeatedStringForSelectors := "[]DeviceSelector{" - for _, f := range this.Selectors { - repeatedStringForSelectors += strings.Replace(strings.Replace(f.String(), "DeviceSelector", "DeviceSelector", 1), `&`, ``, 1) + "," - } - repeatedStringForSelectors += "}" - repeatedStringForConfig := "[]DeviceClassConfiguration{" - for _, f := range this.Config { - repeatedStringForConfig += strings.Replace(strings.Replace(f.String(), "DeviceClassConfiguration", "DeviceClassConfiguration", 1), `&`, ``, 1) + "," - } - repeatedStringForConfig += "}" - s := strings.Join([]string{`&DeviceClassSpec{`, - `Selectors:` + repeatedStringForSelectors + `,`, - `Config:` + repeatedStringForConfig + `,`, - `}`, - }, "") - return s -} -func (this *DeviceConfiguration) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&DeviceConfiguration{`, - `Opaque:` + strings.Replace(this.Opaque.String(), "OpaqueDeviceConfiguration", "OpaqueDeviceConfiguration", 1) + `,`, - `}`, - }, "") - return s -} -func (this *DeviceConstraint) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&DeviceConstraint{`, - `Requests:` + fmt.Sprintf("%v", this.Requests) + `,`, - `MatchAttribute:` + valueToStringGenerated(this.MatchAttribute) + `,`, - `}`, - }, "") - return s -} -func (this *DeviceCounterConsumption) String() string { - if this == nil { - return "nil" - } - keysForCounters := make([]string, 0, len(this.Counters)) - for k := range this.Counters { - keysForCounters = append(keysForCounters, k) - } - github.com_gogo_protobuf_sortkeys.Strings(keysForCounters) - mapStringForCounters := "map[string]Counter{" - for _, k := range keysForCounters { - mapStringForCounters += fmt.Sprintf("%v: %v,", k, this.Counters[k]) - } - mapStringForCounters += "}" - s := strings.Join([]string{`&DeviceCounterConsumption{`, - `CounterSet:` + fmt.Sprintf("%v", this.CounterSet) + `,`, - `Counters:` + mapStringForCounters + `,`, - `}`, - }, "") - return s -} -func (this *DeviceRequest) String() string { - if this == nil { - return "nil" - } - repeatedStringForSelectors := "[]DeviceSelector{" - for _, f := range this.Selectors { - repeatedStringForSelectors += strings.Replace(strings.Replace(f.String(), "DeviceSelector", "DeviceSelector", 1), `&`, ``, 1) + "," - } - repeatedStringForSelectors += "}" - repeatedStringForFirstAvailable := "[]DeviceSubRequest{" - for _, f := range this.FirstAvailable { - repeatedStringForFirstAvailable += strings.Replace(strings.Replace(f.String(), "DeviceSubRequest", "DeviceSubRequest", 1), `&`, ``, 1) + "," - } - repeatedStringForFirstAvailable += "}" - repeatedStringForTolerations := "[]DeviceToleration{" - for _, f := range this.Tolerations { - repeatedStringForTolerations += strings.Replace(strings.Replace(f.String(), "DeviceToleration", "DeviceToleration", 1), `&`, ``, 1) + "," - } - repeatedStringForTolerations += "}" - s := strings.Join([]string{`&DeviceRequest{`, - `Name:` + fmt.Sprintf("%v", this.Name) + `,`, - `DeviceClassName:` + fmt.Sprintf("%v", this.DeviceClassName) + `,`, - `Selectors:` + repeatedStringForSelectors + `,`, - `AllocationMode:` + fmt.Sprintf("%v", this.AllocationMode) + `,`, - `Count:` + fmt.Sprintf("%v", this.Count) + `,`, - `AdminAccess:` + valueToStringGenerated(this.AdminAccess) + `,`, - `FirstAvailable:` + repeatedStringForFirstAvailable + `,`, - `Tolerations:` + repeatedStringForTolerations + `,`, - `}`, - }, "") - return s -} -func (this *DeviceRequestAllocationResult) String() string { - if this == nil { - return "nil" - } - repeatedStringForTolerations := "[]DeviceToleration{" - for _, f := range this.Tolerations { - repeatedStringForTolerations += strings.Replace(strings.Replace(f.String(), "DeviceToleration", "DeviceToleration", 1), `&`, ``, 1) + "," - } - repeatedStringForTolerations += "}" - s := strings.Join([]string{`&DeviceRequestAllocationResult{`, - `Request:` + fmt.Sprintf("%v", this.Request) + `,`, - `Driver:` + fmt.Sprintf("%v", this.Driver) + `,`, - `Pool:` + fmt.Sprintf("%v", this.Pool) + `,`, - `Device:` + fmt.Sprintf("%v", this.Device) + `,`, - `AdminAccess:` + valueToStringGenerated(this.AdminAccess) + `,`, - `Tolerations:` + repeatedStringForTolerations + `,`, - `}`, - }, "") - return s -} -func (this *DeviceSelector) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&DeviceSelector{`, - `CEL:` + strings.Replace(this.CEL.String(), "CELDeviceSelector", "CELDeviceSelector", 1) + `,`, - `}`, - }, "") - return s -} -func (this *DeviceSubRequest) String() string { - if this == nil { - return "nil" - } - repeatedStringForSelectors := "[]DeviceSelector{" - for _, f := range this.Selectors { - repeatedStringForSelectors += strings.Replace(strings.Replace(f.String(), "DeviceSelector", "DeviceSelector", 1), `&`, ``, 1) + "," - } - repeatedStringForSelectors += "}" - repeatedStringForTolerations := "[]DeviceToleration{" - for _, f := range this.Tolerations { - repeatedStringForTolerations += strings.Replace(strings.Replace(f.String(), "DeviceToleration", "DeviceToleration", 1), `&`, ``, 1) + "," - } - repeatedStringForTolerations += "}" - s := strings.Join([]string{`&DeviceSubRequest{`, - `Name:` + fmt.Sprintf("%v", this.Name) + `,`, - `DeviceClassName:` + fmt.Sprintf("%v", this.DeviceClassName) + `,`, - `Selectors:` + repeatedStringForSelectors + `,`, - `AllocationMode:` + fmt.Sprintf("%v", this.AllocationMode) + `,`, - `Count:` + fmt.Sprintf("%v", this.Count) + `,`, - `Tolerations:` + repeatedStringForTolerations + `,`, - `}`, - }, "") - return s -} -func (this *DeviceTaint) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&DeviceTaint{`, - `Key:` + fmt.Sprintf("%v", this.Key) + `,`, - `Value:` + fmt.Sprintf("%v", this.Value) + `,`, - `Effect:` + fmt.Sprintf("%v", this.Effect) + `,`, - `TimeAdded:` + strings.Replace(fmt.Sprintf("%v", this.TimeAdded), "Time", "v1.Time", 1) + `,`, - `}`, - }, "") - return s -} -func (this *DeviceTaintRule) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&DeviceTaintRule{`, - `ObjectMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ObjectMeta), "ObjectMeta", "v1.ObjectMeta", 1), `&`, ``, 1) + `,`, - `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "DeviceTaintRuleSpec", "DeviceTaintRuleSpec", 1), `&`, ``, 1) + `,`, - `}`, - }, "") - return s -} -func (this *DeviceTaintRuleList) String() string { - if this == nil { - return "nil" - } - repeatedStringForItems := "[]DeviceTaintRule{" - for _, f := range this.Items { - repeatedStringForItems += strings.Replace(strings.Replace(f.String(), "DeviceTaintRule", "DeviceTaintRule", 1), `&`, ``, 1) + "," - } - repeatedStringForItems += "}" - s := strings.Join([]string{`&DeviceTaintRuleList{`, - `ListMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ListMeta), "ListMeta", "v1.ListMeta", 1), `&`, ``, 1) + `,`, - `Items:` + repeatedStringForItems + `,`, - `}`, - }, "") - return s -} -func (this *DeviceTaintRuleSpec) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&DeviceTaintRuleSpec{`, - `DeviceSelector:` + strings.Replace(this.DeviceSelector.String(), "DeviceTaintSelector", "DeviceTaintSelector", 1) + `,`, - `Taint:` + strings.Replace(strings.Replace(this.Taint.String(), "DeviceTaint", "DeviceTaint", 1), `&`, ``, 1) + `,`, - `}`, - }, "") - return s -} -func (this *DeviceTaintSelector) String() string { - if this == nil { - return "nil" - } - repeatedStringForSelectors := "[]DeviceSelector{" - for _, f := range this.Selectors { - repeatedStringForSelectors += strings.Replace(strings.Replace(f.String(), "DeviceSelector", "DeviceSelector", 1), `&`, ``, 1) + "," - } - repeatedStringForSelectors += "}" - s := strings.Join([]string{`&DeviceTaintSelector{`, - `DeviceClassName:` + valueToStringGenerated(this.DeviceClassName) + `,`, - `Driver:` + valueToStringGenerated(this.Driver) + `,`, - `Pool:` + valueToStringGenerated(this.Pool) + `,`, - `Device:` + valueToStringGenerated(this.Device) + `,`, - `Selectors:` + repeatedStringForSelectors + `,`, - `}`, - }, "") - return s -} -func (this *DeviceToleration) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&DeviceToleration{`, - `Key:` + fmt.Sprintf("%v", this.Key) + `,`, - `Operator:` + fmt.Sprintf("%v", this.Operator) + `,`, - `Value:` + fmt.Sprintf("%v", this.Value) + `,`, - `Effect:` + fmt.Sprintf("%v", this.Effect) + `,`, - `TolerationSeconds:` + valueToStringGenerated(this.TolerationSeconds) + `,`, - `}`, - }, "") - return s -} -func (this *NetworkDeviceData) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&NetworkDeviceData{`, - `InterfaceName:` + fmt.Sprintf("%v", this.InterfaceName) + `,`, - `IPs:` + fmt.Sprintf("%v", this.IPs) + `,`, - `HardwareAddress:` + fmt.Sprintf("%v", this.HardwareAddress) + `,`, - `}`, - }, "") - return s -} -func (this *OpaqueDeviceConfiguration) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&OpaqueDeviceConfiguration{`, - `Driver:` + fmt.Sprintf("%v", this.Driver) + `,`, - `Parameters:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Parameters), "RawExtension", "runtime.RawExtension", 1), `&`, ``, 1) + `,`, - `}`, - }, "") - return s -} -func (this *ResourceClaim) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&ResourceClaim{`, - `ObjectMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ObjectMeta), "ObjectMeta", "v1.ObjectMeta", 1), `&`, ``, 1) + `,`, - `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "ResourceClaimSpec", "ResourceClaimSpec", 1), `&`, ``, 1) + `,`, - `Status:` + strings.Replace(strings.Replace(this.Status.String(), "ResourceClaimStatus", "ResourceClaimStatus", 1), `&`, ``, 1) + `,`, - `}`, - }, "") - return s -} -func (this *ResourceClaimConsumerReference) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&ResourceClaimConsumerReference{`, - `APIGroup:` + fmt.Sprintf("%v", this.APIGroup) + `,`, - `Resource:` + fmt.Sprintf("%v", this.Resource) + `,`, - `Name:` + fmt.Sprintf("%v", this.Name) + `,`, - `UID:` + fmt.Sprintf("%v", this.UID) + `,`, - `}`, - }, "") - return s -} -func (this *ResourceClaimList) String() string { - if this == nil { - return "nil" - } - repeatedStringForItems := "[]ResourceClaim{" - for _, f := range this.Items { - repeatedStringForItems += strings.Replace(strings.Replace(f.String(), "ResourceClaim", "ResourceClaim", 1), `&`, ``, 1) + "," - } - repeatedStringForItems += "}" - s := strings.Join([]string{`&ResourceClaimList{`, - `ListMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ListMeta), "ListMeta", "v1.ListMeta", 1), `&`, ``, 1) + `,`, - `Items:` + repeatedStringForItems + `,`, - `}`, - }, "") - return s -} -func (this *ResourceClaimSpec) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&ResourceClaimSpec{`, - `Devices:` + strings.Replace(strings.Replace(this.Devices.String(), "DeviceClaim", "DeviceClaim", 1), `&`, ``, 1) + `,`, - `}`, - }, "") - return s -} -func (this *ResourceClaimStatus) String() string { - if this == nil { - return "nil" - } - repeatedStringForReservedFor := "[]ResourceClaimConsumerReference{" - for _, f := range this.ReservedFor { - repeatedStringForReservedFor += strings.Replace(strings.Replace(f.String(), "ResourceClaimConsumerReference", "ResourceClaimConsumerReference", 1), `&`, ``, 1) + "," - } - repeatedStringForReservedFor += "}" - repeatedStringForDevices := "[]AllocatedDeviceStatus{" - for _, f := range this.Devices { - repeatedStringForDevices += strings.Replace(strings.Replace(f.String(), "AllocatedDeviceStatus", "AllocatedDeviceStatus", 1), `&`, ``, 1) + "," - } - repeatedStringForDevices += "}" - s := strings.Join([]string{`&ResourceClaimStatus{`, - `Allocation:` + strings.Replace(this.Allocation.String(), "AllocationResult", "AllocationResult", 1) + `,`, - `ReservedFor:` + repeatedStringForReservedFor + `,`, - `Devices:` + repeatedStringForDevices + `,`, - `}`, - }, "") - return s -} -func (this *ResourceClaimTemplate) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&ResourceClaimTemplate{`, - `ObjectMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ObjectMeta), "ObjectMeta", "v1.ObjectMeta", 1), `&`, ``, 1) + `,`, - `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "ResourceClaimTemplateSpec", "ResourceClaimTemplateSpec", 1), `&`, ``, 1) + `,`, - `}`, - }, "") - return s -} -func (this *ResourceClaimTemplateList) String() string { - if this == nil { - return "nil" - } - repeatedStringForItems := "[]ResourceClaimTemplate{" - for _, f := range this.Items { - repeatedStringForItems += strings.Replace(strings.Replace(f.String(), "ResourceClaimTemplate", "ResourceClaimTemplate", 1), `&`, ``, 1) + "," - } - repeatedStringForItems += "}" - s := strings.Join([]string{`&ResourceClaimTemplateList{`, - `ListMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ListMeta), "ListMeta", "v1.ListMeta", 1), `&`, ``, 1) + `,`, - `Items:` + repeatedStringForItems + `,`, - `}`, - }, "") - return s -} -func (this *ResourceClaimTemplateSpec) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&ResourceClaimTemplateSpec{`, - `ObjectMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ObjectMeta), "ObjectMeta", "v1.ObjectMeta", 1), `&`, ``, 1) + `,`, - `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "ResourceClaimSpec", "ResourceClaimSpec", 1), `&`, ``, 1) + `,`, - `}`, - }, "") - return s -} -func (this *ResourcePool) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&ResourcePool{`, - `Name:` + fmt.Sprintf("%v", this.Name) + `,`, - `Generation:` + fmt.Sprintf("%v", this.Generation) + `,`, - `ResourceSliceCount:` + fmt.Sprintf("%v", this.ResourceSliceCount) + `,`, - `}`, - }, "") - return s -} -func (this *ResourceSlice) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&ResourceSlice{`, - `ObjectMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ObjectMeta), "ObjectMeta", "v1.ObjectMeta", 1), `&`, ``, 1) + `,`, - `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "ResourceSliceSpec", "ResourceSliceSpec", 1), `&`, ``, 1) + `,`, - `}`, - }, "") - return s -} -func (this *ResourceSliceList) String() string { - if this == nil { - return "nil" - } - repeatedStringForItems := "[]ResourceSlice{" - for _, f := range this.Items { - repeatedStringForItems += strings.Replace(strings.Replace(f.String(), "ResourceSlice", "ResourceSlice", 1), `&`, ``, 1) + "," - } - repeatedStringForItems += "}" - s := strings.Join([]string{`&ResourceSliceList{`, - `ListMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ListMeta), "ListMeta", "v1.ListMeta", 1), `&`, ``, 1) + `,`, - `Items:` + repeatedStringForItems + `,`, - `}`, - }, "") - return s -} -func (this *ResourceSliceSpec) String() string { - if this == nil { - return "nil" - } - repeatedStringForDevices := "[]Device{" - for _, f := range this.Devices { - repeatedStringForDevices += strings.Replace(strings.Replace(f.String(), "Device", "Device", 1), `&`, ``, 1) + "," - } - repeatedStringForDevices += "}" - repeatedStringForSharedCounters := "[]CounterSet{" - for _, f := range this.SharedCounters { - repeatedStringForSharedCounters += strings.Replace(strings.Replace(f.String(), "CounterSet", "CounterSet", 1), `&`, ``, 1) + "," - } - repeatedStringForSharedCounters += "}" - s := strings.Join([]string{`&ResourceSliceSpec{`, - `Driver:` + fmt.Sprintf("%v", this.Driver) + `,`, - `Pool:` + strings.Replace(strings.Replace(this.Pool.String(), "ResourcePool", "ResourcePool", 1), `&`, ``, 1) + `,`, - `NodeName:` + fmt.Sprintf("%v", this.NodeName) + `,`, - `NodeSelector:` + strings.Replace(fmt.Sprintf("%v", this.NodeSelector), "NodeSelector", "v11.NodeSelector", 1) + `,`, - `AllNodes:` + fmt.Sprintf("%v", this.AllNodes) + `,`, - `Devices:` + repeatedStringForDevices + `,`, - `PerDeviceNodeSelection:` + valueToStringGenerated(this.PerDeviceNodeSelection) + `,`, - `SharedCounters:` + repeatedStringForSharedCounters + `,`, - `}`, - }, "") - return s -} -func valueToStringGenerated(v interface{}) string { - rv := reflect.ValueOf(v) - if rv.IsNil() { - return "nil" - } - pv := reflect.Indirect(rv).Interface() - return fmt.Sprintf("*%v", pv) -} -func (m *AllocatedDeviceStatus) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: AllocatedDeviceStatus: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: AllocatedDeviceStatus: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Driver", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Driver = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Pool", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Pool = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Device", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Device = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Conditions", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Conditions = append(m.Conditions, v1.Condition{}) - if err := m.Conditions[len(m.Conditions)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 5: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.Data == nil { - m.Data = &runtime.RawExtension{} - } - if err := m.Data.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 6: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field NetworkData", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.NetworkData == nil { - m.NetworkData = &NetworkDeviceData{} - } - if err := m.NetworkData.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *AllocationResult) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: AllocationResult: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: AllocationResult: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Devices", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Devices.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field NodeSelector", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.NodeSelector == nil { - m.NodeSelector = &v11.NodeSelector{} - } - if err := m.NodeSelector.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *BasicDevice) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: BasicDevice: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: BasicDevice: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Attributes", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.Attributes == nil { - m.Attributes = make(map[QualifiedName]DeviceAttribute) - } - var mapkey QualifiedName - mapvalue := &DeviceAttribute{} - for iNdEx < postIndex { - entryPreIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - if fieldNum == 1 { - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthGenerated - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey < 0 { - return ErrInvalidLengthGenerated - } - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey = QualifiedName(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey - } else if fieldNum == 2 { - var mapmsglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - mapmsglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if mapmsglen < 0 { - return ErrInvalidLengthGenerated - } - postmsgIndex := iNdEx + mapmsglen - if postmsgIndex < 0 { - return ErrInvalidLengthGenerated - } - if postmsgIndex > l { - return io.ErrUnexpectedEOF - } - mapvalue = &DeviceAttribute{} - if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { - return err - } - iNdEx = postmsgIndex - } else { - iNdEx = entryPreIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > postIndex { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - m.Attributes[QualifiedName(mapkey)] = *mapvalue - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Capacity", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.Capacity == nil { - m.Capacity = make(map[QualifiedName]resource.Quantity) - } - var mapkey QualifiedName - mapvalue := &resource.Quantity{} - for iNdEx < postIndex { - entryPreIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - if fieldNum == 1 { - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthGenerated - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey < 0 { - return ErrInvalidLengthGenerated - } - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey = QualifiedName(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey - } else if fieldNum == 2 { - var mapmsglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - mapmsglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if mapmsglen < 0 { - return ErrInvalidLengthGenerated - } - postmsgIndex := iNdEx + mapmsglen - if postmsgIndex < 0 { - return ErrInvalidLengthGenerated - } - if postmsgIndex > l { - return io.ErrUnexpectedEOF - } - mapvalue = &resource.Quantity{} - if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { - return err - } - iNdEx = postmsgIndex - } else { - iNdEx = entryPreIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > postIndex { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - m.Capacity[QualifiedName(mapkey)] = *mapvalue - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ConsumesCounters", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.ConsumesCounters = append(m.ConsumesCounters, DeviceCounterConsumption{}) - if err := m.ConsumesCounters[len(m.ConsumesCounters)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field NodeName", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - s := string(dAtA[iNdEx:postIndex]) - m.NodeName = &s - iNdEx = postIndex - case 5: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field NodeSelector", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.NodeSelector == nil { - m.NodeSelector = &v11.NodeSelector{} - } - if err := m.NodeSelector.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 6: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field AllNodes", wireType) - } - var v int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - b := bool(v != 0) - m.AllNodes = &b - case 7: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Taints", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Taints = append(m.Taints, DeviceTaint{}) - if err := m.Taints[len(m.Taints)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *CELDeviceSelector) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: CELDeviceSelector: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: CELDeviceSelector: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Expression", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Expression = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *Counter) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: Counter: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: Counter: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Value.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *CounterSet) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: CounterSet: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: CounterSet: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Name = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Counters", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.Counters == nil { - m.Counters = make(map[string]Counter) - } - var mapkey string - mapvalue := &Counter{} - for iNdEx < postIndex { - entryPreIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - if fieldNum == 1 { - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthGenerated - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey < 0 { - return ErrInvalidLengthGenerated - } - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey - } else if fieldNum == 2 { - var mapmsglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - mapmsglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if mapmsglen < 0 { - return ErrInvalidLengthGenerated - } - postmsgIndex := iNdEx + mapmsglen - if postmsgIndex < 0 { - return ErrInvalidLengthGenerated - } - if postmsgIndex > l { - return io.ErrUnexpectedEOF - } - mapvalue = &Counter{} - if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { - return err - } - iNdEx = postmsgIndex - } else { - iNdEx = entryPreIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > postIndex { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - m.Counters[mapkey] = *mapvalue - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *Device) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: Device: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: Device: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Name = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Basic", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.Basic == nil { - m.Basic = &BasicDevice{} - } - if err := m.Basic.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceAllocationConfiguration) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceAllocationConfiguration: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceAllocationConfiguration: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Source", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Source = AllocationConfigSource(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Requests", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Requests = append(m.Requests, string(dAtA[iNdEx:postIndex])) - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DeviceConfiguration", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.DeviceConfiguration.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceAllocationResult) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceAllocationResult: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceAllocationResult: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Results", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Results = append(m.Results, DeviceRequestAllocationResult{}) - if err := m.Results[len(m.Results)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Config", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Config = append(m.Config, DeviceAllocationConfiguration{}) - if err := m.Config[len(m.Config)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceAttribute) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceAttribute: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceAttribute: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 2: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field IntValue", wireType) - } - var v int64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= int64(b&0x7F) << shift - if b < 0x80 { - break - } - } - m.IntValue = &v - case 3: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field BoolValue", wireType) - } - var v int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - b := bool(v != 0) - m.BoolValue = &b - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field StringValue", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - s := string(dAtA[iNdEx:postIndex]) - m.StringValue = &s - iNdEx = postIndex - case 5: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field VersionValue", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - s := string(dAtA[iNdEx:postIndex]) - m.VersionValue = &s - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceClaim) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceClaim: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceClaim: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Requests", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Requests = append(m.Requests, DeviceRequest{}) - if err := m.Requests[len(m.Requests)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Constraints", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Constraints = append(m.Constraints, DeviceConstraint{}) - if err := m.Constraints[len(m.Constraints)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Config", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Config = append(m.Config, DeviceClaimConfiguration{}) - if err := m.Config[len(m.Config)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceClaimConfiguration) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceClaimConfiguration: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceClaimConfiguration: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Requests", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Requests = append(m.Requests, string(dAtA[iNdEx:postIndex])) - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DeviceConfiguration", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.DeviceConfiguration.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceClass) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceClass: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceClass: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ObjectMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.ObjectMeta.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Spec", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Spec.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceClassConfiguration) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceClassConfiguration: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceClassConfiguration: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DeviceConfiguration", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.DeviceConfiguration.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceClassList) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceClassList: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceClassList: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ListMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.ListMeta.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Items", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Items = append(m.Items, DeviceClass{}) - if err := m.Items[len(m.Items)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceClassSpec) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceClassSpec: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceClassSpec: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Selectors", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Selectors = append(m.Selectors, DeviceSelector{}) - if err := m.Selectors[len(m.Selectors)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Config", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Config = append(m.Config, DeviceClassConfiguration{}) - if err := m.Config[len(m.Config)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceConfiguration) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceConfiguration: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceConfiguration: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Opaque", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.Opaque == nil { - m.Opaque = &OpaqueDeviceConfiguration{} - } - if err := m.Opaque.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceConstraint) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceConstraint: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceConstraint: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Requests", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Requests = append(m.Requests, string(dAtA[iNdEx:postIndex])) - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field MatchAttribute", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - s := FullyQualifiedName(dAtA[iNdEx:postIndex]) - m.MatchAttribute = &s - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceCounterConsumption) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceCounterConsumption: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceCounterConsumption: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field CounterSet", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.CounterSet = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Counters", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.Counters == nil { - m.Counters = make(map[string]Counter) - } - var mapkey string - mapvalue := &Counter{} - for iNdEx < postIndex { - entryPreIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - if fieldNum == 1 { - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthGenerated - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey < 0 { - return ErrInvalidLengthGenerated - } - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey - } else if fieldNum == 2 { - var mapmsglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - mapmsglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if mapmsglen < 0 { - return ErrInvalidLengthGenerated - } - postmsgIndex := iNdEx + mapmsglen - if postmsgIndex < 0 { - return ErrInvalidLengthGenerated - } - if postmsgIndex > l { - return io.ErrUnexpectedEOF - } - mapvalue = &Counter{} - if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { - return err - } - iNdEx = postmsgIndex - } else { - iNdEx = entryPreIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > postIndex { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - m.Counters[mapkey] = *mapvalue - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceRequest) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceRequest: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceRequest: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Name = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DeviceClassName", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.DeviceClassName = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Selectors", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Selectors = append(m.Selectors, DeviceSelector{}) - if err := m.Selectors[len(m.Selectors)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field AllocationMode", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.AllocationMode = DeviceAllocationMode(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 5: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Count", wireType) - } - m.Count = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.Count |= int64(b&0x7F) << shift - if b < 0x80 { - break - } - } - case 6: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field AdminAccess", wireType) - } - var v int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - b := bool(v != 0) - m.AdminAccess = &b - case 7: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field FirstAvailable", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.FirstAvailable = append(m.FirstAvailable, DeviceSubRequest{}) - if err := m.FirstAvailable[len(m.FirstAvailable)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 8: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Tolerations", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Tolerations = append(m.Tolerations, DeviceToleration{}) - if err := m.Tolerations[len(m.Tolerations)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceRequestAllocationResult) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceRequestAllocationResult: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceRequestAllocationResult: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Request", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Request = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Driver", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Driver = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Pool", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Pool = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Device", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Device = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 5: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field AdminAccess", wireType) - } - var v int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - b := bool(v != 0) - m.AdminAccess = &b - case 6: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Tolerations", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Tolerations = append(m.Tolerations, DeviceToleration{}) - if err := m.Tolerations[len(m.Tolerations)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceSelector) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceSelector: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceSelector: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field CEL", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.CEL == nil { - m.CEL = &CELDeviceSelector{} - } - if err := m.CEL.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceSubRequest) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceSubRequest: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceSubRequest: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Name = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DeviceClassName", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.DeviceClassName = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Selectors", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Selectors = append(m.Selectors, DeviceSelector{}) - if err := m.Selectors[len(m.Selectors)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field AllocationMode", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.AllocationMode = DeviceAllocationMode(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 5: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Count", wireType) - } - m.Count = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.Count |= int64(b&0x7F) << shift - if b < 0x80 { - break - } - } - case 7: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Tolerations", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Tolerations = append(m.Tolerations, DeviceToleration{}) - if err := m.Tolerations[len(m.Tolerations)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceTaint) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceTaint: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceTaint: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Key = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Value = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Effect", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Effect = DeviceTaintEffect(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TimeAdded", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.TimeAdded == nil { - m.TimeAdded = &v1.Time{} - } - if err := m.TimeAdded.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceTaintRule) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceTaintRule: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceTaintRule: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ObjectMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.ObjectMeta.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Spec", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Spec.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceTaintRuleList) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceTaintRuleList: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceTaintRuleList: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ListMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.ListMeta.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Items", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Items = append(m.Items, DeviceTaintRule{}) - if err := m.Items[len(m.Items)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceTaintRuleSpec) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceTaintRuleSpec: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceTaintRuleSpec: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DeviceSelector", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.DeviceSelector == nil { - m.DeviceSelector = &DeviceTaintSelector{} - } - if err := m.DeviceSelector.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Taint", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Taint.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceTaintSelector) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceTaintSelector: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceTaintSelector: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DeviceClassName", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - s := string(dAtA[iNdEx:postIndex]) - m.DeviceClassName = &s - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Driver", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - s := string(dAtA[iNdEx:postIndex]) - m.Driver = &s - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Pool", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - s := string(dAtA[iNdEx:postIndex]) - m.Pool = &s - iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Device", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - s := string(dAtA[iNdEx:postIndex]) - m.Device = &s - iNdEx = postIndex - case 5: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Selectors", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Selectors = append(m.Selectors, DeviceSelector{}) - if err := m.Selectors[len(m.Selectors)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DeviceToleration) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DeviceToleration: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DeviceToleration: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Key = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Operator", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Operator = DeviceTolerationOperator(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Value = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Effect", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Effect = DeviceTaintEffect(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 5: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field TolerationSeconds", wireType) - } - var v int64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= int64(b&0x7F) << shift - if b < 0x80 { - break - } - } - m.TolerationSeconds = &v - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *NetworkDeviceData) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: NetworkDeviceData: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: NetworkDeviceData: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field InterfaceName", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.InterfaceName = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field IPs", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.IPs = append(m.IPs, string(dAtA[iNdEx:postIndex])) - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field HardwareAddress", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.HardwareAddress = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *OpaqueDeviceConfiguration) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: OpaqueDeviceConfiguration: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: OpaqueDeviceConfiguration: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Driver", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Driver = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Parameters", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Parameters.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *ResourceClaim) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: ResourceClaim: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: ResourceClaim: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ObjectMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.ObjectMeta.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Spec", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Spec.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Status.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *ResourceClaimConsumerReference) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: ResourceClaimConsumerReference: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: ResourceClaimConsumerReference: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field APIGroup", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.APIGroup = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Resource", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Resource = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Name = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 5: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field UID", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.UID = k8s_io_apimachinery_pkg_types.UID(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *ResourceClaimList) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: ResourceClaimList: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: ResourceClaimList: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ListMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.ListMeta.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Items", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Items = append(m.Items, ResourceClaim{}) - if err := m.Items[len(m.Items)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *ResourceClaimSpec) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: ResourceClaimSpec: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: ResourceClaimSpec: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Devices", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Devices.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *ResourceClaimStatus) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: ResourceClaimStatus: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: ResourceClaimStatus: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Allocation", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.Allocation == nil { - m.Allocation = &AllocationResult{} - } - if err := m.Allocation.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ReservedFor", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.ReservedFor = append(m.ReservedFor, ResourceClaimConsumerReference{}) - if err := m.ReservedFor[len(m.ReservedFor)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Devices", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Devices = append(m.Devices, AllocatedDeviceStatus{}) - if err := m.Devices[len(m.Devices)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } +func (this *DeviceTaintRuleList) String() string { + if this == nil { + return "nil" } - - if iNdEx > l { - return io.ErrUnexpectedEOF + repeatedStringForItems := "[]DeviceTaintRule{" + for _, f := range this.Items { + repeatedStringForItems += strings.Replace(strings.Replace(f.String(), "DeviceTaintRule", "DeviceTaintRule", 1), `&`, ``, 1) + "," } - return nil + repeatedStringForItems += "}" + s := strings.Join([]string{`&DeviceTaintRuleList{`, + `ListMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ListMeta), "ListMeta", "v1.ListMeta", 1), `&`, ``, 1) + `,`, + `Items:` + repeatedStringForItems + `,`, + `}`, + }, "") + return s } -func (m *ResourceClaimTemplate) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: ResourceClaimTemplate: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: ResourceClaimTemplate: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ObjectMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.ObjectMeta.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Spec", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Spec.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } +func (this *DeviceTaintRuleSpec) String() string { + if this == nil { + return "nil" } - - if iNdEx > l { - return io.ErrUnexpectedEOF + s := strings.Join([]string{`&DeviceTaintRuleSpec{`, + `DeviceSelector:` + strings.Replace(this.DeviceSelector.String(), "DeviceTaintSelector", "DeviceTaintSelector", 1) + `,`, + `Taint:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Taint), "DeviceTaint", "DeviceTaint", 1), `&`, ``, 1) + `,`, + `}`, + }, "") + return s +} +func (this *DeviceTaintSelector) String() string { + if this == nil { + return "nil" } - return nil + repeatedStringForSelectors := "[]DeviceSelector{" + for _, f := range this.Selectors { + repeatedStringForSelectors += strings.Replace(strings.Replace(f.String(), "DeviceSelector", "DeviceSelector", 1), `&`, ``, 1) + "," + } + repeatedStringForSelectors += "}" + s := strings.Join([]string{`&DeviceTaintSelector{`, + `DeviceClassName:` + valueToStringGenerated(this.DeviceClassName) + `,`, + `Driver:` + valueToStringGenerated(this.Driver) + `,`, + `Pool:` + valueToStringGenerated(this.Pool) + `,`, + `Device:` + valueToStringGenerated(this.Device) + `,`, + `Selectors:` + repeatedStringForSelectors + `,`, + `}`, + }, "") + return s +} +func valueToStringGenerated(v interface{}) string { + rv := reflect.ValueOf(v) + if rv.IsNil() { + return "nil" + } + pv := reflect.Indirect(rv).Interface() + return fmt.Sprintf("*%v", pv) } -func (m *ResourceClaimTemplateList) Unmarshal(dAtA []byte) error { +func (m *CELDeviceSelector) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -10968,50 +860,17 @@ func (m *ResourceClaimTemplateList) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ResourceClaimTemplateList: wiretype end group for non-group") + return fmt.Errorf("proto: CELDeviceSelector: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ResourceClaimTemplateList: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: CELDeviceSelector: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ListMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.ListMeta.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Items", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Expression", wireType) } - var msglen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated @@ -11021,25 +880,23 @@ func (m *ResourceClaimTemplateList) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthGenerated } - postIndex := iNdEx + msglen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthGenerated } if postIndex > l { return io.ErrUnexpectedEOF } - m.Items = append(m.Items, ResourceClaimTemplate{}) - if err := m.Items[len(m.Items)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } + m.Expression = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex @@ -11062,7 +919,7 @@ func (m *ResourceClaimTemplateList) Unmarshal(dAtA []byte) error { } return nil } -func (m *ResourceClaimTemplateSpec) Unmarshal(dAtA []byte) error { +func (m *DeviceSelector) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -11075,58 +932,25 @@ func (m *ResourceClaimTemplateSpec) Unmarshal(dAtA []byte) error { if iNdEx >= l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: ResourceClaimTemplateSpec: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: ResourceClaimTemplateSpec: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ObjectMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.ObjectMeta.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: DeviceSelector: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: DeviceSelector: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Spec", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field CEL", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -11153,7 +977,10 @@ func (m *ResourceClaimTemplateSpec) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.Spec.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if m.CEL == nil { + m.CEL = &CELDeviceSelector{} + } + if err := m.CEL.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -11178,7 +1005,7 @@ func (m *ResourceClaimTemplateSpec) Unmarshal(dAtA []byte) error { } return nil } -func (m *ResourcePool) Unmarshal(dAtA []byte) error { +func (m *DeviceTaint) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -11201,15 +1028,15 @@ func (m *ResourcePool) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ResourcePool: wiretype end group for non-group") + return fmt.Errorf("proto: DeviceTaint: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ResourcePool: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: DeviceTaint: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -11237,13 +1064,13 @@ func (m *ResourcePool) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Name = string(dAtA[iNdEx:postIndex]) + m.Key = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Generation", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } - m.Generation = 0 + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated @@ -11253,16 +1080,61 @@ func (m *ResourcePool) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.Generation |= int64(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Value = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex case 3: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field ResourceSliceCount", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Effect", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Effect = DeviceTaintEffect(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TimeAdded", wireType) } - m.ResourceSliceCount = 0 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated @@ -11272,11 +1144,28 @@ func (m *ResourcePool) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.ResourceSliceCount |= int64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.TimeAdded == nil { + m.TimeAdded = &v1.Time{} + } + if err := m.TimeAdded.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) @@ -11298,7 +1187,7 @@ func (m *ResourcePool) Unmarshal(dAtA []byte) error { } return nil } -func (m *ResourceSlice) Unmarshal(dAtA []byte) error { +func (m *DeviceTaintRule) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -11321,10 +1210,10 @@ func (m *ResourceSlice) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ResourceSlice: wiretype end group for non-group") + return fmt.Errorf("proto: DeviceTaintRule: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ResourceSlice: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: DeviceTaintRule: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -11414,7 +1303,7 @@ func (m *ResourceSlice) Unmarshal(dAtA []byte) error { } return nil } -func (m *ResourceSliceList) Unmarshal(dAtA []byte) error { +func (m *DeviceTaintRuleList) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -11437,10 +1326,10 @@ func (m *ResourceSliceList) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ResourceSliceList: wiretype end group for non-group") + return fmt.Errorf("proto: DeviceTaintRuleList: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ResourceSliceList: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: DeviceTaintRuleList: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -11505,7 +1394,7 @@ func (m *ResourceSliceList) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Items = append(m.Items, ResourceSlice{}) + m.Items = append(m.Items, DeviceTaintRule{}) if err := m.Items[len(m.Items)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } @@ -11531,7 +1420,7 @@ func (m *ResourceSliceList) Unmarshal(dAtA []byte) error { } return nil } -func (m *ResourceSliceSpec) Unmarshal(dAtA []byte) error { +func (m *DeviceTaintRuleSpec) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -11554,17 +1443,17 @@ func (m *ResourceSliceSpec) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ResourceSliceSpec: wiretype end group for non-group") + return fmt.Errorf("proto: DeviceTaintRuleSpec: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ResourceSliceSpec: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: DeviceTaintRuleSpec: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Driver", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field DeviceSelector", wireType) } - var stringLen uint64 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated @@ -11574,27 +1463,31 @@ func (m *ResourceSliceSpec) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if msglen < 0 { return ErrInvalidLengthGenerated } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthGenerated } if postIndex > l { return io.ErrUnexpectedEOF } - m.Driver = string(dAtA[iNdEx:postIndex]) + if m.DeviceSelector == nil { + m.DeviceSelector = &DeviceTaintSelector{} + } + if err := m.DeviceSelector.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Pool", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Taint", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -11621,13 +1514,63 @@ func (m *ResourceSliceSpec) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.Pool.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.Taint.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex - case 3: + default: + iNdEx = preIndex + skippy, err := skipGenerated(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *DeviceTaintSelector) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: DeviceTaintSelector: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: DeviceTaintSelector: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field NodeName", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field DeviceClassName", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -11655,13 +1598,14 @@ func (m *ResourceSliceSpec) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.NodeName = string(dAtA[iNdEx:postIndex]) + s := string(dAtA[iNdEx:postIndex]) + m.DeviceClassName = &s iNdEx = postIndex - case 4: + case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field NodeSelector", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Driver", wireType) } - var msglen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated @@ -11671,53 +1615,30 @@ func (m *ResourceSliceSpec) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthGenerated } - postIndex := iNdEx + msglen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthGenerated } if postIndex > l { return io.ErrUnexpectedEOF } - if m.NodeSelector == nil { - m.NodeSelector = &v11.NodeSelector{} - } - if err := m.NodeSelector.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } + s := string(dAtA[iNdEx:postIndex]) + m.Driver = &s iNdEx = postIndex - case 5: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field AllNodes", wireType) - } - var v int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - m.AllNodes = bool(v != 0) - case 6: + case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Devices", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Pool", wireType) } - var msglen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated @@ -11727,31 +1648,30 @@ func (m *ResourceSliceSpec) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthGenerated } - postIndex := iNdEx + msglen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthGenerated } if postIndex > l { return io.ErrUnexpectedEOF } - m.Devices = append(m.Devices, Device{}) - if err := m.Devices[len(m.Devices)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } + s := string(dAtA[iNdEx:postIndex]) + m.Pool = &s iNdEx = postIndex - case 7: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field PerDeviceNodeSelection", wireType) + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Device", wireType) } - var v int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated @@ -11761,16 +1681,28 @@ func (m *ResourceSliceSpec) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - v |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - b := bool(v != 0) - m.PerDeviceNodeSelection = &b - case 8: + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + s := string(dAtA[iNdEx:postIndex]) + m.Device = &s + iNdEx = postIndex + case 5: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SharedCounters", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Selectors", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -11797,8 +1729,8 @@ func (m *ResourceSliceSpec) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.SharedCounters = append(m.SharedCounters, CounterSet{}) - if err := m.SharedCounters[len(m.SharedCounters)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + m.Selectors = append(m.Selectors, DeviceSelector{}) + if err := m.Selectors[len(m.Selectors)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/resource/v1alpha3/generated.proto b/resource/v1alpha3/generated.proto index 103cafc6ad..d334479007 100644 --- a/resource/v1alpha3/generated.proto +++ b/resource/v1alpha3/generated.proto @@ -21,8 +21,6 @@ syntax = "proto2"; package k8s.io.api.resource.v1alpha3; -import "k8s.io/api/core/v1/generated.proto"; -import "k8s.io/apimachinery/pkg/api/resource/generated.proto"; import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto"; import "k8s.io/apimachinery/pkg/runtime/generated.proto"; import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto"; @@ -30,149 +28,6 @@ import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto"; // Package-wide variables from generator "generated". option go_package = "k8s.io/api/resource/v1alpha3"; -// AllocatedDeviceStatus contains the status of an allocated device, if the -// driver chooses to report it. This may include driver-specific information. -message AllocatedDeviceStatus { - // Driver specifies the name of the DRA driver whose kubelet - // plugin should be invoked to process the allocation once the claim is - // needed on a node. - // - // Must be a DNS subdomain and should end with a DNS domain owned by the - // vendor of the driver. - // - // +required - optional string driver = 1; - - // This name together with the driver name and the device name field - // identify which device was allocated (`//`). - // - // Must not be longer than 253 characters and may contain one or more - // DNS sub-domains separated by slashes. - // - // +required - optional string pool = 2; - - // Device references one device instance via its name in the driver's - // resource pool. It must be a DNS label. - // - // +required - optional string device = 3; - - // Conditions contains the latest observation of the device's state. - // If the device has been configured according to the class and claim - // config references, the `Ready` condition should be True. - // - // Must not contain more than 8 entries. - // - // +optional - // +listType=map - // +listMapKey=type - repeated .k8s.io.apimachinery.pkg.apis.meta.v1.Condition conditions = 4; - - // Data contains arbitrary driver-specific data. - // - // The length of the raw data must be smaller or equal to 10 Ki. - // - // +optional - optional .k8s.io.apimachinery.pkg.runtime.RawExtension data = 5; - - // NetworkData contains network-related information specific to the device. - // - // +optional - optional NetworkDeviceData networkData = 6; -} - -// AllocationResult contains attributes of an allocated resource. -message AllocationResult { - // Devices is the result of allocating devices. - // - // +optional - optional DeviceAllocationResult devices = 1; - - // NodeSelector defines where the allocated resources are available. If - // unset, they are available everywhere. - // - // +optional - optional .k8s.io.api.core.v1.NodeSelector nodeSelector = 3; -} - -// BasicDevice defines one device instance. -message BasicDevice { - // Attributes defines the set of attributes for this device. - // The name of each attribute must be unique in that set. - // - // The maximum number of attributes and capacities combined is 32. - // - // +optional - map attributes = 1; - - // Capacity defines the set of capacities for this device. - // The name of each capacity must be unique in that set. - // - // The maximum number of attributes and capacities combined is 32. - // - // +optional - map capacity = 2; - - // ConsumesCounters defines a list of references to sharedCounters - // and the set of counters that the device will - // consume from those counter sets. - // - // There can only be a single entry per counterSet. - // - // The total number of device counter consumption entries - // must be <= 32. In addition, the total number in the - // entire ResourceSlice must be <= 1024 (for example, - // 64 devices with 16 counters each). - // - // +optional - // +listType=atomic - // +featureGate=DRAPartitionableDevices - repeated DeviceCounterConsumption consumesCounters = 3; - - // NodeName identifies the node where the device is available. - // - // Must only be set if Spec.PerDeviceNodeSelection is set to true. - // At most one of NodeName, NodeSelector and AllNodes can be set. - // - // +optional - // +oneOf=DeviceNodeSelection - // +featureGate=DRAPartitionableDevices - optional string nodeName = 4; - - // NodeSelector defines the nodes where the device is available. - // - // Must only be set if Spec.PerDeviceNodeSelection is set to true. - // At most one of NodeName, NodeSelector and AllNodes can be set. - // - // +optional - // +oneOf=DeviceNodeSelection - // +featureGate=DRAPartitionableDevices - optional .k8s.io.api.core.v1.NodeSelector nodeSelector = 5; - - // AllNodes indicates that all nodes have access to the device. - // - // Must only be set if Spec.PerDeviceNodeSelection is set to true. - // At most one of NodeName, NodeSelector and AllNodes can be set. - // - // +optional - // +oneOf=DeviceNodeSelection - // +featureGate=DRAPartitionableDevices - optional bool allNodes = 6; - - // If specified, these are the driver-defined taints. - // - // The maximum number of taints is 4. - // - // This is an alpha field and requires enabling the DRADeviceTaints - // feature gate. - // - // +optional - // +listType=atomic - // +featureGate=DRADeviceTaints - repeated DeviceTaint taints = 7; -} - // CELDeviceSelector contains a CEL expression for selecting a device. message CELDeviceSelector { // Expression is a CEL expression which evaluates a single device. It @@ -230,503 +85,6 @@ message CELDeviceSelector { optional string expression = 1; } -// Counter describes a quantity associated with a device. -message Counter { - // Value defines how much of a certain device counter is available. - // - // +required - optional .k8s.io.apimachinery.pkg.api.resource.Quantity value = 1; -} - -// CounterSet defines a named set of counters -// that are available to be used by devices defined in the -// ResourceSlice. -// -// The counters are not allocatable by themselves, but -// can be referenced by devices. When a device is allocated, -// the portion of counters it uses will no longer be available for use -// by other devices. -message CounterSet { - // CounterSet is the name of the set from which the - // counters defined will be consumed. - // - // +required - optional string name = 1; - - // Counters defines the counters that will be consumed by the device. - // The name of each counter must be unique in that set and must be a DNS label. - // - // To ensure this uniqueness, capacities defined by the vendor - // must be listed without the driver name as domain prefix in - // their name. All others must be listed with their domain prefix. - // - // The maximum number of counters is 32. - // - // +required - map counters = 2; -} - -// Device represents one individual hardware instance that can be selected based -// on its attributes. Besides the name, exactly one field must be set. -message Device { - // Name is unique identifier among all devices managed by - // the driver in the pool. It must be a DNS label. - // - // +required - optional string name = 1; - - // Basic defines one device instance. - // - // +optional - // +oneOf=deviceType - optional BasicDevice basic = 2; -} - -// DeviceAllocationConfiguration gets embedded in an AllocationResult. -message DeviceAllocationConfiguration { - // Source records whether the configuration comes from a class and thus - // is not something that a normal user would have been able to set - // or from a claim. - // - // +required - optional string source = 1; - - // Requests lists the names of requests where the configuration applies. - // If empty, its applies to all requests. - // - // References to subrequests must include the name of the main request - // and may include the subrequest using the format

[/]. If just - // the main request is given, the configuration applies to all subrequests. - // - // +optional - // +listType=atomic - repeated string requests = 2; - - optional DeviceConfiguration deviceConfiguration = 3; -} - -// DeviceAllocationResult is the result of allocating devices. -message DeviceAllocationResult { - // Results lists all allocated devices. - // - // +optional - // +listType=atomic - repeated DeviceRequestAllocationResult results = 1; - - // This field is a combination of all the claim and class configuration parameters. - // Drivers can distinguish between those based on a flag. - // - // This includes configuration parameters for drivers which have no allocated - // devices in the result because it is up to the drivers which configuration - // parameters they support. They can silently ignore unknown configuration - // parameters. - // - // +optional - // +listType=atomic - repeated DeviceAllocationConfiguration config = 2; -} - -// DeviceAttribute must have exactly one field set. -message DeviceAttribute { - // IntValue is a number. - // - // +optional - // +oneOf=ValueType - optional int64 int = 2; - - // BoolValue is a true/false value. - // - // +optional - // +oneOf=ValueType - optional bool bool = 3; - - // StringValue is a string. Must not be longer than 64 characters. - // - // +optional - // +oneOf=ValueType - optional string string = 4; - - // VersionValue is a semantic version according to semver.org spec 2.0.0. - // Must not be longer than 64 characters. - // - // +optional - // +oneOf=ValueType - optional string version = 5; -} - -// DeviceClaim defines how to request devices with a ResourceClaim. -message DeviceClaim { - // Requests represent individual requests for distinct devices which - // must all be satisfied. If empty, nothing needs to be allocated. - // - // +optional - // +listType=atomic - repeated DeviceRequest requests = 1; - - // These constraints must be satisfied by the set of devices that get - // allocated for the claim. - // - // +optional - // +listType=atomic - repeated DeviceConstraint constraints = 2; - - // This field holds configuration for multiple potential drivers which - // could satisfy requests in this claim. It is ignored while allocating - // the claim. - // - // +optional - // +listType=atomic - repeated DeviceClaimConfiguration config = 3; -} - -// DeviceClaimConfiguration is used for configuration parameters in DeviceClaim. -message DeviceClaimConfiguration { - // Requests lists the names of requests where the configuration applies. - // If empty, it applies to all requests. - // - // References to subrequests must include the name of the main request - // and may include the subrequest using the format
[/]. If just - // the main request is given, the configuration applies to all subrequests. - // - // +optional - // +listType=atomic - repeated string requests = 1; - - optional DeviceConfiguration deviceConfiguration = 2; -} - -// DeviceClass is a vendor- or admin-provided resource that contains -// device configuration and selectors. It can be referenced in -// the device requests of a claim to apply these presets. -// Cluster scoped. -// -// This is an alpha type and requires enabling the DynamicResourceAllocation -// feature gate. -message DeviceClass { - // Standard object metadata - // +optional - optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1; - - // Spec defines what can be allocated and how to configure it. - // - // This is mutable. Consumers have to be prepared for classes changing - // at any time, either because they get updated or replaced. Claim - // allocations are done once based on whatever was set in classes at - // the time of allocation. - // - // Changing the spec automatically increments the metadata.generation number. - optional DeviceClassSpec spec = 2; -} - -// DeviceClassConfiguration is used in DeviceClass. -message DeviceClassConfiguration { - optional DeviceConfiguration deviceConfiguration = 1; -} - -// DeviceClassList is a collection of classes. -message DeviceClassList { - // Standard list metadata - // +optional - optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1; - - // Items is the list of resource classes. - repeated DeviceClass items = 2; -} - -// DeviceClassSpec is used in a [DeviceClass] to define what can be allocated -// and how to configure it. -message DeviceClassSpec { - // Each selector must be satisfied by a device which is claimed via this class. - // - // +optional - // +listType=atomic - repeated DeviceSelector selectors = 1; - - // Config defines configuration parameters that apply to each device that is claimed via this class. - // Some classses may potentially be satisfied by multiple drivers, so each instance of a vendor - // configuration applies to exactly one driver. - // - // They are passed to the driver, but are not considered while allocating the claim. - // - // +optional - // +listType=atomic - repeated DeviceClassConfiguration config = 2; -} - -// DeviceConfiguration must have exactly one field set. It gets embedded -// inline in some other structs which have other fields, so field names must -// not conflict with those. -message DeviceConfiguration { - // Opaque provides driver-specific configuration parameters. - // - // +optional - // +oneOf=ConfigurationType - optional OpaqueDeviceConfiguration opaque = 1; -} - -// DeviceConstraint must have exactly one field set besides Requests. -message DeviceConstraint { - // Requests is a list of the one or more requests in this claim which - // must co-satisfy this constraint. If a request is fulfilled by - // multiple devices, then all of the devices must satisfy the - // constraint. If this is not specified, this constraint applies to all - // requests in this claim. - // - // References to subrequests must include the name of the main request - // and may include the subrequest using the format
[/]. If just - // the main request is given, the constraint applies to all subrequests. - // - // +optional - // +listType=atomic - repeated string requests = 1; - - // MatchAttribute requires that all devices in question have this - // attribute and that its type and value are the same across those - // devices. - // - // For example, if you specified "dra.example.com/numa" (a hypothetical example!), - // then only devices in the same NUMA node will be chosen. A device which - // does not have that attribute will not be chosen. All devices should - // use a value of the same type for this attribute because that is part of - // its specification, but if one device doesn't, then it also will not be - // chosen. - // - // Must include the domain qualifier. - // - // +optional - // +oneOf=ConstraintType - optional string matchAttribute = 2; -} - -// DeviceCounterConsumption defines a set of counters that -// a device will consume from a CounterSet. -message DeviceCounterConsumption { - // CounterSet defines the set from which the - // counters defined will be consumed. - // - // +required - optional string counterSet = 1; - - // Counters defines the Counter that will be consumed by - // the device. - // - // The maximum number counters in a device is 32. - // In addition, the maximum number of all counters - // in all devices is 1024 (for example, 64 devices with - // 16 counters each). - // - // +required - map counters = 2; -} - -// DeviceRequest is a request for devices required for a claim. -// This is typically a request for a single resource like a device, but can -// also ask for several identical devices. -message DeviceRequest { - // Name can be used to reference this request in a pod.spec.containers[].resources.claims - // entry and in a constraint of the claim. - // - // Must be a DNS label. - // - // +required - optional string name = 1; - - // DeviceClassName references a specific DeviceClass, which can define - // additional configuration and selectors to be inherited by this - // request. - // - // A class is required if no subrequests are specified in the - // firstAvailable list and no class can be set if subrequests - // are specified in the firstAvailable list. - // Which classes are available depends on the cluster. - // - // Administrators may use this to restrict which devices may get - // requested by only installing classes with selectors for permitted - // devices. If users are free to request anything without restrictions, - // then administrators can create an empty DeviceClass for users - // to reference. - // - // +optional - // +oneOf=deviceRequestType - optional string deviceClassName = 2; - - // Selectors define criteria which must be satisfied by a specific - // device in order for that device to be considered for this - // request. All selectors must be satisfied for a device to be - // considered. - // - // This field can only be set when deviceClassName is set and no subrequests - // are specified in the firstAvailable list. - // - // +optional - // +listType=atomic - repeated DeviceSelector selectors = 3; - - // AllocationMode and its related fields define how devices are allocated - // to satisfy this request. Supported values are: - // - // - ExactCount: This request is for a specific number of devices. - // This is the default. The exact number is provided in the - // count field. - // - // - All: This request is for all of the matching devices in a pool. - // At least one device must exist on the node for the allocation to succeed. - // Allocation will fail if some devices are already allocated, - // unless adminAccess is requested. - // - // If AllocationMode is not specified, the default mode is ExactCount. If - // the mode is ExactCount and count is not specified, the default count is - // one. Any other requests must specify this field. - // - // This field can only be set when deviceClassName is set and no subrequests - // are specified in the firstAvailable list. - // - // More modes may get added in the future. Clients must refuse to handle - // requests with unknown modes. - // - // +optional - optional string allocationMode = 4; - - // Count is used only when the count mode is "ExactCount". Must be greater than zero. - // If AllocationMode is ExactCount and this field is not specified, the default is one. - // - // This field can only be set when deviceClassName is set and no subrequests - // are specified in the firstAvailable list. - // - // +optional - // +oneOf=AllocationMode - optional int64 count = 5; - - // AdminAccess indicates that this is a claim for administrative access - // to the device(s). Claims with AdminAccess are expected to be used for - // monitoring or other management services for a device. They ignore - // all ordinary claims to the device with respect to access modes and - // any resource allocations. - // - // This field can only be set when deviceClassName is set and no subrequests - // are specified in the firstAvailable list. - // - // This is an alpha field and requires enabling the DRAAdminAccess - // feature gate. Admin access is disabled if this field is unset or - // set to false, otherwise it is enabled. - // - // +optional - // +featureGate=DRAAdminAccess - optional bool adminAccess = 6; - - // FirstAvailable contains subrequests, of which exactly one will be - // satisfied by the scheduler to satisfy this request. It tries to - // satisfy them in the order in which they are listed here. So if - // there are two entries in the list, the scheduler will only check - // the second one if it determines that the first one cannot be used. - // - // This field may only be set in the entries of DeviceClaim.Requests. - // - // DRA does not yet implement scoring, so the scheduler will - // select the first set of devices that satisfies all the - // requests in the claim. And if the requirements can - // be satisfied on more than one node, other scheduling features - // will determine which node is chosen. This means that the set of - // devices allocated to a claim might not be the optimal set - // available to the cluster. Scoring will be implemented later. - // - // +optional - // +oneOf=deviceRequestType - // +listType=atomic - // +featureGate=DRAPrioritizedList - repeated DeviceSubRequest firstAvailable = 7; - - // If specified, the request's tolerations. - // - // Tolerations for NoSchedule are required to allocate a - // device which has a taint with that effect. The same applies - // to NoExecute. - // - // In addition, should any of the allocated devices get tainted - // with NoExecute after allocation and that effect is not tolerated, - // then all pods consuming the ResourceClaim get deleted to evict - // them. The scheduler will not let new pods reserve the claim while - // it has these tainted devices. Once all pods are evicted, the - // claim will get deallocated. - // - // The maximum number of tolerations is 16. - // - // This field can only be set when deviceClassName is set and no subrequests - // are specified in the firstAvailable list. - // - // This is an alpha field and requires enabling the DRADeviceTaints - // feature gate. - // - // +optional - // +listType=atomic - // +featureGate=DRADeviceTaints - repeated DeviceToleration tolerations = 8; -} - -// DeviceRequestAllocationResult contains the allocation result for one request. -message DeviceRequestAllocationResult { - // Request is the name of the request in the claim which caused this - // device to be allocated. If it references a subrequest in the - // firstAvailable list on a DeviceRequest, this field must - // include both the name of the main request and the subrequest - // using the format
/. - // - // Multiple devices may have been allocated per request. - // - // +required - optional string request = 1; - - // Driver specifies the name of the DRA driver whose kubelet - // plugin should be invoked to process the allocation once the claim is - // needed on a node. - // - // Must be a DNS subdomain and should end with a DNS domain owned by the - // vendor of the driver. - // - // +required - optional string driver = 2; - - // This name together with the driver name and the device name field - // identify which device was allocated (`//`). - // - // Must not be longer than 253 characters and may contain one or more - // DNS sub-domains separated by slashes. - // - // +required - optional string pool = 3; - - // Device references one device instance via its name in the driver's - // resource pool. It must be a DNS label. - // - // +required - optional string device = 4; - - // AdminAccess indicates that this device was allocated for - // administrative access. See the corresponding request field - // for a definition of mode. - // - // This is an alpha field and requires enabling the DRAAdminAccess - // feature gate. Admin access is disabled if this field is unset or - // set to false, otherwise it is enabled. - // - // +optional - // +featureGate=DRAAdminAccess - optional bool adminAccess = 5; - - // A copy of all tolerations specified in the request at the time - // when the device got allocated. - // - // The maximum number of tolerations is 16. - // - // This is an alpha field and requires enabling the DRADeviceTaints - // feature gate. - // - // +optional - // +listType=atomic - // +featureGate=DRADeviceTaints - repeated DeviceToleration tolerations = 6; -} - // DeviceSelector must have exactly one field set. message DeviceSelector { // CEL contains a CEL expression for selecting a device. @@ -736,104 +94,11 @@ message DeviceSelector { optional CELDeviceSelector cel = 1; } -// DeviceSubRequest describes a request for device provided in the -// claim.spec.devices.requests[].firstAvailable array. Each -// is typically a request for a single resource like a device, but can -// also ask for several identical devices. -// -// DeviceSubRequest is similar to Request, but doesn't expose the AdminAccess -// or FirstAvailable fields, as those can only be set on the top-level request. -// AdminAccess is not supported for requests with a prioritized list, and -// recursive FirstAvailable fields are not supported. -message DeviceSubRequest { - // Name can be used to reference this subrequest in the list of constraints - // or the list of configurations for the claim. References must use the - // format
/. - // - // Must be a DNS label. - // - // +required - optional string name = 1; - - // DeviceClassName references a specific DeviceClass, which can define - // additional configuration and selectors to be inherited by this - // subrequest. - // - // A class is required. Which classes are available depends on the cluster. - // - // Administrators may use this to restrict which devices may get - // requested by only installing classes with selectors for permitted - // devices. If users are free to request anything without restrictions, - // then administrators can create an empty DeviceClass for users - // to reference. - // - // +required - optional string deviceClassName = 2; - - // Selectors define criteria which must be satisfied by a specific - // device in order for that device to be considered for this - // request. All selectors must be satisfied for a device to be - // considered. - // - // +optional - // +listType=atomic - repeated DeviceSelector selectors = 3; - - // AllocationMode and its related fields define how devices are allocated - // to satisfy this request. Supported values are: - // - // - ExactCount: This request is for a specific number of devices. - // This is the default. The exact number is provided in the - // count field. - // - // - All: This request is for all of the matching devices in a pool. - // Allocation will fail if some devices are already allocated, - // unless adminAccess is requested. - // - // If AllocationMode is not specified, the default mode is ExactCount. If - // the mode is ExactCount and count is not specified, the default count is - // one. Any other requests must specify this field. - // - // More modes may get added in the future. Clients must refuse to handle - // requests with unknown modes. - // - // +optional - optional string allocationMode = 4; - - // Count is used only when the count mode is "ExactCount". Must be greater than zero. - // If AllocationMode is ExactCount and this field is not specified, the default is one. - // - // +optional - // +oneOf=AllocationMode - optional int64 count = 5; - - // If specified, the request's tolerations. - // - // Tolerations for NoSchedule are required to allocate a - // device which has a taint with that effect. The same applies - // to NoExecute. - // - // In addition, should any of the allocated devices get tainted - // with NoExecute after allocation and that effect is not tolerated, - // then all pods consuming the ResourceClaim get deleted to evict - // them. The scheduler will not let new pods reserve the claim while - // it has these tainted devices. Once all pods are evicted, the - // claim will get deallocated. - // - // The maximum number of tolerations is 16. - // - // This is an alpha field and requires enabling the DRADeviceTaints - // feature gate. - // - // +optional - // +listType=atomic - // +featureGate=DRADeviceTaints - repeated DeviceToleration tolerations = 7; -} - // The device this taint is attached to has the "effect" on // any claim which does not tolerate the taint and, through the claim, // to pods using the claim. +// +// +protobuf.options.(gogoproto.goproto_stringer)=false message DeviceTaint { // The taint key to be applied to a device. // Must be a label name. @@ -949,424 +214,3 @@ message DeviceTaintSelector { repeated DeviceSelector selectors = 5; } -// The ResourceClaim this DeviceToleration is attached to tolerates any taint that matches -// the triple using the matching operator . -message DeviceToleration { - // Key is the taint key that the toleration applies to. Empty means match all taint keys. - // If the key is empty, operator must be Exists; this combination means to match all values and all keys. - // Must be a label name. - // - // +optional - optional string key = 1; - - // Operator represents a key's relationship to the value. - // Valid operators are Exists and Equal. Defaults to Equal. - // Exists is equivalent to wildcard for value, so that a ResourceClaim can - // tolerate all taints of a particular category. - // - // +optional - // +default="Equal" - optional string operator = 2; - - // Value is the taint value the toleration matches to. - // If the operator is Exists, the value must be empty, otherwise just a regular string. - // Must be a label value. - // - // +optional - optional string value = 3; - - // Effect indicates the taint effect to match. Empty means match all taint effects. - // When specified, allowed values are NoSchedule and NoExecute. - // - // +optional - optional string effect = 4; - - // TolerationSeconds represents the period of time the toleration (which must be - // of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, - // it is not set, which means tolerate the taint forever (do not evict). Zero and - // negative values will be treated as 0 (evict immediately) by the system. - // If larger than zero, the time when the pod needs to be evicted is calculated as