this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

doc/tutorial/kubernetes: update definitions

Change-Id: I289e6361f42fe6f58ecbf68d75742a809a343432
Reviewed-on: https://cue-review.googlesource.com/c/cue/+/3540
Reviewed-by: Marcel van Lohuizen <mpvl@golang.org>

+60 -8
+10 -2
doc/tutorial/kubernetes/quick/pkg/k8s.io/api/core/v1/types_go_gen.cue
··· 4631 4631 // Deprecated. Not all kubelets will set this field. Remove field after 1.13. 4632 4632 // see: https://issues.k8s.io/61966 4633 4633 // +optional 4634 - externalID?: string @go(DoNotUse_ExternalID) @protobuf(2,bytes,opt) 4634 + externalID?: string @go(DoNotUseExternalID) @protobuf(2,bytes,opt) 4635 4635 } 4636 4636 4637 4637 // NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil. ··· 5107 5107 enumNamespaceConditionType :: 5108 5108 NamespaceDeletionDiscoveryFailure | 5109 5109 NamespaceDeletionContentFailure | 5110 - NamespaceDeletionGVParsingFailure 5110 + NamespaceDeletionGVParsingFailure | 5111 + NamespaceContentRemaining | 5112 + NamespaceFinalizersRemaining 5111 5113 5112 5114 // NamespaceDeletionDiscoveryFailure contains information about namespace deleter errors during resource discovery. 5113 5115 NamespaceDeletionDiscoveryFailure :: NamespaceConditionType & "NamespaceDeletionDiscoveryFailure" ··· 5117 5119 5118 5120 // NamespaceDeletionGVParsingFailure contains information about namespace deleter errors parsing GV for legacy types. 5119 5121 NamespaceDeletionGVParsingFailure :: NamespaceConditionType & "NamespaceDeletionGroupVersionParsingFailure" 5122 + 5123 + // NamespaceContentRemaining contains information about resources remaining in a namespace. 5124 + NamespaceContentRemaining :: NamespaceConditionType & "NamespaceContentRemaining" 5125 + 5126 + // NamespaceFinalizersRemaining contains information about which finalizers are on resources remaining in a namespace. 5127 + NamespaceFinalizersRemaining :: NamespaceConditionType & "NamespaceFinalizersRemaining" 5120 5128 5121 5129 // NamespaceCondition contains details about state of namespace. 5122 5130 NamespaceCondition :: {
+50 -1
doc/tutorial/kubernetes/quick/pkg/k8s.io/api/extensions/v1beta1/types_go_gen.cue
··· 974 974 975 975 // FSType gives strong typing to different file systems that are used by volumes. 976 976 // Deprecated: use FSType from policy API Group instead. 977 - FSType :: string 977 + FSType :: string // enumFSType 978 + 979 + enumFSType :: 980 + AzureFile | 981 + Flocker | 982 + FlexVolume | 983 + HostPath | 984 + EmptyDir | 985 + GCEPersistentDisk | 986 + AWSElasticBlockStore | 987 + GitRepo | 988 + Secret | 989 + NFS | 990 + ISCSI | 991 + Glusterfs | 992 + PersistentVolumeClaim | 993 + RBD | 994 + Cinder | 995 + CephFS | 996 + DownwardAPI | 997 + FC | 998 + ConfigMap | 999 + Quobyte | 1000 + AzureDisk | 1001 + CSI | 1002 + All 1003 + 1004 + AzureFile :: FSType & "azureFile" 1005 + Flocker :: FSType & "flocker" 1006 + FlexVolume :: FSType & "flexVolume" 1007 + HostPath :: FSType & "hostPath" 1008 + EmptyDir :: FSType & "emptyDir" 1009 + GCEPersistentDisk :: FSType & "gcePersistentDisk" 1010 + AWSElasticBlockStore :: FSType & "awsElasticBlockStore" 1011 + GitRepo :: FSType & "gitRepo" 1012 + Secret :: FSType & "secret" 1013 + NFS :: FSType & "nfs" 1014 + ISCSI :: FSType & "iscsi" 1015 + Glusterfs :: FSType & "glusterfs" 1016 + PersistentVolumeClaim :: FSType & "persistentVolumeClaim" 1017 + RBD :: FSType & "rbd" 1018 + Cinder :: FSType & "cinder" 1019 + CephFS :: FSType & "cephFS" 1020 + DownwardAPI :: FSType & "downwardAPI" 1021 + FC :: FSType & "fc" 1022 + ConfigMap :: FSType & "configMap" 1023 + Quobyte :: FSType & "quobyte" 1024 + AzureDisk :: FSType & "azureDisk" 1025 + CSI :: FSType & "csi" 1026 + All :: FSType & "*" 978 1027 979 1028 // AllowedFlexVolume represents a single Flexvolume that is allowed to be used. 980 1029 // Deprecated: use AllowedFlexVolume from policy API Group instead.
-2
doc/tutorial/kubernetes/quick/pkg/k8s.io/apimachinery/pkg/apis/meta/v1/types_go_gen.cue
··· 250 250 // "ci-cd". The set of fields is always in the version that the 251 251 // workflow used when modifying the object. 252 252 // 253 - // This field is alpha and can be changed or removed without notice. 254 - // 255 253 // +optional 256 254 managedFields?: [...ManagedFieldsEntry] @go(ManagedFields,[]ManagedFieldsEntry) @protobuf(17,bytes,rep) 257 255 }
-3
doc/tutorial/kubernetes/quick/pkg/k8s.io/apimachinery/pkg/runtime/codec_go_gen.cue
··· 13 13 NoopDecoder :: { 14 14 Encoder: Encoder 15 15 } 16 - 17 - // GroupVersioners implements GroupVersioner and resolves to the first exact match for any kind. 18 - GroupVersioners :: [...GroupVersioner]