···46314631 // Deprecated. Not all kubelets will set this field. Remove field after 1.13.
46324632 // see: https://issues.k8s.io/61966
46334633 // +optional
46344634- externalID?: string @go(DoNotUse_ExternalID) @protobuf(2,bytes,opt)
46344634+ externalID?: string @go(DoNotUseExternalID) @protobuf(2,bytes,opt)
46354635}
4636463646374637// NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil.
···51075107enumNamespaceConditionType ::
51085108 NamespaceDeletionDiscoveryFailure |
51095109 NamespaceDeletionContentFailure |
51105110- NamespaceDeletionGVParsingFailure
51105110+ NamespaceDeletionGVParsingFailure |
51115111+ NamespaceContentRemaining |
51125112+ NamespaceFinalizersRemaining
5111511351125114// NamespaceDeletionDiscoveryFailure contains information about namespace deleter errors during resource discovery.
51135115NamespaceDeletionDiscoveryFailure :: NamespaceConditionType & "NamespaceDeletionDiscoveryFailure"
···5117511951185120// NamespaceDeletionGVParsingFailure contains information about namespace deleter errors parsing GV for legacy types.
51195121NamespaceDeletionGVParsingFailure :: NamespaceConditionType & "NamespaceDeletionGroupVersionParsingFailure"
51225122+51235123+// NamespaceContentRemaining contains information about resources remaining in a namespace.
51245124+NamespaceContentRemaining :: NamespaceConditionType & "NamespaceContentRemaining"
51255125+51265126+// NamespaceFinalizersRemaining contains information about which finalizers are on resources remaining in a namespace.
51275127+NamespaceFinalizersRemaining :: NamespaceConditionType & "NamespaceFinalizersRemaining"
5120512851215129// NamespaceCondition contains details about state of namespace.
51225130NamespaceCondition :: {
···250250 // "ci-cd". The set of fields is always in the version that the
251251 // workflow used when modifying the object.
252252 //
253253- // This field is alpha and can be changed or removed without notice.
254254- //
255253 // +optional
256254 managedFields?: [...ManagedFieldsEntry] @go(ManagedFields,[]ManagedFieldsEntry) @protobuf(17,bytes,rep)
257255}
···1313NoopDecoder :: {
1414 Encoder: Encoder
1515}
1616-1717-// GroupVersioners implements GroupVersioner and resolves to the first exact match for any kind.
1818-GroupVersioners :: [...GroupVersioner]