@@ -255,8 +255,6 @@ const (
255
255
MountOptionAnnotation = "volume.beta.kubernetes.io/mount-options"
256
256
)
257
257
258
- // +genclient
259
- // +genclient:nonNamespaced
260
258
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
261
259
262
260
type PersistentVolume struct {
@@ -363,7 +361,6 @@ type PersistentVolumeList struct {
363
361
Items []PersistentVolume
364
362
}
365
363
366
- // +genclient
367
364
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
368
365
369
366
// PersistentVolumeClaim is a user's request for and claim to a persistent volume
@@ -2879,7 +2876,6 @@ type PodStatusResult struct {
2879
2876
Status PodStatus
2880
2877
}
2881
2878
2882
- // +genclient
2883
2879
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
2884
2880
2885
2881
// Pod is a collection of containers, used as either input (create, update) or as output (list, get).
@@ -2909,7 +2905,6 @@ type PodTemplateSpec struct {
2909
2905
Spec PodSpec
2910
2906
}
2911
2907
2912
- // +genclient
2913
2908
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
2914
2909
2915
2910
// PodTemplate describes a template for creating copies of a predefined pod.
@@ -3017,9 +3012,6 @@ type ReplicationControllerCondition struct {
3017
3012
Message string
3018
3013
}
3019
3014
3020
- // +genclient
3021
- // +genclient:method=GetScale,verb=get,subresource=scale,result=k8s.io/kubernetes/pkg/apis/autoscaling.Scale
3022
- // +genclient:method=UpdateScale,verb=update,subresource=scale,input=k8s.io/kubernetes/pkg/apis/autoscaling.Scale,result=k8s.io/kubernetes/pkg/apis/autoscaling.Scale
3023
3015
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
3024
3016
3025
3017
// ReplicationController represents the configuration of a replication controller.
@@ -3293,7 +3285,6 @@ type ServicePort struct {
3293
3285
NodePort int32
3294
3286
}
3295
3287
3296
- // +genclient
3297
3288
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
3298
3289
3299
3290
// Service is a named abstraction of software service (for example, mysql) consisting of local port
@@ -3313,7 +3304,6 @@ type Service struct {
3313
3304
Status ServiceStatus
3314
3305
}
3315
3306
3316
- // +genclient
3317
3307
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
3318
3308
3319
3309
// ServiceAccount binds together:
@@ -3351,7 +3341,6 @@ type ServiceAccountList struct {
3351
3341
Items []ServiceAccount
3352
3342
}
3353
3343
3354
- // +genclient
3355
3344
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
3356
3345
3357
3346
// Endpoints is a collection of endpoints that implement the actual service. Example:
@@ -3776,8 +3765,6 @@ const (
3776
3765
// ResourceList is a set of (resource name, quantity) pairs.
3777
3766
type ResourceList map [ResourceName ]resource.Quantity
3778
3767
3779
- // +genclient
3780
- // +genclient:nonNamespaced
3781
3768
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
3782
3769
3783
3770
// Node is a worker node in Kubernetes
@@ -3839,8 +3826,6 @@ const (
3839
3826
NamespaceTerminating NamespacePhase = "Terminating"
3840
3827
)
3841
3828
3842
- // +genclient
3843
- // +genclient:nonNamespaced
3844
3829
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
3845
3830
3846
3831
// A namespace provides a scope for Names.
@@ -4095,7 +4080,6 @@ const (
4095
4080
EventTypeWarning string = "Warning"
4096
4081
)
4097
4082
4098
- // +genclient
4099
4083
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
4100
4084
4101
4085
// Event is a report of an event somewhere in the cluster.
@@ -4239,7 +4223,6 @@ type LimitRangeSpec struct {
4239
4223
Limits []LimitRangeItem
4240
4224
}
4241
4225
4242
- // +genclient
4243
4226
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
4244
4227
4245
4228
// LimitRange sets resource usage limits for each kind of resource in a Namespace
@@ -4386,7 +4369,6 @@ type ResourceQuotaStatus struct {
4386
4369
Used ResourceList
4387
4370
}
4388
4371
4389
- // +genclient
4390
4372
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
4391
4373
4392
4374
// ResourceQuota sets aggregate quota restrictions enforced per namespace
@@ -4416,7 +4398,6 @@ type ResourceQuotaList struct {
4416
4398
Items []ResourceQuota
4417
4399
}
4418
4400
4419
- // +genclient
4420
4401
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
4421
4402
4422
4403
// Secret holds secret data of a certain type. The total bytes of the values in
@@ -4536,7 +4517,6 @@ type SecretList struct {
4536
4517
Items []Secret
4537
4518
}
4538
4519
4539
- // +genclient
4540
4520
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
4541
4521
4542
4522
// ConfigMap holds configuration data for components or applications to consume.
@@ -4634,8 +4614,6 @@ type ComponentCondition struct {
4634
4614
Error string
4635
4615
}
4636
4616
4637
- // +genclient
4638
- // +genclient:nonNamespaced
4639
4617
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
4640
4618
4641
4619
// ComponentStatus (and ComponentStatusList) holds the cluster validation info.
0 commit comments