diff --git a/apis/apps/v1beta2/zz_generated_daemon_set_controller.go b/apis/apps/v1beta2/zz_generated_daemon_set_controller.go index 4b99e03e..9760107b 100644 --- a/apis/apps/v1beta2/zz_generated_daemon_set_controller.go +++ b/apis/apps/v1beta2/zz_generated_daemon_set_controller.go @@ -97,7 +97,7 @@ func (l *daemonSetLister) Get(namespace, name string) (*v1beta2.DaemonSet, error return nil, errors.NewNotFound(schema.GroupResource{ Group: DaemonSetGroupVersionKind.Group, Resource: "daemonSet", - }, name) + }, key) } return obj.(*v1beta2.DaemonSet), nil } diff --git a/apis/apps/v1beta2/zz_generated_deepcopy.go b/apis/apps/v1beta2/zz_generated_deepcopy.go index 653591a9..feedb944 100644 --- a/apis/apps/v1beta2/zz_generated_deepcopy.go +++ b/apis/apps/v1beta2/zz_generated_deepcopy.go @@ -1,42 +1,10 @@ package v1beta2 import ( - reflect "reflect" - apps_v1beta2 "k8s.io/api/apps/v1beta2" - conversion "k8s.io/apimachinery/pkg/conversion" runtime "k8s.io/apimachinery/pkg/runtime" ) -func init() { - SchemeBuilder.Register(RegisterDeepCopies) -} - -// RegisterDeepCopies adds deep-copy functions to the given scheme. Public -// to allow building arbitrary schemes. -// -// Deprecated: deepcopy registration will go away when static deepcopy is fully implemented. -func RegisterDeepCopies(scheme *runtime.Scheme) error { - return scheme.AddGeneratedDeepCopyFuncs( - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*DaemonSetList).DeepCopyInto(out.(*DaemonSetList)) - return nil - }, InType: reflect.TypeOf(&DaemonSetList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*DeploymentList).DeepCopyInto(out.(*DeploymentList)) - return nil - }, InType: reflect.TypeOf(&DeploymentList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ReplicaSetList).DeepCopyInto(out.(*ReplicaSetList)) - return nil - }, InType: reflect.TypeOf(&ReplicaSetList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*StatefulSetList).DeepCopyInto(out.(*StatefulSetList)) - return nil - }, InType: reflect.TypeOf(&StatefulSetList{})}, - ) -} - // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *DaemonSetList) DeepCopyInto(out *DaemonSetList) { *out = *in @@ -66,9 +34,8 @@ func (in *DaemonSetList) DeepCopy() *DaemonSetList { func (in *DaemonSetList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -100,9 +67,8 @@ func (in *DeploymentList) DeepCopy() *DeploymentList { func (in *DeploymentList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -134,9 +100,8 @@ func (in *ReplicaSetList) DeepCopy() *ReplicaSetList { func (in *ReplicaSetList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -168,7 +133,6 @@ func (in *StatefulSetList) DeepCopy() *StatefulSetList { func (in *StatefulSetList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } diff --git a/apis/apps/v1beta2/zz_generated_deployment_controller.go b/apis/apps/v1beta2/zz_generated_deployment_controller.go index b29bf47b..87a287af 100644 --- a/apis/apps/v1beta2/zz_generated_deployment_controller.go +++ b/apis/apps/v1beta2/zz_generated_deployment_controller.go @@ -97,7 +97,7 @@ func (l *deploymentLister) Get(namespace, name string) (*v1beta2.Deployment, err return nil, errors.NewNotFound(schema.GroupResource{ Group: DeploymentGroupVersionKind.Group, Resource: "deployment", - }, name) + }, key) } return obj.(*v1beta2.Deployment), nil } diff --git a/apis/apps/v1beta2/zz_generated_replica_set_controller.go b/apis/apps/v1beta2/zz_generated_replica_set_controller.go index 7664c240..664f48c7 100644 --- a/apis/apps/v1beta2/zz_generated_replica_set_controller.go +++ b/apis/apps/v1beta2/zz_generated_replica_set_controller.go @@ -97,7 +97,7 @@ func (l *replicaSetLister) Get(namespace, name string) (*v1beta2.ReplicaSet, err return nil, errors.NewNotFound(schema.GroupResource{ Group: ReplicaSetGroupVersionKind.Group, Resource: "replicaSet", - }, name) + }, key) } return obj.(*v1beta2.ReplicaSet), nil } diff --git a/apis/apps/v1beta2/zz_generated_stateful_set_controller.go b/apis/apps/v1beta2/zz_generated_stateful_set_controller.go index e702828c..571a63c6 100644 --- a/apis/apps/v1beta2/zz_generated_stateful_set_controller.go +++ b/apis/apps/v1beta2/zz_generated_stateful_set_controller.go @@ -97,7 +97,7 @@ func (l *statefulSetLister) Get(namespace, name string) (*v1beta2.StatefulSet, e return nil, errors.NewNotFound(schema.GroupResource{ Group: StatefulSetGroupVersionKind.Group, Resource: "statefulSet", - }, name) + }, key) } return obj.(*v1beta2.StatefulSet), nil } diff --git a/apis/batch/v1/zz_generated_deepcopy.go b/apis/batch/v1/zz_generated_deepcopy.go index 1c6f813c..03136de3 100644 --- a/apis/batch/v1/zz_generated_deepcopy.go +++ b/apis/batch/v1/zz_generated_deepcopy.go @@ -1,30 +1,10 @@ package v1 import ( - reflect "reflect" - batch_v1 "k8s.io/api/batch/v1" - conversion "k8s.io/apimachinery/pkg/conversion" runtime "k8s.io/apimachinery/pkg/runtime" ) -func init() { - SchemeBuilder.Register(RegisterDeepCopies) -} - -// RegisterDeepCopies adds deep-copy functions to the given scheme. Public -// to allow building arbitrary schemes. -// -// Deprecated: deepcopy registration will go away when static deepcopy is fully implemented. -func RegisterDeepCopies(scheme *runtime.Scheme) error { - return scheme.AddGeneratedDeepCopyFuncs( - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*JobList).DeepCopyInto(out.(*JobList)) - return nil - }, InType: reflect.TypeOf(&JobList{})}, - ) -} - // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *JobList) DeepCopyInto(out *JobList) { *out = *in @@ -54,7 +34,6 @@ func (in *JobList) DeepCopy() *JobList { func (in *JobList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } diff --git a/apis/batch/v1/zz_generated_job_controller.go b/apis/batch/v1/zz_generated_job_controller.go index 4d0aad9b..580ba66b 100644 --- a/apis/batch/v1/zz_generated_job_controller.go +++ b/apis/batch/v1/zz_generated_job_controller.go @@ -97,7 +97,7 @@ func (l *jobLister) Get(namespace, name string) (*v1.Job, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: JobGroupVersionKind.Group, Resource: "job", - }, name) + }, key) } return obj.(*v1.Job), nil } diff --git a/apis/batch/v1beta1/zz_generated_cron_job_controller.go b/apis/batch/v1beta1/zz_generated_cron_job_controller.go index 0e7bae6c..3b432467 100644 --- a/apis/batch/v1beta1/zz_generated_cron_job_controller.go +++ b/apis/batch/v1beta1/zz_generated_cron_job_controller.go @@ -97,7 +97,7 @@ func (l *cronJobLister) Get(namespace, name string) (*v1beta1.CronJob, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: CronJobGroupVersionKind.Group, Resource: "cronJob", - }, name) + }, key) } return obj.(*v1beta1.CronJob), nil } diff --git a/apis/batch/v1beta1/zz_generated_deepcopy.go b/apis/batch/v1beta1/zz_generated_deepcopy.go index a6c5ce75..06268a0e 100644 --- a/apis/batch/v1beta1/zz_generated_deepcopy.go +++ b/apis/batch/v1beta1/zz_generated_deepcopy.go @@ -1,30 +1,10 @@ package v1beta1 import ( - reflect "reflect" - batch_v1beta1 "k8s.io/api/batch/v1beta1" - conversion "k8s.io/apimachinery/pkg/conversion" runtime "k8s.io/apimachinery/pkg/runtime" ) -func init() { - SchemeBuilder.Register(RegisterDeepCopies) -} - -// RegisterDeepCopies adds deep-copy functions to the given scheme. Public -// to allow building arbitrary schemes. -// -// Deprecated: deepcopy registration will go away when static deepcopy is fully implemented. -func RegisterDeepCopies(scheme *runtime.Scheme) error { - return scheme.AddGeneratedDeepCopyFuncs( - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*CronJobList).DeepCopyInto(out.(*CronJobList)) - return nil - }, InType: reflect.TypeOf(&CronJobList{})}, - ) -} - // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *CronJobList) DeepCopyInto(out *CronJobList) { *out = *in @@ -54,7 +34,6 @@ func (in *CronJobList) DeepCopy() *CronJobList { func (in *CronJobList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } diff --git a/apis/core/v1/zz_generated_component_status_controller.go b/apis/core/v1/zz_generated_component_status_controller.go index f8301a0f..ea4978af 100644 --- a/apis/core/v1/zz_generated_component_status_controller.go +++ b/apis/core/v1/zz_generated_component_status_controller.go @@ -96,7 +96,7 @@ func (l *componentStatusLister) Get(namespace, name string) (*v1.ComponentStatus return nil, errors.NewNotFound(schema.GroupResource{ Group: ComponentStatusGroupVersionKind.Group, Resource: "componentStatus", - }, name) + }, key) } return obj.(*v1.ComponentStatus), nil } diff --git a/apis/core/v1/zz_generated_config_map_controller.go b/apis/core/v1/zz_generated_config_map_controller.go index 36341d2b..6c3cb306 100644 --- a/apis/core/v1/zz_generated_config_map_controller.go +++ b/apis/core/v1/zz_generated_config_map_controller.go @@ -97,7 +97,7 @@ func (l *configMapLister) Get(namespace, name string) (*v1.ConfigMap, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: ConfigMapGroupVersionKind.Group, Resource: "configMap", - }, name) + }, key) } return obj.(*v1.ConfigMap), nil } diff --git a/apis/core/v1/zz_generated_deepcopy.go b/apis/core/v1/zz_generated_deepcopy.go index c60ebfbb..4a9675bf 100644 --- a/apis/core/v1/zz_generated_deepcopy.go +++ b/apis/core/v1/zz_generated_deepcopy.go @@ -1,70 +1,10 @@ package v1 import ( - reflect "reflect" - core_v1 "k8s.io/api/core/v1" - conversion "k8s.io/apimachinery/pkg/conversion" runtime "k8s.io/apimachinery/pkg/runtime" ) -func init() { - SchemeBuilder.Register(RegisterDeepCopies) -} - -// RegisterDeepCopies adds deep-copy functions to the given scheme. Public -// to allow building arbitrary schemes. -// -// Deprecated: deepcopy registration will go away when static deepcopy is fully implemented. -func RegisterDeepCopies(scheme *runtime.Scheme) error { - return scheme.AddGeneratedDeepCopyFuncs( - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ComponentStatusList).DeepCopyInto(out.(*ComponentStatusList)) - return nil - }, InType: reflect.TypeOf(&ComponentStatusList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ConfigMapList).DeepCopyInto(out.(*ConfigMapList)) - return nil - }, InType: reflect.TypeOf(&ConfigMapList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*EndpointsList).DeepCopyInto(out.(*EndpointsList)) - return nil - }, InType: reflect.TypeOf(&EndpointsList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*EventList).DeepCopyInto(out.(*EventList)) - return nil - }, InType: reflect.TypeOf(&EventList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NamespaceList).DeepCopyInto(out.(*NamespaceList)) - return nil - }, InType: reflect.TypeOf(&NamespaceList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NodeList).DeepCopyInto(out.(*NodeList)) - return nil - }, InType: reflect.TypeOf(&NodeList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PodList).DeepCopyInto(out.(*PodList)) - return nil - }, InType: reflect.TypeOf(&PodList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ReplicationControllerList).DeepCopyInto(out.(*ReplicationControllerList)) - return nil - }, InType: reflect.TypeOf(&ReplicationControllerList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SecretList).DeepCopyInto(out.(*SecretList)) - return nil - }, InType: reflect.TypeOf(&SecretList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ServiceAccountList).DeepCopyInto(out.(*ServiceAccountList)) - return nil - }, InType: reflect.TypeOf(&ServiceAccountList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ServiceList).DeepCopyInto(out.(*ServiceList)) - return nil - }, InType: reflect.TypeOf(&ServiceList{})}, - ) -} - // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ComponentStatusList) DeepCopyInto(out *ComponentStatusList) { *out = *in @@ -94,9 +34,8 @@ func (in *ComponentStatusList) DeepCopy() *ComponentStatusList { func (in *ComponentStatusList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -128,9 +67,8 @@ func (in *ConfigMapList) DeepCopy() *ConfigMapList { func (in *ConfigMapList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -162,9 +100,8 @@ func (in *EndpointsList) DeepCopy() *EndpointsList { func (in *EndpointsList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -196,9 +133,8 @@ func (in *EventList) DeepCopy() *EventList { func (in *EventList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -230,9 +166,8 @@ func (in *NamespaceList) DeepCopy() *NamespaceList { func (in *NamespaceList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -264,9 +199,8 @@ func (in *NodeList) DeepCopy() *NodeList { func (in *NodeList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -298,9 +232,8 @@ func (in *PodList) DeepCopy() *PodList { func (in *PodList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -332,9 +265,8 @@ func (in *ReplicationControllerList) DeepCopy() *ReplicationControllerList { func (in *ReplicationControllerList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -366,9 +298,8 @@ func (in *SecretList) DeepCopy() *SecretList { func (in *SecretList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -400,9 +331,8 @@ func (in *ServiceAccountList) DeepCopy() *ServiceAccountList { func (in *ServiceAccountList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -434,7 +364,6 @@ func (in *ServiceList) DeepCopy() *ServiceList { func (in *ServiceList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } diff --git a/apis/core/v1/zz_generated_endpoints_controller.go b/apis/core/v1/zz_generated_endpoints_controller.go index c850a107..ae636675 100644 --- a/apis/core/v1/zz_generated_endpoints_controller.go +++ b/apis/core/v1/zz_generated_endpoints_controller.go @@ -97,7 +97,7 @@ func (l *endpointsLister) Get(namespace, name string) (*v1.Endpoints, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: EndpointsGroupVersionKind.Group, Resource: "endpoints", - }, name) + }, key) } return obj.(*v1.Endpoints), nil } diff --git a/apis/core/v1/zz_generated_event_controller.go b/apis/core/v1/zz_generated_event_controller.go index 17fad6f4..f1782de8 100644 --- a/apis/core/v1/zz_generated_event_controller.go +++ b/apis/core/v1/zz_generated_event_controller.go @@ -96,7 +96,7 @@ func (l *eventLister) Get(namespace, name string) (*v1.Event, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: EventGroupVersionKind.Group, Resource: "event", - }, name) + }, key) } return obj.(*v1.Event), nil } diff --git a/apis/core/v1/zz_generated_namespace_controller.go b/apis/core/v1/zz_generated_namespace_controller.go index 06470595..d3830ca2 100644 --- a/apis/core/v1/zz_generated_namespace_controller.go +++ b/apis/core/v1/zz_generated_namespace_controller.go @@ -96,7 +96,7 @@ func (l *namespaceLister) Get(namespace, name string) (*v1.Namespace, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: NamespaceGroupVersionKind.Group, Resource: "namespace", - }, name) + }, key) } return obj.(*v1.Namespace), nil } diff --git a/apis/core/v1/zz_generated_node_controller.go b/apis/core/v1/zz_generated_node_controller.go index 84755c48..645742e4 100644 --- a/apis/core/v1/zz_generated_node_controller.go +++ b/apis/core/v1/zz_generated_node_controller.go @@ -96,7 +96,7 @@ func (l *nodeLister) Get(namespace, name string) (*v1.Node, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: NodeGroupVersionKind.Group, Resource: "node", - }, name) + }, key) } return obj.(*v1.Node), nil } diff --git a/apis/core/v1/zz_generated_pod_controller.go b/apis/core/v1/zz_generated_pod_controller.go index 0f79f10d..8aba21b5 100644 --- a/apis/core/v1/zz_generated_pod_controller.go +++ b/apis/core/v1/zz_generated_pod_controller.go @@ -97,7 +97,7 @@ func (l *podLister) Get(namespace, name string) (*v1.Pod, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: PodGroupVersionKind.Group, Resource: "pod", - }, name) + }, key) } return obj.(*v1.Pod), nil } diff --git a/apis/core/v1/zz_generated_replication_controller_controller.go b/apis/core/v1/zz_generated_replication_controller_controller.go index 6df8c94d..4aa8bd05 100644 --- a/apis/core/v1/zz_generated_replication_controller_controller.go +++ b/apis/core/v1/zz_generated_replication_controller_controller.go @@ -97,7 +97,7 @@ func (l *replicationControllerLister) Get(namespace, name string) (*v1.Replicati return nil, errors.NewNotFound(schema.GroupResource{ Group: ReplicationControllerGroupVersionKind.Group, Resource: "replicationController", - }, name) + }, key) } return obj.(*v1.ReplicationController), nil } diff --git a/apis/core/v1/zz_generated_secret_controller.go b/apis/core/v1/zz_generated_secret_controller.go index f950be5f..0d7fbe07 100644 --- a/apis/core/v1/zz_generated_secret_controller.go +++ b/apis/core/v1/zz_generated_secret_controller.go @@ -97,7 +97,7 @@ func (l *secretLister) Get(namespace, name string) (*v1.Secret, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: SecretGroupVersionKind.Group, Resource: "secret", - }, name) + }, key) } return obj.(*v1.Secret), nil } diff --git a/apis/core/v1/zz_generated_service_account_controller.go b/apis/core/v1/zz_generated_service_account_controller.go index 954db696..1c60e7ea 100644 --- a/apis/core/v1/zz_generated_service_account_controller.go +++ b/apis/core/v1/zz_generated_service_account_controller.go @@ -97,7 +97,7 @@ func (l *serviceAccountLister) Get(namespace, name string) (*v1.ServiceAccount, return nil, errors.NewNotFound(schema.GroupResource{ Group: ServiceAccountGroupVersionKind.Group, Resource: "serviceAccount", - }, name) + }, key) } return obj.(*v1.ServiceAccount), nil } diff --git a/apis/core/v1/zz_generated_service_controller.go b/apis/core/v1/zz_generated_service_controller.go index 69060d6e..b65c8d1c 100644 --- a/apis/core/v1/zz_generated_service_controller.go +++ b/apis/core/v1/zz_generated_service_controller.go @@ -97,7 +97,7 @@ func (l *serviceLister) Get(namespace, name string) (*v1.Service, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: ServiceGroupVersionKind.Group, Resource: "service", - }, name) + }, key) } return obj.(*v1.Service), nil } diff --git a/apis/extensions/v1beta1/zz_generated_deepcopy.go b/apis/extensions/v1beta1/zz_generated_deepcopy.go index c3ad8740..fb47897d 100644 --- a/apis/extensions/v1beta1/zz_generated_deepcopy.go +++ b/apis/extensions/v1beta1/zz_generated_deepcopy.go @@ -1,34 +1,10 @@ package v1beta1 import ( - reflect "reflect" - extensions_v1beta1 "k8s.io/api/extensions/v1beta1" - conversion "k8s.io/apimachinery/pkg/conversion" runtime "k8s.io/apimachinery/pkg/runtime" ) -func init() { - SchemeBuilder.Register(RegisterDeepCopies) -} - -// RegisterDeepCopies adds deep-copy functions to the given scheme. Public -// to allow building arbitrary schemes. -// -// Deprecated: deepcopy registration will go away when static deepcopy is fully implemented. -func RegisterDeepCopies(scheme *runtime.Scheme) error { - return scheme.AddGeneratedDeepCopyFuncs( - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*IngressList).DeepCopyInto(out.(*IngressList)) - return nil - }, InType: reflect.TypeOf(&IngressList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PodSecurityPolicyList).DeepCopyInto(out.(*PodSecurityPolicyList)) - return nil - }, InType: reflect.TypeOf(&PodSecurityPolicyList{})}, - ) -} - // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *IngressList) DeepCopyInto(out *IngressList) { *out = *in @@ -58,9 +34,8 @@ func (in *IngressList) DeepCopy() *IngressList { func (in *IngressList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -92,7 +67,6 @@ func (in *PodSecurityPolicyList) DeepCopy() *PodSecurityPolicyList { func (in *PodSecurityPolicyList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } diff --git a/apis/extensions/v1beta1/zz_generated_ingress_controller.go b/apis/extensions/v1beta1/zz_generated_ingress_controller.go index ce7e5fdc..e3675bd0 100644 --- a/apis/extensions/v1beta1/zz_generated_ingress_controller.go +++ b/apis/extensions/v1beta1/zz_generated_ingress_controller.go @@ -97,7 +97,7 @@ func (l *ingressLister) Get(namespace, name string) (*v1beta1.Ingress, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: IngressGroupVersionKind.Group, Resource: "ingress", - }, name) + }, key) } return obj.(*v1beta1.Ingress), nil } diff --git a/apis/extensions/v1beta1/zz_generated_pod_security_policy_controller.go b/apis/extensions/v1beta1/zz_generated_pod_security_policy_controller.go index b81b6863..5be0e181 100644 --- a/apis/extensions/v1beta1/zz_generated_pod_security_policy_controller.go +++ b/apis/extensions/v1beta1/zz_generated_pod_security_policy_controller.go @@ -96,7 +96,7 @@ func (l *podSecurityPolicyLister) Get(namespace, name string) (*v1beta1.PodSecur return nil, errors.NewNotFound(schema.GroupResource{ Group: PodSecurityPolicyGroupVersionKind.Group, Resource: "podSecurityPolicy", - }, name) + }, key) } return obj.(*v1beta1.PodSecurityPolicy), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_auth_config_controller.go b/apis/management.cattle.io/v3/zz_generated_auth_config_controller.go index ff00c36b..7175b694 100644 --- a/apis/management.cattle.io/v3/zz_generated_auth_config_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_auth_config_controller.go @@ -95,7 +95,7 @@ func (l *authConfigLister) Get(namespace, name string) (*AuthConfig, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: AuthConfigGroupVersionKind.Group, Resource: "authConfig", - }, name) + }, key) } return obj.(*AuthConfig), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_catalog_controller.go b/apis/management.cattle.io/v3/zz_generated_catalog_controller.go index 104e17a3..1087660f 100644 --- a/apis/management.cattle.io/v3/zz_generated_catalog_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_catalog_controller.go @@ -95,7 +95,7 @@ func (l *catalogLister) Get(namespace, name string) (*Catalog, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: CatalogGroupVersionKind.Group, Resource: "catalog", - }, name) + }, key) } return obj.(*Catalog), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_cluster_alert_controller.go b/apis/management.cattle.io/v3/zz_generated_cluster_alert_controller.go index 18aad8b1..3e49e934 100644 --- a/apis/management.cattle.io/v3/zz_generated_cluster_alert_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_cluster_alert_controller.go @@ -96,7 +96,7 @@ func (l *clusterAlertLister) Get(namespace, name string) (*ClusterAlert, error) return nil, errors.NewNotFound(schema.GroupResource{ Group: ClusterAlertGroupVersionKind.Group, Resource: "clusterAlert", - }, name) + }, key) } return obj.(*ClusterAlert), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_cluster_controller.go b/apis/management.cattle.io/v3/zz_generated_cluster_controller.go index 3f1c9c26..2dbb4320 100644 --- a/apis/management.cattle.io/v3/zz_generated_cluster_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_cluster_controller.go @@ -95,7 +95,7 @@ func (l *clusterLister) Get(namespace, name string) (*Cluster, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: ClusterGroupVersionKind.Group, Resource: "cluster", - }, name) + }, key) } return obj.(*Cluster), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_cluster_event_controller.go b/apis/management.cattle.io/v3/zz_generated_cluster_event_controller.go index b029f1d1..06f019a8 100644 --- a/apis/management.cattle.io/v3/zz_generated_cluster_event_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_cluster_event_controller.go @@ -96,7 +96,7 @@ func (l *clusterEventLister) Get(namespace, name string) (*ClusterEvent, error) return nil, errors.NewNotFound(schema.GroupResource{ Group: ClusterEventGroupVersionKind.Group, Resource: "clusterEvent", - }, name) + }, key) } return obj.(*ClusterEvent), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_cluster_logging_controller.go b/apis/management.cattle.io/v3/zz_generated_cluster_logging_controller.go index 19de7669..ff7865c6 100644 --- a/apis/management.cattle.io/v3/zz_generated_cluster_logging_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_cluster_logging_controller.go @@ -96,7 +96,7 @@ func (l *clusterLoggingLister) Get(namespace, name string) (*ClusterLogging, err return nil, errors.NewNotFound(schema.GroupResource{ Group: ClusterLoggingGroupVersionKind.Group, Resource: "clusterLogging", - }, name) + }, key) } return obj.(*ClusterLogging), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_cluster_pipeline_controller.go b/apis/management.cattle.io/v3/zz_generated_cluster_pipeline_controller.go index da4c0b85..3826e56b 100644 --- a/apis/management.cattle.io/v3/zz_generated_cluster_pipeline_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_cluster_pipeline_controller.go @@ -96,7 +96,7 @@ func (l *clusterPipelineLister) Get(namespace, name string) (*ClusterPipeline, e return nil, errors.NewNotFound(schema.GroupResource{ Group: ClusterPipelineGroupVersionKind.Group, Resource: "clusterPipeline", - }, name) + }, key) } return obj.(*ClusterPipeline), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_cluster_registration_token_controller.go b/apis/management.cattle.io/v3/zz_generated_cluster_registration_token_controller.go index cab297ad..6618c48b 100644 --- a/apis/management.cattle.io/v3/zz_generated_cluster_registration_token_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_cluster_registration_token_controller.go @@ -96,7 +96,7 @@ func (l *clusterRegistrationTokenLister) Get(namespace, name string) (*ClusterRe return nil, errors.NewNotFound(schema.GroupResource{ Group: ClusterRegistrationTokenGroupVersionKind.Group, Resource: "clusterRegistrationToken", - }, name) + }, key) } return obj.(*ClusterRegistrationToken), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_cluster_role_template_binding_controller.go b/apis/management.cattle.io/v3/zz_generated_cluster_role_template_binding_controller.go index 101bb371..807326f1 100644 --- a/apis/management.cattle.io/v3/zz_generated_cluster_role_template_binding_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_cluster_role_template_binding_controller.go @@ -96,7 +96,7 @@ func (l *clusterRoleTemplateBindingLister) Get(namespace, name string) (*Cluster return nil, errors.NewNotFound(schema.GroupResource{ Group: ClusterRoleTemplateBindingGroupVersionKind.Group, Resource: "clusterRoleTemplateBinding", - }, name) + }, key) } return obj.(*ClusterRoleTemplateBinding), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_compose_config_controller.go b/apis/management.cattle.io/v3/zz_generated_compose_config_controller.go index c32cf747..d3ce34ff 100644 --- a/apis/management.cattle.io/v3/zz_generated_compose_config_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_compose_config_controller.go @@ -95,7 +95,7 @@ func (l *composeConfigLister) Get(namespace, name string) (*ComposeConfig, error return nil, errors.NewNotFound(schema.GroupResource{ Group: ComposeConfigGroupVersionKind.Group, Resource: "composeConfig", - }, name) + }, key) } return obj.(*ComposeConfig), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_deepcopy.go b/apis/management.cattle.io/v3/zz_generated_deepcopy.go index fca24fc2..39a2b989 100644 --- a/apis/management.cattle.io/v3/zz_generated_deepcopy.go +++ b/apis/management.cattle.io/v3/zz_generated_deepcopy.go @@ -1,1060 +1,12 @@ package v3 import ( - reflect "reflect" - v1 "k8s.io/api/core/v1" rbac_v1 "k8s.io/api/rbac/v1" - conversion "k8s.io/apimachinery/pkg/conversion" runtime "k8s.io/apimachinery/pkg/runtime" version "k8s.io/apimachinery/pkg/version" ) -func init() { - SchemeBuilder.Register(RegisterDeepCopies) -} - -// RegisterDeepCopies adds deep-copy functions to the given scheme. Public -// to allow building arbitrary schemes. -// -// Deprecated: deepcopy registration will go away when static deepcopy is fully implemented. -func RegisterDeepCopies(scheme *runtime.Scheme) error { - return scheme.AddGeneratedDeepCopyFuncs( - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AWSCloudProvider).DeepCopyInto(out.(*AWSCloudProvider)) - return nil - }, InType: reflect.TypeOf(&AWSCloudProvider{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Action).DeepCopyInto(out.(*Action)) - return nil - }, InType: reflect.TypeOf(&Action{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ActiveDirectoryConfig).DeepCopyInto(out.(*ActiveDirectoryConfig)) - return nil - }, InType: reflect.TypeOf(&ActiveDirectoryConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ActiveDirectoryTestAndApplyInput).DeepCopyInto(out.(*ActiveDirectoryTestAndApplyInput)) - return nil - }, InType: reflect.TypeOf(&ActiveDirectoryTestAndApplyInput{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AlertCommonSpec).DeepCopyInto(out.(*AlertCommonSpec)) - return nil - }, InType: reflect.TypeOf(&AlertCommonSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AlertStatus).DeepCopyInto(out.(*AlertStatus)) - return nil - }, InType: reflect.TypeOf(&AlertStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AlertSystemImages).DeepCopyInto(out.(*AlertSystemImages)) - return nil - }, InType: reflect.TypeOf(&AlertSystemImages{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AmazonElasticContainerServiceConfig).DeepCopyInto(out.(*AmazonElasticContainerServiceConfig)) - return nil - }, InType: reflect.TypeOf(&AmazonElasticContainerServiceConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AuthAppInput).DeepCopyInto(out.(*AuthAppInput)) - return nil - }, InType: reflect.TypeOf(&AuthAppInput{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AuthConfig).DeepCopyInto(out.(*AuthConfig)) - return nil - }, InType: reflect.TypeOf(&AuthConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AuthConfigList).DeepCopyInto(out.(*AuthConfigList)) - return nil - }, InType: reflect.TypeOf(&AuthConfigList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AuthUserInput).DeepCopyInto(out.(*AuthUserInput)) - return nil - }, InType: reflect.TypeOf(&AuthUserInput{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AuthnConfig).DeepCopyInto(out.(*AuthnConfig)) - return nil - }, InType: reflect.TypeOf(&AuthnConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AuthzConfig).DeepCopyInto(out.(*AuthzConfig)) - return nil - }, InType: reflect.TypeOf(&AuthzConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AzureADConfig).DeepCopyInto(out.(*AzureADConfig)) - return nil - }, InType: reflect.TypeOf(&AzureADConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AzureADConfigApplyInput).DeepCopyInto(out.(*AzureADConfigApplyInput)) - return nil - }, InType: reflect.TypeOf(&AzureADConfigApplyInput{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AzureADConfigTestOutput).DeepCopyInto(out.(*AzureADConfigTestOutput)) - return nil - }, InType: reflect.TypeOf(&AzureADConfigTestOutput{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AzureCloudProvider).DeepCopyInto(out.(*AzureCloudProvider)) - return nil - }, InType: reflect.TypeOf(&AzureCloudProvider{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AzureKubernetesServiceConfig).DeepCopyInto(out.(*AzureKubernetesServiceConfig)) - return nil - }, InType: reflect.TypeOf(&AzureKubernetesServiceConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*BaseService).DeepCopyInto(out.(*BaseService)) - return nil - }, InType: reflect.TypeOf(&BaseService{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*BastionHost).DeepCopyInto(out.(*BastionHost)) - return nil - }, InType: reflect.TypeOf(&BastionHost{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*BlockStorageOpenstackOpts).DeepCopyInto(out.(*BlockStorageOpenstackOpts)) - return nil - }, InType: reflect.TypeOf(&BlockStorageOpenstackOpts{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*CalicoNetworkProvider).DeepCopyInto(out.(*CalicoNetworkProvider)) - return nil - }, InType: reflect.TypeOf(&CalicoNetworkProvider{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*CanalNetworkProvider).DeepCopyInto(out.(*CanalNetworkProvider)) - return nil - }, InType: reflect.TypeOf(&CanalNetworkProvider{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Catalog).DeepCopyInto(out.(*Catalog)) - return nil - }, InType: reflect.TypeOf(&Catalog{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*CatalogCondition).DeepCopyInto(out.(*CatalogCondition)) - return nil - }, InType: reflect.TypeOf(&CatalogCondition{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*CatalogList).DeepCopyInto(out.(*CatalogList)) - return nil - }, InType: reflect.TypeOf(&CatalogList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*CatalogSpec).DeepCopyInto(out.(*CatalogSpec)) - return nil - }, InType: reflect.TypeOf(&CatalogSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*CatalogStatus).DeepCopyInto(out.(*CatalogStatus)) - return nil - }, InType: reflect.TypeOf(&CatalogStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ChangePasswordInput).DeepCopyInto(out.(*ChangePasswordInput)) - return nil - }, InType: reflect.TypeOf(&ChangePasswordInput{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*CloudProvider).DeepCopyInto(out.(*CloudProvider)) - return nil - }, InType: reflect.TypeOf(&CloudProvider{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Cluster).DeepCopyInto(out.(*Cluster)) - return nil - }, InType: reflect.TypeOf(&Cluster{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterAlert).DeepCopyInto(out.(*ClusterAlert)) - return nil - }, InType: reflect.TypeOf(&ClusterAlert{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterAlertList).DeepCopyInto(out.(*ClusterAlertList)) - return nil - }, InType: reflect.TypeOf(&ClusterAlertList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterAlertSpec).DeepCopyInto(out.(*ClusterAlertSpec)) - return nil - }, InType: reflect.TypeOf(&ClusterAlertSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterComponentStatus).DeepCopyInto(out.(*ClusterComponentStatus)) - return nil - }, InType: reflect.TypeOf(&ClusterComponentStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterCondition).DeepCopyInto(out.(*ClusterCondition)) - return nil - }, InType: reflect.TypeOf(&ClusterCondition{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterEvent).DeepCopyInto(out.(*ClusterEvent)) - return nil - }, InType: reflect.TypeOf(&ClusterEvent{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterEventList).DeepCopyInto(out.(*ClusterEventList)) - return nil - }, InType: reflect.TypeOf(&ClusterEventList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterList).DeepCopyInto(out.(*ClusterList)) - return nil - }, InType: reflect.TypeOf(&ClusterList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterLogging).DeepCopyInto(out.(*ClusterLogging)) - return nil - }, InType: reflect.TypeOf(&ClusterLogging{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterLoggingList).DeepCopyInto(out.(*ClusterLoggingList)) - return nil - }, InType: reflect.TypeOf(&ClusterLoggingList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterLoggingSpec).DeepCopyInto(out.(*ClusterLoggingSpec)) - return nil - }, InType: reflect.TypeOf(&ClusterLoggingSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterLoggingStatus).DeepCopyInto(out.(*ClusterLoggingStatus)) - return nil - }, InType: reflect.TypeOf(&ClusterLoggingStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterPipeline).DeepCopyInto(out.(*ClusterPipeline)) - return nil - }, InType: reflect.TypeOf(&ClusterPipeline{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterPipelineList).DeepCopyInto(out.(*ClusterPipelineList)) - return nil - }, InType: reflect.TypeOf(&ClusterPipelineList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterPipelineSpec).DeepCopyInto(out.(*ClusterPipelineSpec)) - return nil - }, InType: reflect.TypeOf(&ClusterPipelineSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterPipelineStatus).DeepCopyInto(out.(*ClusterPipelineStatus)) - return nil - }, InType: reflect.TypeOf(&ClusterPipelineStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterRegistrationToken).DeepCopyInto(out.(*ClusterRegistrationToken)) - return nil - }, InType: reflect.TypeOf(&ClusterRegistrationToken{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterRegistrationTokenList).DeepCopyInto(out.(*ClusterRegistrationTokenList)) - return nil - }, InType: reflect.TypeOf(&ClusterRegistrationTokenList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterRegistrationTokenSpec).DeepCopyInto(out.(*ClusterRegistrationTokenSpec)) - return nil - }, InType: reflect.TypeOf(&ClusterRegistrationTokenSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterRegistrationTokenStatus).DeepCopyInto(out.(*ClusterRegistrationTokenStatus)) - return nil - }, InType: reflect.TypeOf(&ClusterRegistrationTokenStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterRoleTemplateBinding).DeepCopyInto(out.(*ClusterRoleTemplateBinding)) - return nil - }, InType: reflect.TypeOf(&ClusterRoleTemplateBinding{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterRoleTemplateBindingList).DeepCopyInto(out.(*ClusterRoleTemplateBindingList)) - return nil - }, InType: reflect.TypeOf(&ClusterRoleTemplateBindingList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterSpec).DeepCopyInto(out.(*ClusterSpec)) - return nil - }, InType: reflect.TypeOf(&ClusterSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterStatus).DeepCopyInto(out.(*ClusterStatus)) - return nil - }, InType: reflect.TypeOf(&ClusterStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ComposeCondition).DeepCopyInto(out.(*ComposeCondition)) - return nil - }, InType: reflect.TypeOf(&ComposeCondition{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ComposeConfig).DeepCopyInto(out.(*ComposeConfig)) - return nil - }, InType: reflect.TypeOf(&ComposeConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ComposeConfigList).DeepCopyInto(out.(*ComposeConfigList)) - return nil - }, InType: reflect.TypeOf(&ComposeConfigList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ComposeSpec).DeepCopyInto(out.(*ComposeSpec)) - return nil - }, InType: reflect.TypeOf(&ComposeSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ComposeStatus).DeepCopyInto(out.(*ComposeStatus)) - return nil - }, InType: reflect.TypeOf(&ComposeStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Condition).DeepCopyInto(out.(*Condition)) - return nil - }, InType: reflect.TypeOf(&Condition{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*CustomConfig).DeepCopyInto(out.(*CustomConfig)) - return nil - }, InType: reflect.TypeOf(&CustomConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*DiskVsphereOpts).DeepCopyInto(out.(*DiskVsphereOpts)) - return nil - }, InType: reflect.TypeOf(&DiskVsphereOpts{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*DockerInfo).DeepCopyInto(out.(*DockerInfo)) - return nil - }, InType: reflect.TypeOf(&DockerInfo{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*DynamicSchema).DeepCopyInto(out.(*DynamicSchema)) - return nil - }, InType: reflect.TypeOf(&DynamicSchema{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*DynamicSchemaList).DeepCopyInto(out.(*DynamicSchemaList)) - return nil - }, InType: reflect.TypeOf(&DynamicSchemaList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*DynamicSchemaSpec).DeepCopyInto(out.(*DynamicSchemaSpec)) - return nil - }, InType: reflect.TypeOf(&DynamicSchemaSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*DynamicSchemaStatus).DeepCopyInto(out.(*DynamicSchemaStatus)) - return nil - }, InType: reflect.TypeOf(&DynamicSchemaStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ETCDService).DeepCopyInto(out.(*ETCDService)) - return nil - }, InType: reflect.TypeOf(&ETCDService{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ElasticsearchConfig).DeepCopyInto(out.(*ElasticsearchConfig)) - return nil - }, InType: reflect.TypeOf(&ElasticsearchConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*EmbeddedConfig).DeepCopyInto(out.(*EmbeddedConfig)) - return nil - }, InType: reflect.TypeOf(&EmbeddedConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ExportOutput).DeepCopyInto(out.(*ExportOutput)) - return nil - }, InType: reflect.TypeOf(&ExportOutput{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Field).DeepCopyInto(out.(*Field)) - return nil - }, InType: reflect.TypeOf(&Field{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*File).DeepCopyInto(out.(*File)) - return nil - }, InType: reflect.TypeOf(&File{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Filter).DeepCopyInto(out.(*Filter)) - return nil - }, InType: reflect.TypeOf(&Filter{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*FlannelNetworkProvider).DeepCopyInto(out.(*FlannelNetworkProvider)) - return nil - }, InType: reflect.TypeOf(&FlannelNetworkProvider{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*FreeIpaConfig).DeepCopyInto(out.(*FreeIpaConfig)) - return nil - }, InType: reflect.TypeOf(&FreeIpaConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*FreeIpaTestAndApplyInput).DeepCopyInto(out.(*FreeIpaTestAndApplyInput)) - return nil - }, InType: reflect.TypeOf(&FreeIpaTestAndApplyInput{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*GenerateKubeConfigOutput).DeepCopyInto(out.(*GenerateKubeConfigOutput)) - return nil - }, InType: reflect.TypeOf(&GenerateKubeConfigOutput{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*GithubClusterConfig).DeepCopyInto(out.(*GithubClusterConfig)) - return nil - }, InType: reflect.TypeOf(&GithubClusterConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*GithubConfig).DeepCopyInto(out.(*GithubConfig)) - return nil - }, InType: reflect.TypeOf(&GithubConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*GithubConfigApplyInput).DeepCopyInto(out.(*GithubConfigApplyInput)) - return nil - }, InType: reflect.TypeOf(&GithubConfigApplyInput{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*GithubConfigTestOutput).DeepCopyInto(out.(*GithubConfigTestOutput)) - return nil - }, InType: reflect.TypeOf(&GithubConfigTestOutput{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*GlobalOpenstackOpts).DeepCopyInto(out.(*GlobalOpenstackOpts)) - return nil - }, InType: reflect.TypeOf(&GlobalOpenstackOpts{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*GlobalRole).DeepCopyInto(out.(*GlobalRole)) - return nil - }, InType: reflect.TypeOf(&GlobalRole{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*GlobalRoleBinding).DeepCopyInto(out.(*GlobalRoleBinding)) - return nil - }, InType: reflect.TypeOf(&GlobalRoleBinding{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*GlobalRoleBindingList).DeepCopyInto(out.(*GlobalRoleBindingList)) - return nil - }, InType: reflect.TypeOf(&GlobalRoleBindingList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*GlobalRoleList).DeepCopyInto(out.(*GlobalRoleList)) - return nil - }, InType: reflect.TypeOf(&GlobalRoleList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*GlobalVsphereOpts).DeepCopyInto(out.(*GlobalVsphereOpts)) - return nil - }, InType: reflect.TypeOf(&GlobalVsphereOpts{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*GoogleKubernetesEngineConfig).DeepCopyInto(out.(*GoogleKubernetesEngineConfig)) - return nil - }, InType: reflect.TypeOf(&GoogleKubernetesEngineConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Group).DeepCopyInto(out.(*Group)) - return nil - }, InType: reflect.TypeOf(&Group{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*GroupList).DeepCopyInto(out.(*GroupList)) - return nil - }, InType: reflect.TypeOf(&GroupList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*GroupMember).DeepCopyInto(out.(*GroupMember)) - return nil - }, InType: reflect.TypeOf(&GroupMember{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*GroupMemberList).DeepCopyInto(out.(*GroupMemberList)) - return nil - }, InType: reflect.TypeOf(&GroupMemberList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*HealthCheck).DeepCopyInto(out.(*HealthCheck)) - return nil - }, InType: reflect.TypeOf(&HealthCheck{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ImportClusterYamlInput).DeepCopyInto(out.(*ImportClusterYamlInput)) - return nil - }, InType: reflect.TypeOf(&ImportClusterYamlInput{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ImportYamlOutput).DeepCopyInto(out.(*ImportYamlOutput)) - return nil - }, InType: reflect.TypeOf(&ImportYamlOutput{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ImportedConfig).DeepCopyInto(out.(*ImportedConfig)) - return nil - }, InType: reflect.TypeOf(&ImportedConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*IngressConfig).DeepCopyInto(out.(*IngressConfig)) - return nil - }, InType: reflect.TypeOf(&IngressConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*KafkaConfig).DeepCopyInto(out.(*KafkaConfig)) - return nil - }, InType: reflect.TypeOf(&KafkaConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*KubeAPIService).DeepCopyInto(out.(*KubeAPIService)) - return nil - }, InType: reflect.TypeOf(&KubeAPIService{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*KubeControllerService).DeepCopyInto(out.(*KubeControllerService)) - return nil - }, InType: reflect.TypeOf(&KubeControllerService{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*KubeletService).DeepCopyInto(out.(*KubeletService)) - return nil - }, InType: reflect.TypeOf(&KubeletService{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*KubeproxyService).DeepCopyInto(out.(*KubeproxyService)) - return nil - }, InType: reflect.TypeOf(&KubeproxyService{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*KubernetesServicesOptions).DeepCopyInto(out.(*KubernetesServicesOptions)) - return nil - }, InType: reflect.TypeOf(&KubernetesServicesOptions{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*LdapConfig).DeepCopyInto(out.(*LdapConfig)) - return nil - }, InType: reflect.TypeOf(&LdapConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*LdapConfigList).DeepCopyInto(out.(*LdapConfigList)) - return nil - }, InType: reflect.TypeOf(&LdapConfigList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*LdapTestAndApplyInput).DeepCopyInto(out.(*LdapTestAndApplyInput)) - return nil - }, InType: reflect.TypeOf(&LdapTestAndApplyInput{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ListOpts).DeepCopyInto(out.(*ListOpts)) - return nil - }, InType: reflect.TypeOf(&ListOpts{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ListenConfig).DeepCopyInto(out.(*ListenConfig)) - return nil - }, InType: reflect.TypeOf(&ListenConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ListenConfigList).DeepCopyInto(out.(*ListenConfigList)) - return nil - }, InType: reflect.TypeOf(&ListenConfigList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*LoadBalancerOpenstackOpts).DeepCopyInto(out.(*LoadBalancerOpenstackOpts)) - return nil - }, InType: reflect.TypeOf(&LoadBalancerOpenstackOpts{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*LocalConfig).DeepCopyInto(out.(*LocalConfig)) - return nil - }, InType: reflect.TypeOf(&LocalConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*LoggingCommonSpec).DeepCopyInto(out.(*LoggingCommonSpec)) - return nil - }, InType: reflect.TypeOf(&LoggingCommonSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*LoggingCondition).DeepCopyInto(out.(*LoggingCondition)) - return nil - }, InType: reflect.TypeOf(&LoggingCondition{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*LoggingSystemImages).DeepCopyInto(out.(*LoggingSystemImages)) - return nil - }, InType: reflect.TypeOf(&LoggingSystemImages{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*MetadataOpenstackOpts).DeepCopyInto(out.(*MetadataOpenstackOpts)) - return nil - }, InType: reflect.TypeOf(&MetadataOpenstackOpts{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NetworkConfig).DeepCopyInto(out.(*NetworkConfig)) - return nil - }, InType: reflect.TypeOf(&NetworkConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NetworkVshpereOpts).DeepCopyInto(out.(*NetworkVshpereOpts)) - return nil - }, InType: reflect.TypeOf(&NetworkVshpereOpts{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Node).DeepCopyInto(out.(*Node)) - return nil - }, InType: reflect.TypeOf(&Node{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NodeCommonParams).DeepCopyInto(out.(*NodeCommonParams)) - return nil - }, InType: reflect.TypeOf(&NodeCommonParams{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NodeCondition).DeepCopyInto(out.(*NodeCondition)) - return nil - }, InType: reflect.TypeOf(&NodeCondition{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NodeDriver).DeepCopyInto(out.(*NodeDriver)) - return nil - }, InType: reflect.TypeOf(&NodeDriver{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NodeDriverList).DeepCopyInto(out.(*NodeDriverList)) - return nil - }, InType: reflect.TypeOf(&NodeDriverList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NodeDriverSpec).DeepCopyInto(out.(*NodeDriverSpec)) - return nil - }, InType: reflect.TypeOf(&NodeDriverSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NodeDriverStatus).DeepCopyInto(out.(*NodeDriverStatus)) - return nil - }, InType: reflect.TypeOf(&NodeDriverStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NodeList).DeepCopyInto(out.(*NodeList)) - return nil - }, InType: reflect.TypeOf(&NodeList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NodePool).DeepCopyInto(out.(*NodePool)) - return nil - }, InType: reflect.TypeOf(&NodePool{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NodePoolList).DeepCopyInto(out.(*NodePoolList)) - return nil - }, InType: reflect.TypeOf(&NodePoolList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NodePoolSpec).DeepCopyInto(out.(*NodePoolSpec)) - return nil - }, InType: reflect.TypeOf(&NodePoolSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NodePoolStatus).DeepCopyInto(out.(*NodePoolStatus)) - return nil - }, InType: reflect.TypeOf(&NodePoolStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NodeSpec).DeepCopyInto(out.(*NodeSpec)) - return nil - }, InType: reflect.TypeOf(&NodeSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NodeStatus).DeepCopyInto(out.(*NodeStatus)) - return nil - }, InType: reflect.TypeOf(&NodeStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NodeTemplate).DeepCopyInto(out.(*NodeTemplate)) - return nil - }, InType: reflect.TypeOf(&NodeTemplate{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NodeTemplateCondition).DeepCopyInto(out.(*NodeTemplateCondition)) - return nil - }, InType: reflect.TypeOf(&NodeTemplateCondition{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NodeTemplateList).DeepCopyInto(out.(*NodeTemplateList)) - return nil - }, InType: reflect.TypeOf(&NodeTemplateList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NodeTemplateSpec).DeepCopyInto(out.(*NodeTemplateSpec)) - return nil - }, InType: reflect.TypeOf(&NodeTemplateSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NodeTemplateStatus).DeepCopyInto(out.(*NodeTemplateStatus)) - return nil - }, InType: reflect.TypeOf(&NodeTemplateStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Notification).DeepCopyInto(out.(*Notification)) - return nil - }, InType: reflect.TypeOf(&Notification{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Notifier).DeepCopyInto(out.(*Notifier)) - return nil - }, InType: reflect.TypeOf(&Notifier{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NotifierList).DeepCopyInto(out.(*NotifierList)) - return nil - }, InType: reflect.TypeOf(&NotifierList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NotifierSpec).DeepCopyInto(out.(*NotifierSpec)) - return nil - }, InType: reflect.TypeOf(&NotifierSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NotifierStatus).DeepCopyInto(out.(*NotifierStatus)) - return nil - }, InType: reflect.TypeOf(&NotifierStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*OpenLdapConfig).DeepCopyInto(out.(*OpenLdapConfig)) - return nil - }, InType: reflect.TypeOf(&OpenLdapConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*OpenLdapTestAndApplyInput).DeepCopyInto(out.(*OpenLdapTestAndApplyInput)) - return nil - }, InType: reflect.TypeOf(&OpenLdapTestAndApplyInput{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*OpenstackCloudProvider).DeepCopyInto(out.(*OpenstackCloudProvider)) - return nil - }, InType: reflect.TypeOf(&OpenstackCloudProvider{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PagerdutyConfig).DeepCopyInto(out.(*PagerdutyConfig)) - return nil - }, InType: reflect.TypeOf(&PagerdutyConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Pipeline).DeepCopyInto(out.(*Pipeline)) - return nil - }, InType: reflect.TypeOf(&Pipeline{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PipelineCondition).DeepCopyInto(out.(*PipelineCondition)) - return nil - }, InType: reflect.TypeOf(&PipelineCondition{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PipelineExecution).DeepCopyInto(out.(*PipelineExecution)) - return nil - }, InType: reflect.TypeOf(&PipelineExecution{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PipelineExecutionList).DeepCopyInto(out.(*PipelineExecutionList)) - return nil - }, InType: reflect.TypeOf(&PipelineExecutionList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PipelineExecutionLog).DeepCopyInto(out.(*PipelineExecutionLog)) - return nil - }, InType: reflect.TypeOf(&PipelineExecutionLog{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PipelineExecutionLogList).DeepCopyInto(out.(*PipelineExecutionLogList)) - return nil - }, InType: reflect.TypeOf(&PipelineExecutionLogList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PipelineExecutionLogSpec).DeepCopyInto(out.(*PipelineExecutionLogSpec)) - return nil - }, InType: reflect.TypeOf(&PipelineExecutionLogSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PipelineExecutionSpec).DeepCopyInto(out.(*PipelineExecutionSpec)) - return nil - }, InType: reflect.TypeOf(&PipelineExecutionSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PipelineExecutionStatus).DeepCopyInto(out.(*PipelineExecutionStatus)) - return nil - }, InType: reflect.TypeOf(&PipelineExecutionStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PipelineList).DeepCopyInto(out.(*PipelineList)) - return nil - }, InType: reflect.TypeOf(&PipelineList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PipelineSpec).DeepCopyInto(out.(*PipelineSpec)) - return nil - }, InType: reflect.TypeOf(&PipelineSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PipelineStatus).DeepCopyInto(out.(*PipelineStatus)) - return nil - }, InType: reflect.TypeOf(&PipelineStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PipelineSystemImages).DeepCopyInto(out.(*PipelineSystemImages)) - return nil - }, InType: reflect.TypeOf(&PipelineSystemImages{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PodSecurityPolicyTemplate).DeepCopyInto(out.(*PodSecurityPolicyTemplate)) - return nil - }, InType: reflect.TypeOf(&PodSecurityPolicyTemplate{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PodSecurityPolicyTemplateList).DeepCopyInto(out.(*PodSecurityPolicyTemplateList)) - return nil - }, InType: reflect.TypeOf(&PodSecurityPolicyTemplateList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PodSecurityPolicyTemplateProjectBinding).DeepCopyInto(out.(*PodSecurityPolicyTemplateProjectBinding)) - return nil - }, InType: reflect.TypeOf(&PodSecurityPolicyTemplateProjectBinding{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PodSecurityPolicyTemplateProjectBindingList).DeepCopyInto(out.(*PodSecurityPolicyTemplateProjectBindingList)) - return nil - }, InType: reflect.TypeOf(&PodSecurityPolicyTemplateProjectBindingList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PortCheck).DeepCopyInto(out.(*PortCheck)) - return nil - }, InType: reflect.TypeOf(&PortCheck{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Preference).DeepCopyInto(out.(*Preference)) - return nil - }, InType: reflect.TypeOf(&Preference{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PreferenceList).DeepCopyInto(out.(*PreferenceList)) - return nil - }, InType: reflect.TypeOf(&PreferenceList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Principal).DeepCopyInto(out.(*Principal)) - return nil - }, InType: reflect.TypeOf(&Principal{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PrincipalList).DeepCopyInto(out.(*PrincipalList)) - return nil - }, InType: reflect.TypeOf(&PrincipalList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Principals).DeepCopyInto(out.(*Principals)) - return nil - }, InType: reflect.TypeOf(&Principals{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PrivateRegistry).DeepCopyInto(out.(*PrivateRegistry)) - return nil - }, InType: reflect.TypeOf(&PrivateRegistry{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Process).DeepCopyInto(out.(*Process)) - return nil - }, InType: reflect.TypeOf(&Process{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Project).DeepCopyInto(out.(*Project)) - return nil - }, InType: reflect.TypeOf(&Project{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ProjectAlert).DeepCopyInto(out.(*ProjectAlert)) - return nil - }, InType: reflect.TypeOf(&ProjectAlert{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ProjectAlertList).DeepCopyInto(out.(*ProjectAlertList)) - return nil - }, InType: reflect.TypeOf(&ProjectAlertList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ProjectAlertSpec).DeepCopyInto(out.(*ProjectAlertSpec)) - return nil - }, InType: reflect.TypeOf(&ProjectAlertSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ProjectCondition).DeepCopyInto(out.(*ProjectCondition)) - return nil - }, InType: reflect.TypeOf(&ProjectCondition{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ProjectList).DeepCopyInto(out.(*ProjectList)) - return nil - }, InType: reflect.TypeOf(&ProjectList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ProjectLogging).DeepCopyInto(out.(*ProjectLogging)) - return nil - }, InType: reflect.TypeOf(&ProjectLogging{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ProjectLoggingList).DeepCopyInto(out.(*ProjectLoggingList)) - return nil - }, InType: reflect.TypeOf(&ProjectLoggingList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ProjectLoggingSpec).DeepCopyInto(out.(*ProjectLoggingSpec)) - return nil - }, InType: reflect.TypeOf(&ProjectLoggingSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ProjectLoggingStatus).DeepCopyInto(out.(*ProjectLoggingStatus)) - return nil - }, InType: reflect.TypeOf(&ProjectLoggingStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ProjectNetworkPolicy).DeepCopyInto(out.(*ProjectNetworkPolicy)) - return nil - }, InType: reflect.TypeOf(&ProjectNetworkPolicy{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ProjectNetworkPolicyList).DeepCopyInto(out.(*ProjectNetworkPolicyList)) - return nil - }, InType: reflect.TypeOf(&ProjectNetworkPolicyList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ProjectNetworkPolicySpec).DeepCopyInto(out.(*ProjectNetworkPolicySpec)) - return nil - }, InType: reflect.TypeOf(&ProjectNetworkPolicySpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ProjectNetworkPolicyStatus).DeepCopyInto(out.(*ProjectNetworkPolicyStatus)) - return nil - }, InType: reflect.TypeOf(&ProjectNetworkPolicyStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ProjectRoleTemplateBinding).DeepCopyInto(out.(*ProjectRoleTemplateBinding)) - return nil - }, InType: reflect.TypeOf(&ProjectRoleTemplateBinding{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ProjectRoleTemplateBindingList).DeepCopyInto(out.(*ProjectRoleTemplateBindingList)) - return nil - }, InType: reflect.TypeOf(&ProjectRoleTemplateBindingList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ProjectSpec).DeepCopyInto(out.(*ProjectSpec)) - return nil - }, InType: reflect.TypeOf(&ProjectSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ProjectStatus).DeepCopyInto(out.(*ProjectStatus)) - return nil - }, InType: reflect.TypeOf(&ProjectStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PublicEndpoint).DeepCopyInto(out.(*PublicEndpoint)) - return nil - }, InType: reflect.TypeOf(&PublicEndpoint{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PublishImageConfig).DeepCopyInto(out.(*PublishImageConfig)) - return nil - }, InType: reflect.TypeOf(&PublishImageConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Question).DeepCopyInto(out.(*Question)) - return nil - }, InType: reflect.TypeOf(&Question{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*RKEConfigNode).DeepCopyInto(out.(*RKEConfigNode)) - return nil - }, InType: reflect.TypeOf(&RKEConfigNode{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*RKEConfigNodePlan).DeepCopyInto(out.(*RKEConfigNodePlan)) - return nil - }, InType: reflect.TypeOf(&RKEConfigNodePlan{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*RKEConfigServices).DeepCopyInto(out.(*RKEConfigServices)) - return nil - }, InType: reflect.TypeOf(&RKEConfigServices{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*RKEPlan).DeepCopyInto(out.(*RKEPlan)) - return nil - }, InType: reflect.TypeOf(&RKEPlan{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*RKESystemImages).DeepCopyInto(out.(*RKESystemImages)) - return nil - }, InType: reflect.TypeOf(&RKESystemImages{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*RancherKubernetesEngineConfig).DeepCopyInto(out.(*RancherKubernetesEngineConfig)) - return nil - }, InType: reflect.TypeOf(&RancherKubernetesEngineConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Recipient).DeepCopyInto(out.(*Recipient)) - return nil - }, InType: reflect.TypeOf(&Recipient{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*RepoPerm).DeepCopyInto(out.(*RepoPerm)) - return nil - }, InType: reflect.TypeOf(&RepoPerm{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*RoleTemplate).DeepCopyInto(out.(*RoleTemplate)) - return nil - }, InType: reflect.TypeOf(&RoleTemplate{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*RoleTemplateList).DeepCopyInto(out.(*RoleTemplateList)) - return nil - }, InType: reflect.TypeOf(&RoleTemplateList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*RouteOpenstackOpts).DeepCopyInto(out.(*RouteOpenstackOpts)) - return nil - }, InType: reflect.TypeOf(&RouteOpenstackOpts{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*RunPipelineInput).DeepCopyInto(out.(*RunPipelineInput)) - return nil - }, InType: reflect.TypeOf(&RunPipelineInput{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*RunScriptConfig).DeepCopyInto(out.(*RunScriptConfig)) - return nil - }, InType: reflect.TypeOf(&RunScriptConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SMTPConfig).DeepCopyInto(out.(*SMTPConfig)) - return nil - }, InType: reflect.TypeOf(&SMTPConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SchedulerService).DeepCopyInto(out.(*SchedulerService)) - return nil - }, InType: reflect.TypeOf(&SchedulerService{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SearchPrincipalsInput).DeepCopyInto(out.(*SearchPrincipalsInput)) - return nil - }, InType: reflect.TypeOf(&SearchPrincipalsInput{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SetPasswordInput).DeepCopyInto(out.(*SetPasswordInput)) - return nil - }, InType: reflect.TypeOf(&SetPasswordInput{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SetPodSecurityPolicyTemplateInput).DeepCopyInto(out.(*SetPodSecurityPolicyTemplateInput)) - return nil - }, InType: reflect.TypeOf(&SetPodSecurityPolicyTemplateInput{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Setting).DeepCopyInto(out.(*Setting)) - return nil - }, InType: reflect.TypeOf(&Setting{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SettingList).DeepCopyInto(out.(*SettingList)) - return nil - }, InType: reflect.TypeOf(&SettingList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SlackConfig).DeepCopyInto(out.(*SlackConfig)) - return nil - }, InType: reflect.TypeOf(&SlackConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SourceCodeConfig).DeepCopyInto(out.(*SourceCodeConfig)) - return nil - }, InType: reflect.TypeOf(&SourceCodeConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SourceCodeCredential).DeepCopyInto(out.(*SourceCodeCredential)) - return nil - }, InType: reflect.TypeOf(&SourceCodeCredential{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SourceCodeCredentialList).DeepCopyInto(out.(*SourceCodeCredentialList)) - return nil - }, InType: reflect.TypeOf(&SourceCodeCredentialList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SourceCodeCredentialSpec).DeepCopyInto(out.(*SourceCodeCredentialSpec)) - return nil - }, InType: reflect.TypeOf(&SourceCodeCredentialSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SourceCodeCredentialStatus).DeepCopyInto(out.(*SourceCodeCredentialStatus)) - return nil - }, InType: reflect.TypeOf(&SourceCodeCredentialStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SourceCodeRepository).DeepCopyInto(out.(*SourceCodeRepository)) - return nil - }, InType: reflect.TypeOf(&SourceCodeRepository{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SourceCodeRepositoryList).DeepCopyInto(out.(*SourceCodeRepositoryList)) - return nil - }, InType: reflect.TypeOf(&SourceCodeRepositoryList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SourceCodeRepositorySpec).DeepCopyInto(out.(*SourceCodeRepositorySpec)) - return nil - }, InType: reflect.TypeOf(&SourceCodeRepositorySpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SourceCodeRepositoryStatus).DeepCopyInto(out.(*SourceCodeRepositoryStatus)) - return nil - }, InType: reflect.TypeOf(&SourceCodeRepositoryStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SplunkConfig).DeepCopyInto(out.(*SplunkConfig)) - return nil - }, InType: reflect.TypeOf(&SplunkConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Stage).DeepCopyInto(out.(*Stage)) - return nil - }, InType: reflect.TypeOf(&Stage{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*StageStatus).DeepCopyInto(out.(*StageStatus)) - return nil - }, InType: reflect.TypeOf(&StageStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Step).DeepCopyInto(out.(*Step)) - return nil - }, InType: reflect.TypeOf(&Step{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*StepStatus).DeepCopyInto(out.(*StepStatus)) - return nil - }, InType: reflect.TypeOf(&StepStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SubQuestion).DeepCopyInto(out.(*SubQuestion)) - return nil - }, InType: reflect.TypeOf(&SubQuestion{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SyslogConfig).DeepCopyInto(out.(*SyslogConfig)) - return nil - }, InType: reflect.TypeOf(&SyslogConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*TargetEvent).DeepCopyInto(out.(*TargetEvent)) - return nil - }, InType: reflect.TypeOf(&TargetEvent{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*TargetNode).DeepCopyInto(out.(*TargetNode)) - return nil - }, InType: reflect.TypeOf(&TargetNode{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*TargetPod).DeepCopyInto(out.(*TargetPod)) - return nil - }, InType: reflect.TypeOf(&TargetPod{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*TargetSystemService).DeepCopyInto(out.(*TargetSystemService)) - return nil - }, InType: reflect.TypeOf(&TargetSystemService{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*TargetWorkload).DeepCopyInto(out.(*TargetWorkload)) - return nil - }, InType: reflect.TypeOf(&TargetWorkload{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Template).DeepCopyInto(out.(*Template)) - return nil - }, InType: reflect.TypeOf(&Template{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*TemplateContent).DeepCopyInto(out.(*TemplateContent)) - return nil - }, InType: reflect.TypeOf(&TemplateContent{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*TemplateContentList).DeepCopyInto(out.(*TemplateContentList)) - return nil - }, InType: reflect.TypeOf(&TemplateContentList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*TemplateList).DeepCopyInto(out.(*TemplateList)) - return nil - }, InType: reflect.TypeOf(&TemplateList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*TemplateSpec).DeepCopyInto(out.(*TemplateSpec)) - return nil - }, InType: reflect.TypeOf(&TemplateSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*TemplateStatus).DeepCopyInto(out.(*TemplateStatus)) - return nil - }, InType: reflect.TypeOf(&TemplateStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*TemplateVersion).DeepCopyInto(out.(*TemplateVersion)) - return nil - }, InType: reflect.TypeOf(&TemplateVersion{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*TemplateVersionList).DeepCopyInto(out.(*TemplateVersionList)) - return nil - }, InType: reflect.TypeOf(&TemplateVersionList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*TemplateVersionSpec).DeepCopyInto(out.(*TemplateVersionSpec)) - return nil - }, InType: reflect.TypeOf(&TemplateVersionSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*TemplateVersionStatus).DeepCopyInto(out.(*TemplateVersionStatus)) - return nil - }, InType: reflect.TypeOf(&TemplateVersionStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Token).DeepCopyInto(out.(*Token)) - return nil - }, InType: reflect.TypeOf(&Token{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*TokenList).DeepCopyInto(out.(*TokenList)) - return nil - }, InType: reflect.TypeOf(&TokenList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*User).DeepCopyInto(out.(*User)) - return nil - }, InType: reflect.TypeOf(&User{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*UserAttribute).DeepCopyInto(out.(*UserAttribute)) - return nil - }, InType: reflect.TypeOf(&UserAttribute{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*UserAttributeList).DeepCopyInto(out.(*UserAttributeList)) - return nil - }, InType: reflect.TypeOf(&UserAttributeList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*UserList).DeepCopyInto(out.(*UserList)) - return nil - }, InType: reflect.TypeOf(&UserList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Values).DeepCopyInto(out.(*Values)) - return nil - }, InType: reflect.TypeOf(&Values{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*VersionCommits).DeepCopyInto(out.(*VersionCommits)) - return nil - }, InType: reflect.TypeOf(&VersionCommits{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*VirtualCenterConfig).DeepCopyInto(out.(*VirtualCenterConfig)) - return nil - }, InType: reflect.TypeOf(&VirtualCenterConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*VsphereCloudProvider).DeepCopyInto(out.(*VsphereCloudProvider)) - return nil - }, InType: reflect.TypeOf(&VsphereCloudProvider{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*WebhookConfig).DeepCopyInto(out.(*WebhookConfig)) - return nil - }, InType: reflect.TypeOf(&WebhookConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*WorkspaceVsphereOpts).DeepCopyInto(out.(*WorkspaceVsphereOpts)) - return nil - }, InType: reflect.TypeOf(&WorkspaceVsphereOpts{})}, - ) -} - // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *AWSCloudProvider) DeepCopyInto(out *AWSCloudProvider) { *out = *in @@ -1124,9 +76,8 @@ func (in *ActiveDirectoryConfig) DeepCopy() *ActiveDirectoryConfig { func (in *ActiveDirectoryConfig) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -1258,9 +209,8 @@ func (in *AuthConfig) DeepCopy() *AuthConfig { func (in *AuthConfig) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -1292,9 +242,8 @@ func (in *AuthConfigList) DeepCopy() *AuthConfigList { func (in *AuthConfigList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -1387,9 +336,8 @@ func (in *AzureADConfig) DeepCopy() *AzureADConfig { func (in *AzureADConfig) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -1586,9 +534,8 @@ func (in *Catalog) DeepCopy() *Catalog { func (in *Catalog) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -1636,9 +583,8 @@ func (in *CatalogList) DeepCopy() *CatalogList { func (in *CatalogList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -1777,9 +723,8 @@ func (in *Cluster) DeepCopy() *Cluster { func (in *Cluster) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -1807,9 +752,8 @@ func (in *ClusterAlert) DeepCopy() *ClusterAlert { func (in *ClusterAlert) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -1841,9 +785,8 @@ func (in *ClusterAlertList) DeepCopy() *ClusterAlertList { func (in *ClusterAlertList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -1949,9 +892,8 @@ func (in *ClusterEvent) DeepCopy() *ClusterEvent { func (in *ClusterEvent) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -1983,9 +925,8 @@ func (in *ClusterEventList) DeepCopy() *ClusterEventList { func (in *ClusterEventList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -2017,9 +958,8 @@ func (in *ClusterList) DeepCopy() *ClusterList { func (in *ClusterList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -2047,9 +987,8 @@ func (in *ClusterLogging) DeepCopy() *ClusterLogging { func (in *ClusterLogging) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -2081,9 +1020,8 @@ func (in *ClusterLoggingList) DeepCopy() *ClusterLoggingList { func (in *ClusterLoggingList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -2168,9 +1106,8 @@ func (in *ClusterPipeline) DeepCopy() *ClusterPipeline { func (in *ClusterPipeline) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -2202,9 +1139,8 @@ func (in *ClusterPipelineList) DeepCopy() *ClusterPipelineList { func (in *ClusterPipelineList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -2273,9 +1209,8 @@ func (in *ClusterRegistrationToken) DeepCopy() *ClusterRegistrationToken { func (in *ClusterRegistrationToken) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -2307,9 +1242,8 @@ func (in *ClusterRegistrationTokenList) DeepCopy() *ClusterRegistrationTokenList func (in *ClusterRegistrationTokenList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -2367,9 +1301,8 @@ func (in *ClusterRoleTemplateBinding) DeepCopy() *ClusterRoleTemplateBinding { func (in *ClusterRoleTemplateBinding) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -2401,9 +1334,8 @@ func (in *ClusterRoleTemplateBindingList) DeepCopy() *ClusterRoleTemplateBinding func (in *ClusterRoleTemplateBindingList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -2582,9 +1514,8 @@ func (in *ComposeConfig) DeepCopy() *ComposeConfig { func (in *ComposeConfig) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -2616,9 +1547,8 @@ func (in *ComposeConfigList) DeepCopy() *ComposeConfigList { func (in *ComposeConfigList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -2758,9 +1688,8 @@ func (in *DynamicSchema) DeepCopy() *DynamicSchema { func (in *DynamicSchema) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -2792,9 +1721,8 @@ func (in *DynamicSchemaList) DeepCopy() *DynamicSchemaList { func (in *DynamicSchemaList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -3045,9 +1973,8 @@ func (in *FreeIpaConfig) DeepCopy() *FreeIpaConfig { func (in *FreeIpaConfig) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -3071,9 +1998,8 @@ func (in *FreeIpaTestAndApplyInput) DeepCopy() *FreeIpaTestAndApplyInput { func (in *FreeIpaTestAndApplyInput) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -3131,9 +2057,8 @@ func (in *GithubConfig) DeepCopy() *GithubConfig { func (in *GithubConfig) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -3214,9 +2139,8 @@ func (in *GlobalRole) DeepCopy() *GlobalRole { func (in *GlobalRole) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -3241,9 +2165,8 @@ func (in *GlobalRoleBinding) DeepCopy() *GlobalRoleBinding { func (in *GlobalRoleBinding) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -3275,9 +2198,8 @@ func (in *GlobalRoleBindingList) DeepCopy() *GlobalRoleBindingList { func (in *GlobalRoleBindingList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -3309,9 +2231,8 @@ func (in *GlobalRoleList) DeepCopy() *GlobalRoleList { func (in *GlobalRoleList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -3380,9 +2301,8 @@ func (in *Group) DeepCopy() *Group { func (in *Group) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -3414,9 +2334,8 @@ func (in *GroupList) DeepCopy() *GroupList { func (in *GroupList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -3441,9 +2360,8 @@ func (in *GroupMember) DeepCopy() *GroupMember { func (in *GroupMember) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -3475,9 +2393,8 @@ func (in *GroupMemberList) DeepCopy() *GroupMemberList { func (in *GroupMemberList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -3749,9 +2666,8 @@ func (in *LdapConfig) DeepCopy() *LdapConfig { func (in *LdapConfig) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -3783,9 +2699,8 @@ func (in *LdapConfigList) DeepCopy() *LdapConfigList { func (in *LdapConfigList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -3809,9 +2724,8 @@ func (in *LdapTestAndApplyInput) DeepCopy() *LdapTestAndApplyInput { func (in *LdapTestAndApplyInput) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -3886,9 +2800,8 @@ func (in *ListenConfig) DeepCopy() *ListenConfig { func (in *ListenConfig) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -3920,9 +2833,8 @@ func (in *ListenConfigList) DeepCopy() *ListenConfigList { func (in *ListenConfigList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -3964,9 +2876,8 @@ func (in *LocalConfig) DeepCopy() *LocalConfig { func (in *LocalConfig) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -4167,9 +3078,8 @@ func (in *Node) DeepCopy() *Node { func (in *Node) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -4259,9 +3169,8 @@ func (in *NodeDriver) DeepCopy() *NodeDriver { func (in *NodeDriver) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -4293,9 +3202,8 @@ func (in *NodeDriverList) DeepCopy() *NodeDriverList { func (in *NodeDriverList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -4369,9 +3277,8 @@ func (in *NodeList) DeepCopy() *NodeList { func (in *NodeList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -4399,9 +3306,8 @@ func (in *NodePool) DeepCopy() *NodePool { func (in *NodePool) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -4433,9 +3339,8 @@ func (in *NodePoolList) DeepCopy() *NodePoolList { func (in *NodePoolList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -4638,9 +3543,8 @@ func (in *NodeTemplate) DeepCopy() *NodeTemplate { func (in *NodeTemplate) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -4688,9 +3592,8 @@ func (in *NodeTemplateList) DeepCopy() *NodeTemplateList { func (in *NodeTemplateList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -4808,9 +3711,8 @@ func (in *Notifier) DeepCopy() *Notifier { func (in *Notifier) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -4842,9 +3744,8 @@ func (in *NotifierList) DeepCopy() *NotifierList { func (in *NotifierList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -4936,9 +3837,8 @@ func (in *OpenLdapConfig) DeepCopy() *OpenLdapConfig { func (in *OpenLdapConfig) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -4962,9 +3862,8 @@ func (in *OpenLdapTestAndApplyInput) DeepCopy() *OpenLdapTestAndApplyInput { func (in *OpenLdapTestAndApplyInput) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -5029,9 +3928,8 @@ func (in *Pipeline) DeepCopy() *Pipeline { func (in *Pipeline) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -5075,9 +3973,8 @@ func (in *PipelineExecution) DeepCopy() *PipelineExecution { func (in *PipelineExecution) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -5109,9 +4006,8 @@ func (in *PipelineExecutionList) DeepCopy() *PipelineExecutionList { func (in *PipelineExecutionList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -5138,9 +4034,8 @@ func (in *PipelineExecutionLog) DeepCopy() *PipelineExecutionLog { func (in *PipelineExecutionLog) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -5172,9 +4067,8 @@ func (in *PipelineExecutionLogList) DeepCopy() *PipelineExecutionLogList { func (in *PipelineExecutionLogList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -5274,9 +4168,8 @@ func (in *PipelineList) DeepCopy() *PipelineList { func (in *PipelineList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -5373,9 +4266,8 @@ func (in *PodSecurityPolicyTemplate) DeepCopy() *PodSecurityPolicyTemplate { func (in *PodSecurityPolicyTemplate) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -5407,9 +4299,8 @@ func (in *PodSecurityPolicyTemplateList) DeepCopy() *PodSecurityPolicyTemplateLi func (in *PodSecurityPolicyTemplateList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -5435,9 +4326,8 @@ func (in *PodSecurityPolicyTemplateProjectBinding) DeepCopy() *PodSecurityPolicy func (in *PodSecurityPolicyTemplateProjectBinding) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -5469,9 +4359,8 @@ func (in *PodSecurityPolicyTemplateProjectBindingList) DeepCopy() *PodSecurityPo func (in *PodSecurityPolicyTemplateProjectBindingList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -5513,9 +4402,8 @@ func (in *Preference) DeepCopy() *Preference { func (in *Preference) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -5547,9 +4435,8 @@ func (in *PreferenceList) DeepCopy() *PreferenceList { func (in *PreferenceList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -5581,9 +4468,8 @@ func (in *Principal) DeepCopy() *Principal { func (in *Principal) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -5615,9 +4501,8 @@ func (in *PrincipalList) DeepCopy() *PrincipalList { func (in *PrincipalList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -5733,9 +4618,8 @@ func (in *Project) DeepCopy() *Project { func (in *Project) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -5763,9 +4647,8 @@ func (in *ProjectAlert) DeepCopy() *ProjectAlert { func (in *ProjectAlert) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -5797,9 +4680,8 @@ func (in *ProjectAlertList) DeepCopy() *ProjectAlertList { func (in *ProjectAlertList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -5882,9 +4764,8 @@ func (in *ProjectList) DeepCopy() *ProjectList { func (in *ProjectList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -5912,9 +4793,8 @@ func (in *ProjectLogging) DeepCopy() *ProjectLogging { func (in *ProjectLogging) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -5946,9 +4826,8 @@ func (in *ProjectLoggingList) DeepCopy() *ProjectLoggingList { func (in *ProjectLoggingList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -6023,9 +4902,8 @@ func (in *ProjectNetworkPolicy) DeepCopy() *ProjectNetworkPolicy { func (in *ProjectNetworkPolicy) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -6057,9 +4935,8 @@ func (in *ProjectNetworkPolicyList) DeepCopy() *ProjectNetworkPolicyList { func (in *ProjectNetworkPolicyList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -6117,9 +4994,8 @@ func (in *ProjectRoleTemplateBinding) DeepCopy() *ProjectRoleTemplateBinding { func (in *ProjectRoleTemplateBinding) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -6151,9 +5027,8 @@ func (in *ProjectRoleTemplateBindingList) DeepCopy() *ProjectRoleTemplateBinding func (in *ProjectRoleTemplateBindingList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -6501,9 +5376,8 @@ func (in *RoleTemplate) DeepCopy() *RoleTemplate { func (in *RoleTemplate) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -6535,9 +5409,8 @@ func (in *RoleTemplateList) DeepCopy() *RoleTemplateList { func (in *RoleTemplateList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -6696,9 +5569,8 @@ func (in *Setting) DeepCopy() *Setting { func (in *Setting) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -6730,9 +5602,8 @@ func (in *SettingList) DeepCopy() *SettingList { func (in *SettingList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -6792,9 +5663,8 @@ func (in *SourceCodeCredential) DeepCopy() *SourceCodeCredential { func (in *SourceCodeCredential) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -6826,9 +5696,8 @@ func (in *SourceCodeCredentialList) DeepCopy() *SourceCodeCredentialList { func (in *SourceCodeCredentialList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -6888,9 +5757,8 @@ func (in *SourceCodeRepository) DeepCopy() *SourceCodeRepository { func (in *SourceCodeRepository) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -6922,9 +5790,8 @@ func (in *SourceCodeRepositoryList) DeepCopy() *SourceCodeRepositoryList { func (in *SourceCodeRepositoryList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -7234,9 +6101,8 @@ func (in *Template) DeepCopy() *Template { func (in *Template) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -7261,9 +6127,8 @@ func (in *TemplateContent) DeepCopy() *TemplateContent { func (in *TemplateContent) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -7295,9 +6160,8 @@ func (in *TemplateContentList) DeepCopy() *TemplateContentList { func (in *TemplateContentList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -7329,9 +6193,8 @@ func (in *TemplateList) DeepCopy() *TemplateList { func (in *TemplateList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -7402,9 +6265,8 @@ func (in *TemplateVersion) DeepCopy() *TemplateVersion { func (in *TemplateVersion) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -7436,9 +6298,8 @@ func (in *TemplateVersionList) DeepCopy() *TemplateVersionList { func (in *TemplateVersionList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -7531,9 +6392,8 @@ func (in *Token) DeepCopy() *Token { func (in *Token) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -7565,9 +6425,8 @@ func (in *TokenList) DeepCopy() *TokenList { func (in *TokenList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -7597,9 +6456,8 @@ func (in *User) DeepCopy() *User { func (in *User) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -7631,9 +6489,8 @@ func (in *UserAttribute) DeepCopy() *UserAttribute { func (in *UserAttribute) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -7665,9 +6522,8 @@ func (in *UserAttributeList) DeepCopy() *UserAttributeList { func (in *UserAttributeList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -7699,9 +6555,8 @@ func (in *UserList) DeepCopy() *UserList { func (in *UserList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. diff --git a/apis/management.cattle.io/v3/zz_generated_dynamic_schema_controller.go b/apis/management.cattle.io/v3/zz_generated_dynamic_schema_controller.go index 6a5d7053..d302c142 100644 --- a/apis/management.cattle.io/v3/zz_generated_dynamic_schema_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_dynamic_schema_controller.go @@ -95,7 +95,7 @@ func (l *dynamicSchemaLister) Get(namespace, name string) (*DynamicSchema, error return nil, errors.NewNotFound(schema.GroupResource{ Group: DynamicSchemaGroupVersionKind.Group, Resource: "dynamicSchema", - }, name) + }, key) } return obj.(*DynamicSchema), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_global_role_binding_controller.go b/apis/management.cattle.io/v3/zz_generated_global_role_binding_controller.go index 3bcb5079..ccb985f9 100644 --- a/apis/management.cattle.io/v3/zz_generated_global_role_binding_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_global_role_binding_controller.go @@ -95,7 +95,7 @@ func (l *globalRoleBindingLister) Get(namespace, name string) (*GlobalRoleBindin return nil, errors.NewNotFound(schema.GroupResource{ Group: GlobalRoleBindingGroupVersionKind.Group, Resource: "globalRoleBinding", - }, name) + }, key) } return obj.(*GlobalRoleBinding), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_global_role_controller.go b/apis/management.cattle.io/v3/zz_generated_global_role_controller.go index 6b754ba5..cf5ff6cd 100644 --- a/apis/management.cattle.io/v3/zz_generated_global_role_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_global_role_controller.go @@ -95,7 +95,7 @@ func (l *globalRoleLister) Get(namespace, name string) (*GlobalRole, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: GlobalRoleGroupVersionKind.Group, Resource: "globalRole", - }, name) + }, key) } return obj.(*GlobalRole), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_group_controller.go b/apis/management.cattle.io/v3/zz_generated_group_controller.go index a09b8d6a..9f4d95ae 100644 --- a/apis/management.cattle.io/v3/zz_generated_group_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_group_controller.go @@ -95,7 +95,7 @@ func (l *groupLister) Get(namespace, name string) (*Group, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: GroupGroupVersionKind.Group, Resource: "group", - }, name) + }, key) } return obj.(*Group), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_group_member_controller.go b/apis/management.cattle.io/v3/zz_generated_group_member_controller.go index 1edf0623..1b33e1ea 100644 --- a/apis/management.cattle.io/v3/zz_generated_group_member_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_group_member_controller.go @@ -95,7 +95,7 @@ func (l *groupMemberLister) Get(namespace, name string) (*GroupMember, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: GroupMemberGroupVersionKind.Group, Resource: "groupMember", - }, name) + }, key) } return obj.(*GroupMember), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_ldap_config_controller.go b/apis/management.cattle.io/v3/zz_generated_ldap_config_controller.go index 91a436c7..4f0782ab 100644 --- a/apis/management.cattle.io/v3/zz_generated_ldap_config_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_ldap_config_controller.go @@ -95,7 +95,7 @@ func (l *ldapConfigLister) Get(namespace, name string) (*LdapConfig, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: LdapConfigGroupVersionKind.Group, Resource: "ldapConfig", - }, name) + }, key) } return obj.(*LdapConfig), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_listen_config_controller.go b/apis/management.cattle.io/v3/zz_generated_listen_config_controller.go index a9995bcf..30d93e5a 100644 --- a/apis/management.cattle.io/v3/zz_generated_listen_config_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_listen_config_controller.go @@ -95,7 +95,7 @@ func (l *listenConfigLister) Get(namespace, name string) (*ListenConfig, error) return nil, errors.NewNotFound(schema.GroupResource{ Group: ListenConfigGroupVersionKind.Group, Resource: "listenConfig", - }, name) + }, key) } return obj.(*ListenConfig), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_node_controller.go b/apis/management.cattle.io/v3/zz_generated_node_controller.go index 36c5b6bf..7b656490 100644 --- a/apis/management.cattle.io/v3/zz_generated_node_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_node_controller.go @@ -96,7 +96,7 @@ func (l *nodeLister) Get(namespace, name string) (*Node, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: NodeGroupVersionKind.Group, Resource: "node", - }, name) + }, key) } return obj.(*Node), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_node_driver_controller.go b/apis/management.cattle.io/v3/zz_generated_node_driver_controller.go index 3307aad6..415a2070 100644 --- a/apis/management.cattle.io/v3/zz_generated_node_driver_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_node_driver_controller.go @@ -95,7 +95,7 @@ func (l *nodeDriverLister) Get(namespace, name string) (*NodeDriver, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: NodeDriverGroupVersionKind.Group, Resource: "nodeDriver", - }, name) + }, key) } return obj.(*NodeDriver), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_node_pool_controller.go b/apis/management.cattle.io/v3/zz_generated_node_pool_controller.go index 4e115a6a..88e5e2d1 100644 --- a/apis/management.cattle.io/v3/zz_generated_node_pool_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_node_pool_controller.go @@ -96,7 +96,7 @@ func (l *nodePoolLister) Get(namespace, name string) (*NodePool, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: NodePoolGroupVersionKind.Group, Resource: "nodePool", - }, name) + }, key) } return obj.(*NodePool), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_node_template_controller.go b/apis/management.cattle.io/v3/zz_generated_node_template_controller.go index 81b95e43..0001577a 100644 --- a/apis/management.cattle.io/v3/zz_generated_node_template_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_node_template_controller.go @@ -96,7 +96,7 @@ func (l *nodeTemplateLister) Get(namespace, name string) (*NodeTemplate, error) return nil, errors.NewNotFound(schema.GroupResource{ Group: NodeTemplateGroupVersionKind.Group, Resource: "nodeTemplate", - }, name) + }, key) } return obj.(*NodeTemplate), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_notifier_controller.go b/apis/management.cattle.io/v3/zz_generated_notifier_controller.go index b0375a9d..eb50c804 100644 --- a/apis/management.cattle.io/v3/zz_generated_notifier_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_notifier_controller.go @@ -96,7 +96,7 @@ func (l *notifierLister) Get(namespace, name string) (*Notifier, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: NotifierGroupVersionKind.Group, Resource: "notifier", - }, name) + }, key) } return obj.(*Notifier), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_pipeline_controller.go b/apis/management.cattle.io/v3/zz_generated_pipeline_controller.go index 4ec85578..45d3b03b 100644 --- a/apis/management.cattle.io/v3/zz_generated_pipeline_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_pipeline_controller.go @@ -96,7 +96,7 @@ func (l *pipelineLister) Get(namespace, name string) (*Pipeline, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: PipelineGroupVersionKind.Group, Resource: "pipeline", - }, name) + }, key) } return obj.(*Pipeline), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_pipeline_execution_controller.go b/apis/management.cattle.io/v3/zz_generated_pipeline_execution_controller.go index 868f4706..f8bb04c1 100644 --- a/apis/management.cattle.io/v3/zz_generated_pipeline_execution_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_pipeline_execution_controller.go @@ -96,7 +96,7 @@ func (l *pipelineExecutionLister) Get(namespace, name string) (*PipelineExecutio return nil, errors.NewNotFound(schema.GroupResource{ Group: PipelineExecutionGroupVersionKind.Group, Resource: "pipelineExecution", - }, name) + }, key) } return obj.(*PipelineExecution), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_pipeline_execution_log_controller.go b/apis/management.cattle.io/v3/zz_generated_pipeline_execution_log_controller.go index 0516ba43..0378a0b8 100644 --- a/apis/management.cattle.io/v3/zz_generated_pipeline_execution_log_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_pipeline_execution_log_controller.go @@ -96,7 +96,7 @@ func (l *pipelineExecutionLogLister) Get(namespace, name string) (*PipelineExecu return nil, errors.NewNotFound(schema.GroupResource{ Group: PipelineExecutionLogGroupVersionKind.Group, Resource: "pipelineExecutionLog", - }, name) + }, key) } return obj.(*PipelineExecutionLog), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_pod_security_policy_template_controller.go b/apis/management.cattle.io/v3/zz_generated_pod_security_policy_template_controller.go index 8ef8df24..7029f1bc 100644 --- a/apis/management.cattle.io/v3/zz_generated_pod_security_policy_template_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_pod_security_policy_template_controller.go @@ -95,7 +95,7 @@ func (l *podSecurityPolicyTemplateLister) Get(namespace, name string) (*PodSecur return nil, errors.NewNotFound(schema.GroupResource{ Group: PodSecurityPolicyTemplateGroupVersionKind.Group, Resource: "podSecurityPolicyTemplate", - }, name) + }, key) } return obj.(*PodSecurityPolicyTemplate), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_pod_security_policy_template_project_binding_controller.go b/apis/management.cattle.io/v3/zz_generated_pod_security_policy_template_project_binding_controller.go index 63c8a773..e2ab96dd 100644 --- a/apis/management.cattle.io/v3/zz_generated_pod_security_policy_template_project_binding_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_pod_security_policy_template_project_binding_controller.go @@ -96,7 +96,7 @@ func (l *podSecurityPolicyTemplateProjectBindingLister) Get(namespace, name stri return nil, errors.NewNotFound(schema.GroupResource{ Group: PodSecurityPolicyTemplateProjectBindingGroupVersionKind.Group, Resource: "podSecurityPolicyTemplateProjectBinding", - }, name) + }, key) } return obj.(*PodSecurityPolicyTemplateProjectBinding), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_preference_controller.go b/apis/management.cattle.io/v3/zz_generated_preference_controller.go index caf921e9..fdb33dbb 100644 --- a/apis/management.cattle.io/v3/zz_generated_preference_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_preference_controller.go @@ -96,7 +96,7 @@ func (l *preferenceLister) Get(namespace, name string) (*Preference, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: PreferenceGroupVersionKind.Group, Resource: "preference", - }, name) + }, key) } return obj.(*Preference), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_principal_controller.go b/apis/management.cattle.io/v3/zz_generated_principal_controller.go index 492515ca..ea5c0443 100644 --- a/apis/management.cattle.io/v3/zz_generated_principal_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_principal_controller.go @@ -95,7 +95,7 @@ func (l *principalLister) Get(namespace, name string) (*Principal, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: PrincipalGroupVersionKind.Group, Resource: "principal", - }, name) + }, key) } return obj.(*Principal), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_project_alert_controller.go b/apis/management.cattle.io/v3/zz_generated_project_alert_controller.go index 1783cd77..d9cf9f99 100644 --- a/apis/management.cattle.io/v3/zz_generated_project_alert_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_project_alert_controller.go @@ -96,7 +96,7 @@ func (l *projectAlertLister) Get(namespace, name string) (*ProjectAlert, error) return nil, errors.NewNotFound(schema.GroupResource{ Group: ProjectAlertGroupVersionKind.Group, Resource: "projectAlert", - }, name) + }, key) } return obj.(*ProjectAlert), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_project_controller.go b/apis/management.cattle.io/v3/zz_generated_project_controller.go index 78850a17..680dd13e 100644 --- a/apis/management.cattle.io/v3/zz_generated_project_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_project_controller.go @@ -96,7 +96,7 @@ func (l *projectLister) Get(namespace, name string) (*Project, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: ProjectGroupVersionKind.Group, Resource: "project", - }, name) + }, key) } return obj.(*Project), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_project_logging_controller.go b/apis/management.cattle.io/v3/zz_generated_project_logging_controller.go index 94cbf3ed..e7839d44 100644 --- a/apis/management.cattle.io/v3/zz_generated_project_logging_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_project_logging_controller.go @@ -96,7 +96,7 @@ func (l *projectLoggingLister) Get(namespace, name string) (*ProjectLogging, err return nil, errors.NewNotFound(schema.GroupResource{ Group: ProjectLoggingGroupVersionKind.Group, Resource: "projectLogging", - }, name) + }, key) } return obj.(*ProjectLogging), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_project_network_policy_controller.go b/apis/management.cattle.io/v3/zz_generated_project_network_policy_controller.go index afd14aad..4b5e808a 100644 --- a/apis/management.cattle.io/v3/zz_generated_project_network_policy_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_project_network_policy_controller.go @@ -96,7 +96,7 @@ func (l *projectNetworkPolicyLister) Get(namespace, name string) (*ProjectNetwor return nil, errors.NewNotFound(schema.GroupResource{ Group: ProjectNetworkPolicyGroupVersionKind.Group, Resource: "projectNetworkPolicy", - }, name) + }, key) } return obj.(*ProjectNetworkPolicy), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_project_role_template_binding_controller.go b/apis/management.cattle.io/v3/zz_generated_project_role_template_binding_controller.go index 90c0bda3..c2ca6c60 100644 --- a/apis/management.cattle.io/v3/zz_generated_project_role_template_binding_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_project_role_template_binding_controller.go @@ -96,7 +96,7 @@ func (l *projectRoleTemplateBindingLister) Get(namespace, name string) (*Project return nil, errors.NewNotFound(schema.GroupResource{ Group: ProjectRoleTemplateBindingGroupVersionKind.Group, Resource: "projectRoleTemplateBinding", - }, name) + }, key) } return obj.(*ProjectRoleTemplateBinding), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_role_template_controller.go b/apis/management.cattle.io/v3/zz_generated_role_template_controller.go index 9d451d94..3c688c74 100644 --- a/apis/management.cattle.io/v3/zz_generated_role_template_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_role_template_controller.go @@ -95,7 +95,7 @@ func (l *roleTemplateLister) Get(namespace, name string) (*RoleTemplate, error) return nil, errors.NewNotFound(schema.GroupResource{ Group: RoleTemplateGroupVersionKind.Group, Resource: "roleTemplate", - }, name) + }, key) } return obj.(*RoleTemplate), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_setting_controller.go b/apis/management.cattle.io/v3/zz_generated_setting_controller.go index e0b0b0b4..a528a8bb 100644 --- a/apis/management.cattle.io/v3/zz_generated_setting_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_setting_controller.go @@ -95,7 +95,7 @@ func (l *settingLister) Get(namespace, name string) (*Setting, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: SettingGroupVersionKind.Group, Resource: "setting", - }, name) + }, key) } return obj.(*Setting), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_source_code_credential_controller.go b/apis/management.cattle.io/v3/zz_generated_source_code_credential_controller.go index 09d73841..f4c1be93 100644 --- a/apis/management.cattle.io/v3/zz_generated_source_code_credential_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_source_code_credential_controller.go @@ -96,7 +96,7 @@ func (l *sourceCodeCredentialLister) Get(namespace, name string) (*SourceCodeCre return nil, errors.NewNotFound(schema.GroupResource{ Group: SourceCodeCredentialGroupVersionKind.Group, Resource: "sourceCodeCredential", - }, name) + }, key) } return obj.(*SourceCodeCredential), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_source_code_repository_controller.go b/apis/management.cattle.io/v3/zz_generated_source_code_repository_controller.go index fd7c67cb..5a5fd02e 100644 --- a/apis/management.cattle.io/v3/zz_generated_source_code_repository_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_source_code_repository_controller.go @@ -96,7 +96,7 @@ func (l *sourceCodeRepositoryLister) Get(namespace, name string) (*SourceCodeRep return nil, errors.NewNotFound(schema.GroupResource{ Group: SourceCodeRepositoryGroupVersionKind.Group, Resource: "sourceCodeRepository", - }, name) + }, key) } return obj.(*SourceCodeRepository), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_template_content_controller.go b/apis/management.cattle.io/v3/zz_generated_template_content_controller.go index 6fba6068..604449da 100644 --- a/apis/management.cattle.io/v3/zz_generated_template_content_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_template_content_controller.go @@ -95,7 +95,7 @@ func (l *templateContentLister) Get(namespace, name string) (*TemplateContent, e return nil, errors.NewNotFound(schema.GroupResource{ Group: TemplateContentGroupVersionKind.Group, Resource: "templateContent", - }, name) + }, key) } return obj.(*TemplateContent), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_template_controller.go b/apis/management.cattle.io/v3/zz_generated_template_controller.go index e71043f3..0511728f 100644 --- a/apis/management.cattle.io/v3/zz_generated_template_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_template_controller.go @@ -95,7 +95,7 @@ func (l *templateLister) Get(namespace, name string) (*Template, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: TemplateGroupVersionKind.Group, Resource: "template", - }, name) + }, key) } return obj.(*Template), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_template_version_controller.go b/apis/management.cattle.io/v3/zz_generated_template_version_controller.go index 0d6c7bff..9e447685 100644 --- a/apis/management.cattle.io/v3/zz_generated_template_version_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_template_version_controller.go @@ -95,7 +95,7 @@ func (l *templateVersionLister) Get(namespace, name string) (*TemplateVersion, e return nil, errors.NewNotFound(schema.GroupResource{ Group: TemplateVersionGroupVersionKind.Group, Resource: "templateVersion", - }, name) + }, key) } return obj.(*TemplateVersion), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_token_controller.go b/apis/management.cattle.io/v3/zz_generated_token_controller.go index 50db4d4c..16df0178 100644 --- a/apis/management.cattle.io/v3/zz_generated_token_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_token_controller.go @@ -95,7 +95,7 @@ func (l *tokenLister) Get(namespace, name string) (*Token, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: TokenGroupVersionKind.Group, Resource: "token", - }, name) + }, key) } return obj.(*Token), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_user_attribute_controller.go b/apis/management.cattle.io/v3/zz_generated_user_attribute_controller.go index 43295fa3..b165babb 100644 --- a/apis/management.cattle.io/v3/zz_generated_user_attribute_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_user_attribute_controller.go @@ -95,7 +95,7 @@ func (l *userAttributeLister) Get(namespace, name string) (*UserAttribute, error return nil, errors.NewNotFound(schema.GroupResource{ Group: UserAttributeGroupVersionKind.Group, Resource: "userAttribute", - }, name) + }, key) } return obj.(*UserAttribute), nil } diff --git a/apis/management.cattle.io/v3/zz_generated_user_controller.go b/apis/management.cattle.io/v3/zz_generated_user_controller.go index 3219afdd..b21df566 100644 --- a/apis/management.cattle.io/v3/zz_generated_user_controller.go +++ b/apis/management.cattle.io/v3/zz_generated_user_controller.go @@ -95,7 +95,7 @@ func (l *userLister) Get(namespace, name string) (*User, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: UserGroupVersionKind.Group, Resource: "user", - }, name) + }, key) } return obj.(*User), nil } diff --git a/apis/management.cattle.io/v3public/zz_generated_auth_provider_controller.go b/apis/management.cattle.io/v3public/zz_generated_auth_provider_controller.go index 2d5ea3a1..92836ab6 100644 --- a/apis/management.cattle.io/v3public/zz_generated_auth_provider_controller.go +++ b/apis/management.cattle.io/v3public/zz_generated_auth_provider_controller.go @@ -95,7 +95,7 @@ func (l *authProviderLister) Get(namespace, name string) (*AuthProvider, error) return nil, errors.NewNotFound(schema.GroupResource{ Group: AuthProviderGroupVersionKind.Group, Resource: "authProvider", - }, name) + }, key) } return obj.(*AuthProvider), nil } diff --git a/apis/management.cattle.io/v3public/zz_generated_deepcopy.go b/apis/management.cattle.io/v3public/zz_generated_deepcopy.go index 311fe06d..f7ba473d 100644 --- a/apis/management.cattle.io/v3public/zz_generated_deepcopy.go +++ b/apis/management.cattle.io/v3public/zz_generated_deepcopy.go @@ -1,73 +1,9 @@ package v3public import ( - reflect "reflect" - - conversion "k8s.io/apimachinery/pkg/conversion" runtime "k8s.io/apimachinery/pkg/runtime" ) -func init() { - SchemeBuilder.Register(RegisterDeepCopies) -} - -// RegisterDeepCopies adds deep-copy functions to the given scheme. Public -// to allow building arbitrary schemes. -// -// Deprecated: deepcopy registration will go away when static deepcopy is fully implemented. -func RegisterDeepCopies(scheme *runtime.Scheme) error { - return scheme.AddGeneratedDeepCopyFuncs( - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ActiveDirectoryProvider).DeepCopyInto(out.(*ActiveDirectoryProvider)) - return nil - }, InType: reflect.TypeOf(&ActiveDirectoryProvider{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AuthProvider).DeepCopyInto(out.(*AuthProvider)) - return nil - }, InType: reflect.TypeOf(&AuthProvider{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AuthProviderList).DeepCopyInto(out.(*AuthProviderList)) - return nil - }, InType: reflect.TypeOf(&AuthProviderList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AzureADLogin).DeepCopyInto(out.(*AzureADLogin)) - return nil - }, InType: reflect.TypeOf(&AzureADLogin{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AzureADProvider).DeepCopyInto(out.(*AzureADProvider)) - return nil - }, InType: reflect.TypeOf(&AzureADProvider{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*BasicLogin).DeepCopyInto(out.(*BasicLogin)) - return nil - }, InType: reflect.TypeOf(&BasicLogin{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*FreeIpaProvider).DeepCopyInto(out.(*FreeIpaProvider)) - return nil - }, InType: reflect.TypeOf(&FreeIpaProvider{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*GenericLogin).DeepCopyInto(out.(*GenericLogin)) - return nil - }, InType: reflect.TypeOf(&GenericLogin{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*GithubLogin).DeepCopyInto(out.(*GithubLogin)) - return nil - }, InType: reflect.TypeOf(&GithubLogin{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*GithubProvider).DeepCopyInto(out.(*GithubProvider)) - return nil - }, InType: reflect.TypeOf(&GithubProvider{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*LocalProvider).DeepCopyInto(out.(*LocalProvider)) - return nil - }, InType: reflect.TypeOf(&LocalProvider{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*OpenLdapProvider).DeepCopyInto(out.(*OpenLdapProvider)) - return nil - }, InType: reflect.TypeOf(&OpenLdapProvider{})}, - ) -} - // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ActiveDirectoryProvider) DeepCopyInto(out *ActiveDirectoryProvider) { *out = *in @@ -91,9 +27,8 @@ func (in *ActiveDirectoryProvider) DeepCopy() *ActiveDirectoryProvider { func (in *ActiveDirectoryProvider) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -118,9 +53,8 @@ func (in *AuthProvider) DeepCopy() *AuthProvider { func (in *AuthProvider) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -152,9 +86,8 @@ func (in *AuthProviderList) DeepCopy() *AuthProviderList { func (in *AuthProviderList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -197,9 +130,8 @@ func (in *AzureADProvider) DeepCopy() *AzureADProvider { func (in *AzureADProvider) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -242,9 +174,8 @@ func (in *FreeIpaProvider) DeepCopy() *FreeIpaProvider { func (in *FreeIpaProvider) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -303,9 +234,8 @@ func (in *GithubProvider) DeepCopy() *GithubProvider { func (in *GithubProvider) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -331,9 +261,8 @@ func (in *LocalProvider) DeepCopy() *LocalProvider { func (in *LocalProvider) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -359,7 +288,6 @@ func (in *OpenLdapProvider) DeepCopy() *OpenLdapProvider { func (in *OpenLdapProvider) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } diff --git a/apis/networking.k8s.io/v1/zz_generated_deepcopy.go b/apis/networking.k8s.io/v1/zz_generated_deepcopy.go index fa13cf92..3d67128e 100644 --- a/apis/networking.k8s.io/v1/zz_generated_deepcopy.go +++ b/apis/networking.k8s.io/v1/zz_generated_deepcopy.go @@ -1,30 +1,10 @@ package v1 import ( - reflect "reflect" - networking_v1 "k8s.io/api/networking/v1" - conversion "k8s.io/apimachinery/pkg/conversion" runtime "k8s.io/apimachinery/pkg/runtime" ) -func init() { - SchemeBuilder.Register(RegisterDeepCopies) -} - -// RegisterDeepCopies adds deep-copy functions to the given scheme. Public -// to allow building arbitrary schemes. -// -// Deprecated: deepcopy registration will go away when static deepcopy is fully implemented. -func RegisterDeepCopies(scheme *runtime.Scheme) error { - return scheme.AddGeneratedDeepCopyFuncs( - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NetworkPolicyList).DeepCopyInto(out.(*NetworkPolicyList)) - return nil - }, InType: reflect.TypeOf(&NetworkPolicyList{})}, - ) -} - // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *NetworkPolicyList) DeepCopyInto(out *NetworkPolicyList) { *out = *in @@ -54,7 +34,6 @@ func (in *NetworkPolicyList) DeepCopy() *NetworkPolicyList { func (in *NetworkPolicyList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } diff --git a/apis/networking.k8s.io/v1/zz_generated_network_policy_controller.go b/apis/networking.k8s.io/v1/zz_generated_network_policy_controller.go index ee3751e8..d793e91f 100644 --- a/apis/networking.k8s.io/v1/zz_generated_network_policy_controller.go +++ b/apis/networking.k8s.io/v1/zz_generated_network_policy_controller.go @@ -97,7 +97,7 @@ func (l *networkPolicyLister) Get(namespace, name string) (*v1.NetworkPolicy, er return nil, errors.NewNotFound(schema.GroupResource{ Group: NetworkPolicyGroupVersionKind.Group, Resource: "networkPolicy", - }, name) + }, key) } return obj.(*v1.NetworkPolicy), nil } diff --git a/apis/project.cattle.io/v3/zz_generated_app_controller.go b/apis/project.cattle.io/v3/zz_generated_app_controller.go index 218badff..fb67b623 100644 --- a/apis/project.cattle.io/v3/zz_generated_app_controller.go +++ b/apis/project.cattle.io/v3/zz_generated_app_controller.go @@ -96,7 +96,7 @@ func (l *appLister) Get(namespace, name string) (*App, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: AppGroupVersionKind.Group, Resource: "app", - }, name) + }, key) } return obj.(*App), nil } diff --git a/apis/project.cattle.io/v3/zz_generated_app_revision_controller.go b/apis/project.cattle.io/v3/zz_generated_app_revision_controller.go index daf24aa6..a66b400c 100644 --- a/apis/project.cattle.io/v3/zz_generated_app_revision_controller.go +++ b/apis/project.cattle.io/v3/zz_generated_app_revision_controller.go @@ -96,7 +96,7 @@ func (l *appRevisionLister) Get(namespace, name string) (*AppRevision, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: AppRevisionGroupVersionKind.Group, Resource: "appRevision", - }, name) + }, key) } return obj.(*AppRevision), nil } diff --git a/apis/project.cattle.io/v3/zz_generated_basic_auth_controller.go b/apis/project.cattle.io/v3/zz_generated_basic_auth_controller.go index 2ed4a175..7d9794ed 100644 --- a/apis/project.cattle.io/v3/zz_generated_basic_auth_controller.go +++ b/apis/project.cattle.io/v3/zz_generated_basic_auth_controller.go @@ -96,7 +96,7 @@ func (l *basicAuthLister) Get(namespace, name string) (*BasicAuth, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: BasicAuthGroupVersionKind.Group, Resource: "basicAuth", - }, name) + }, key) } return obj.(*BasicAuth), nil } diff --git a/apis/project.cattle.io/v3/zz_generated_certificate_controller.go b/apis/project.cattle.io/v3/zz_generated_certificate_controller.go index 4a47def6..dea6b39a 100644 --- a/apis/project.cattle.io/v3/zz_generated_certificate_controller.go +++ b/apis/project.cattle.io/v3/zz_generated_certificate_controller.go @@ -96,7 +96,7 @@ func (l *certificateLister) Get(namespace, name string) (*Certificate, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: CertificateGroupVersionKind.Group, Resource: "certificate", - }, name) + }, key) } return obj.(*Certificate), nil } diff --git a/apis/project.cattle.io/v3/zz_generated_deepcopy.go b/apis/project.cattle.io/v3/zz_generated_deepcopy.go index 15e8b50e..78421aea 100644 --- a/apis/project.cattle.io/v3/zz_generated_deepcopy.go +++ b/apis/project.cattle.io/v3/zz_generated_deepcopy.go @@ -1,169 +1,9 @@ package v3 import ( - reflect "reflect" - - conversion "k8s.io/apimachinery/pkg/conversion" runtime "k8s.io/apimachinery/pkg/runtime" ) -func init() { - SchemeBuilder.Register(RegisterDeepCopies) -} - -// RegisterDeepCopies adds deep-copy functions to the given scheme. Public -// to allow building arbitrary schemes. -// -// Deprecated: deepcopy registration will go away when static deepcopy is fully implemented. -func RegisterDeepCopies(scheme *runtime.Scheme) error { - return scheme.AddGeneratedDeepCopyFuncs( - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*App).DeepCopyInto(out.(*App)) - return nil - }, InType: reflect.TypeOf(&App{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AppCondition).DeepCopyInto(out.(*AppCondition)) - return nil - }, InType: reflect.TypeOf(&AppCondition{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AppList).DeepCopyInto(out.(*AppList)) - return nil - }, InType: reflect.TypeOf(&AppList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AppRevision).DeepCopyInto(out.(*AppRevision)) - return nil - }, InType: reflect.TypeOf(&AppRevision{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AppRevisionList).DeepCopyInto(out.(*AppRevisionList)) - return nil - }, InType: reflect.TypeOf(&AppRevisionList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AppRevisionSpec).DeepCopyInto(out.(*AppRevisionSpec)) - return nil - }, InType: reflect.TypeOf(&AppRevisionSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AppRevisionStatus).DeepCopyInto(out.(*AppRevisionStatus)) - return nil - }, InType: reflect.TypeOf(&AppRevisionStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AppSpec).DeepCopyInto(out.(*AppSpec)) - return nil - }, InType: reflect.TypeOf(&AppSpec{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AppStatus).DeepCopyInto(out.(*AppStatus)) - return nil - }, InType: reflect.TypeOf(&AppStatus{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*AppUpgradeConfig).DeepCopyInto(out.(*AppUpgradeConfig)) - return nil - }, InType: reflect.TypeOf(&AppUpgradeConfig{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*BasicAuth).DeepCopyInto(out.(*BasicAuth)) - return nil - }, InType: reflect.TypeOf(&BasicAuth{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*BasicAuthList).DeepCopyInto(out.(*BasicAuthList)) - return nil - }, InType: reflect.TypeOf(&BasicAuthList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Certificate).DeepCopyInto(out.(*Certificate)) - return nil - }, InType: reflect.TypeOf(&Certificate{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*CertificateList).DeepCopyInto(out.(*CertificateList)) - return nil - }, InType: reflect.TypeOf(&CertificateList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*DeploymentRollbackInput).DeepCopyInto(out.(*DeploymentRollbackInput)) - return nil - }, InType: reflect.TypeOf(&DeploymentRollbackInput{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*DockerCredential).DeepCopyInto(out.(*DockerCredential)) - return nil - }, InType: reflect.TypeOf(&DockerCredential{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*DockerCredentialList).DeepCopyInto(out.(*DockerCredentialList)) - return nil - }, InType: reflect.TypeOf(&DockerCredentialList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NamespacedBasicAuth).DeepCopyInto(out.(*NamespacedBasicAuth)) - return nil - }, InType: reflect.TypeOf(&NamespacedBasicAuth{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NamespacedBasicAuthList).DeepCopyInto(out.(*NamespacedBasicAuthList)) - return nil - }, InType: reflect.TypeOf(&NamespacedBasicAuthList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NamespacedCertificate).DeepCopyInto(out.(*NamespacedCertificate)) - return nil - }, InType: reflect.TypeOf(&NamespacedCertificate{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NamespacedCertificateList).DeepCopyInto(out.(*NamespacedCertificateList)) - return nil - }, InType: reflect.TypeOf(&NamespacedCertificateList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NamespacedDockerCredential).DeepCopyInto(out.(*NamespacedDockerCredential)) - return nil - }, InType: reflect.TypeOf(&NamespacedDockerCredential{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NamespacedDockerCredentialList).DeepCopyInto(out.(*NamespacedDockerCredentialList)) - return nil - }, InType: reflect.TypeOf(&NamespacedDockerCredentialList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NamespacedSSHAuth).DeepCopyInto(out.(*NamespacedSSHAuth)) - return nil - }, InType: reflect.TypeOf(&NamespacedSSHAuth{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NamespacedSSHAuthList).DeepCopyInto(out.(*NamespacedSSHAuthList)) - return nil - }, InType: reflect.TypeOf(&NamespacedSSHAuthList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NamespacedServiceAccountToken).DeepCopyInto(out.(*NamespacedServiceAccountToken)) - return nil - }, InType: reflect.TypeOf(&NamespacedServiceAccountToken{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*NamespacedServiceAccountTokenList).DeepCopyInto(out.(*NamespacedServiceAccountTokenList)) - return nil - }, InType: reflect.TypeOf(&NamespacedServiceAccountTokenList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*PublicEndpoint).DeepCopyInto(out.(*PublicEndpoint)) - return nil - }, InType: reflect.TypeOf(&PublicEndpoint{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*RegistryCredential).DeepCopyInto(out.(*RegistryCredential)) - return nil - }, InType: reflect.TypeOf(&RegistryCredential{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*RollbackRevision).DeepCopyInto(out.(*RollbackRevision)) - return nil - }, InType: reflect.TypeOf(&RollbackRevision{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SSHAuth).DeepCopyInto(out.(*SSHAuth)) - return nil - }, InType: reflect.TypeOf(&SSHAuth{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*SSHAuthList).DeepCopyInto(out.(*SSHAuthList)) - return nil - }, InType: reflect.TypeOf(&SSHAuthList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ServiceAccountToken).DeepCopyInto(out.(*ServiceAccountToken)) - return nil - }, InType: reflect.TypeOf(&ServiceAccountToken{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ServiceAccountTokenList).DeepCopyInto(out.(*ServiceAccountTokenList)) - return nil - }, InType: reflect.TypeOf(&ServiceAccountTokenList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*Workload).DeepCopyInto(out.(*Workload)) - return nil - }, InType: reflect.TypeOf(&Workload{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*WorkloadList).DeepCopyInto(out.(*WorkloadList)) - return nil - }, InType: reflect.TypeOf(&WorkloadList{})}, - ) -} - // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *App) DeepCopyInto(out *App) { *out = *in @@ -189,9 +29,8 @@ func (in *App) DeepCopy() *App { func (in *App) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -239,9 +78,8 @@ func (in *AppList) DeepCopy() *AppList { func (in *AppList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -269,9 +107,8 @@ func (in *AppRevision) DeepCopy() *AppRevision { func (in *AppRevision) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -303,9 +140,8 @@ func (in *AppRevisionList) DeepCopy() *AppRevisionList { func (in *AppRevisionList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -451,9 +287,8 @@ func (in *BasicAuth) DeepCopy() *BasicAuth { func (in *BasicAuth) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -485,9 +320,8 @@ func (in *BasicAuthList) DeepCopy() *BasicAuthList { func (in *BasicAuthList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -518,9 +352,8 @@ func (in *Certificate) DeepCopy() *Certificate { func (in *Certificate) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -552,9 +385,8 @@ func (in *CertificateList) DeepCopy() *CertificateList { func (in *CertificateList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -603,9 +435,8 @@ func (in *DockerCredential) DeepCopy() *DockerCredential { func (in *DockerCredential) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -637,9 +468,8 @@ func (in *DockerCredentialList) DeepCopy() *DockerCredentialList { func (in *DockerCredentialList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -665,9 +495,8 @@ func (in *NamespacedBasicAuth) DeepCopy() *NamespacedBasicAuth { func (in *NamespacedBasicAuth) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -699,9 +528,8 @@ func (in *NamespacedBasicAuthList) DeepCopy() *NamespacedBasicAuthList { func (in *NamespacedBasicAuthList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -732,9 +560,8 @@ func (in *NamespacedCertificate) DeepCopy() *NamespacedCertificate { func (in *NamespacedCertificate) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -766,9 +593,8 @@ func (in *NamespacedCertificateList) DeepCopy() *NamespacedCertificateList { func (in *NamespacedCertificateList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -801,9 +627,8 @@ func (in *NamespacedDockerCredential) DeepCopy() *NamespacedDockerCredential { func (in *NamespacedDockerCredential) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -835,9 +660,8 @@ func (in *NamespacedDockerCredentialList) DeepCopy() *NamespacedDockerCredential func (in *NamespacedDockerCredentialList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -863,9 +687,8 @@ func (in *NamespacedSSHAuth) DeepCopy() *NamespacedSSHAuth { func (in *NamespacedSSHAuth) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -897,9 +720,8 @@ func (in *NamespacedSSHAuthList) DeepCopy() *NamespacedSSHAuthList { func (in *NamespacedSSHAuthList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -925,9 +747,8 @@ func (in *NamespacedServiceAccountToken) DeepCopy() *NamespacedServiceAccountTok func (in *NamespacedServiceAccountToken) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -959,9 +780,8 @@ func (in *NamespacedServiceAccountTokenList) DeepCopy() *NamespacedServiceAccoun func (in *NamespacedServiceAccountTokenList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -1040,9 +860,8 @@ func (in *SSHAuth) DeepCopy() *SSHAuth { func (in *SSHAuth) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -1074,9 +893,8 @@ func (in *SSHAuthList) DeepCopy() *SSHAuthList { func (in *SSHAuthList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -1102,9 +920,8 @@ func (in *ServiceAccountToken) DeepCopy() *ServiceAccountToken { func (in *ServiceAccountToken) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -1136,9 +953,8 @@ func (in *ServiceAccountTokenList) DeepCopy() *ServiceAccountTokenList { func (in *ServiceAccountTokenList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -1164,9 +980,8 @@ func (in *Workload) DeepCopy() *Workload { func (in *Workload) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -1198,7 +1013,6 @@ func (in *WorkloadList) DeepCopy() *WorkloadList { func (in *WorkloadList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } diff --git a/apis/project.cattle.io/v3/zz_generated_docker_credential_controller.go b/apis/project.cattle.io/v3/zz_generated_docker_credential_controller.go index 88f2ea1f..b8678a0a 100644 --- a/apis/project.cattle.io/v3/zz_generated_docker_credential_controller.go +++ b/apis/project.cattle.io/v3/zz_generated_docker_credential_controller.go @@ -96,7 +96,7 @@ func (l *dockerCredentialLister) Get(namespace, name string) (*DockerCredential, return nil, errors.NewNotFound(schema.GroupResource{ Group: DockerCredentialGroupVersionKind.Group, Resource: "dockerCredential", - }, name) + }, key) } return obj.(*DockerCredential), nil } diff --git a/apis/project.cattle.io/v3/zz_generated_namespaced_basic_auth_controller.go b/apis/project.cattle.io/v3/zz_generated_namespaced_basic_auth_controller.go index 08a0e480..9b293917 100644 --- a/apis/project.cattle.io/v3/zz_generated_namespaced_basic_auth_controller.go +++ b/apis/project.cattle.io/v3/zz_generated_namespaced_basic_auth_controller.go @@ -96,7 +96,7 @@ func (l *namespacedBasicAuthLister) Get(namespace, name string) (*NamespacedBasi return nil, errors.NewNotFound(schema.GroupResource{ Group: NamespacedBasicAuthGroupVersionKind.Group, Resource: "namespacedBasicAuth", - }, name) + }, key) } return obj.(*NamespacedBasicAuth), nil } diff --git a/apis/project.cattle.io/v3/zz_generated_namespaced_certificate_controller.go b/apis/project.cattle.io/v3/zz_generated_namespaced_certificate_controller.go index 9371b0c8..cf544669 100644 --- a/apis/project.cattle.io/v3/zz_generated_namespaced_certificate_controller.go +++ b/apis/project.cattle.io/v3/zz_generated_namespaced_certificate_controller.go @@ -96,7 +96,7 @@ func (l *namespacedCertificateLister) Get(namespace, name string) (*NamespacedCe return nil, errors.NewNotFound(schema.GroupResource{ Group: NamespacedCertificateGroupVersionKind.Group, Resource: "namespacedCertificate", - }, name) + }, key) } return obj.(*NamespacedCertificate), nil } diff --git a/apis/project.cattle.io/v3/zz_generated_namespaced_docker_credential_controller.go b/apis/project.cattle.io/v3/zz_generated_namespaced_docker_credential_controller.go index 710225dc..37246069 100644 --- a/apis/project.cattle.io/v3/zz_generated_namespaced_docker_credential_controller.go +++ b/apis/project.cattle.io/v3/zz_generated_namespaced_docker_credential_controller.go @@ -96,7 +96,7 @@ func (l *namespacedDockerCredentialLister) Get(namespace, name string) (*Namespa return nil, errors.NewNotFound(schema.GroupResource{ Group: NamespacedDockerCredentialGroupVersionKind.Group, Resource: "namespacedDockerCredential", - }, name) + }, key) } return obj.(*NamespacedDockerCredential), nil } diff --git a/apis/project.cattle.io/v3/zz_generated_namespaced_service_account_token_controller.go b/apis/project.cattle.io/v3/zz_generated_namespaced_service_account_token_controller.go index eee28c5d..89d48d3c 100644 --- a/apis/project.cattle.io/v3/zz_generated_namespaced_service_account_token_controller.go +++ b/apis/project.cattle.io/v3/zz_generated_namespaced_service_account_token_controller.go @@ -96,7 +96,7 @@ func (l *namespacedServiceAccountTokenLister) Get(namespace, name string) (*Name return nil, errors.NewNotFound(schema.GroupResource{ Group: NamespacedServiceAccountTokenGroupVersionKind.Group, Resource: "namespacedServiceAccountToken", - }, name) + }, key) } return obj.(*NamespacedServiceAccountToken), nil } diff --git a/apis/project.cattle.io/v3/zz_generated_namespaced_ssh_auth_controller.go b/apis/project.cattle.io/v3/zz_generated_namespaced_ssh_auth_controller.go index 3a6a7c9c..b3498000 100644 --- a/apis/project.cattle.io/v3/zz_generated_namespaced_ssh_auth_controller.go +++ b/apis/project.cattle.io/v3/zz_generated_namespaced_ssh_auth_controller.go @@ -96,7 +96,7 @@ func (l *namespacedSshAuthLister) Get(namespace, name string) (*NamespacedSSHAut return nil, errors.NewNotFound(schema.GroupResource{ Group: NamespacedSSHAuthGroupVersionKind.Group, Resource: "namespacedSshAuth", - }, name) + }, key) } return obj.(*NamespacedSSHAuth), nil } diff --git a/apis/project.cattle.io/v3/zz_generated_service_account_token_controller.go b/apis/project.cattle.io/v3/zz_generated_service_account_token_controller.go index d11ba1ea..f24f4541 100644 --- a/apis/project.cattle.io/v3/zz_generated_service_account_token_controller.go +++ b/apis/project.cattle.io/v3/zz_generated_service_account_token_controller.go @@ -96,7 +96,7 @@ func (l *serviceAccountTokenLister) Get(namespace, name string) (*ServiceAccount return nil, errors.NewNotFound(schema.GroupResource{ Group: ServiceAccountTokenGroupVersionKind.Group, Resource: "serviceAccountToken", - }, name) + }, key) } return obj.(*ServiceAccountToken), nil } diff --git a/apis/project.cattle.io/v3/zz_generated_ssh_auth_controller.go b/apis/project.cattle.io/v3/zz_generated_ssh_auth_controller.go index 62dedd9d..51529806 100644 --- a/apis/project.cattle.io/v3/zz_generated_ssh_auth_controller.go +++ b/apis/project.cattle.io/v3/zz_generated_ssh_auth_controller.go @@ -96,7 +96,7 @@ func (l *sshAuthLister) Get(namespace, name string) (*SSHAuth, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: SSHAuthGroupVersionKind.Group, Resource: "sshAuth", - }, name) + }, key) } return obj.(*SSHAuth), nil } diff --git a/apis/project.cattle.io/v3/zz_generated_workload_controller.go b/apis/project.cattle.io/v3/zz_generated_workload_controller.go index b50654e5..738bda51 100644 --- a/apis/project.cattle.io/v3/zz_generated_workload_controller.go +++ b/apis/project.cattle.io/v3/zz_generated_workload_controller.go @@ -96,7 +96,7 @@ func (l *workloadLister) Get(namespace, name string) (*Workload, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: WorkloadGroupVersionKind.Group, Resource: "workload", - }, name) + }, key) } return obj.(*Workload), nil } diff --git a/apis/rbac.authorization.k8s.io/v1/zz_generated_cluster_role_binding_controller.go b/apis/rbac.authorization.k8s.io/v1/zz_generated_cluster_role_binding_controller.go index 86819310..0997c08c 100644 --- a/apis/rbac.authorization.k8s.io/v1/zz_generated_cluster_role_binding_controller.go +++ b/apis/rbac.authorization.k8s.io/v1/zz_generated_cluster_role_binding_controller.go @@ -96,7 +96,7 @@ func (l *clusterRoleBindingLister) Get(namespace, name string) (*v1.ClusterRoleB return nil, errors.NewNotFound(schema.GroupResource{ Group: ClusterRoleBindingGroupVersionKind.Group, Resource: "clusterRoleBinding", - }, name) + }, key) } return obj.(*v1.ClusterRoleBinding), nil } diff --git a/apis/rbac.authorization.k8s.io/v1/zz_generated_cluster_role_controller.go b/apis/rbac.authorization.k8s.io/v1/zz_generated_cluster_role_controller.go index aa550808..f83da810 100644 --- a/apis/rbac.authorization.k8s.io/v1/zz_generated_cluster_role_controller.go +++ b/apis/rbac.authorization.k8s.io/v1/zz_generated_cluster_role_controller.go @@ -96,7 +96,7 @@ func (l *clusterRoleLister) Get(namespace, name string) (*v1.ClusterRole, error) return nil, errors.NewNotFound(schema.GroupResource{ Group: ClusterRoleGroupVersionKind.Group, Resource: "clusterRole", - }, name) + }, key) } return obj.(*v1.ClusterRole), nil } diff --git a/apis/rbac.authorization.k8s.io/v1/zz_generated_deepcopy.go b/apis/rbac.authorization.k8s.io/v1/zz_generated_deepcopy.go index d4536d1b..a08fab35 100644 --- a/apis/rbac.authorization.k8s.io/v1/zz_generated_deepcopy.go +++ b/apis/rbac.authorization.k8s.io/v1/zz_generated_deepcopy.go @@ -1,42 +1,10 @@ package v1 import ( - reflect "reflect" - rbac_v1 "k8s.io/api/rbac/v1" - conversion "k8s.io/apimachinery/pkg/conversion" runtime "k8s.io/apimachinery/pkg/runtime" ) -func init() { - SchemeBuilder.Register(RegisterDeepCopies) -} - -// RegisterDeepCopies adds deep-copy functions to the given scheme. Public -// to allow building arbitrary schemes. -// -// Deprecated: deepcopy registration will go away when static deepcopy is fully implemented. -func RegisterDeepCopies(scheme *runtime.Scheme) error { - return scheme.AddGeneratedDeepCopyFuncs( - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterRoleBindingList).DeepCopyInto(out.(*ClusterRoleBindingList)) - return nil - }, InType: reflect.TypeOf(&ClusterRoleBindingList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*ClusterRoleList).DeepCopyInto(out.(*ClusterRoleList)) - return nil - }, InType: reflect.TypeOf(&ClusterRoleList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*RoleBindingList).DeepCopyInto(out.(*RoleBindingList)) - return nil - }, InType: reflect.TypeOf(&RoleBindingList{})}, - conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*RoleList).DeepCopyInto(out.(*RoleList)) - return nil - }, InType: reflect.TypeOf(&RoleList{})}, - ) -} - // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ClusterRoleBindingList) DeepCopyInto(out *ClusterRoleBindingList) { *out = *in @@ -66,9 +34,8 @@ func (in *ClusterRoleBindingList) DeepCopy() *ClusterRoleBindingList { func (in *ClusterRoleBindingList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -100,9 +67,8 @@ func (in *ClusterRoleList) DeepCopy() *ClusterRoleList { func (in *ClusterRoleList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -134,9 +100,8 @@ func (in *RoleBindingList) DeepCopy() *RoleBindingList { func (in *RoleBindingList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -168,7 +133,6 @@ func (in *RoleList) DeepCopy() *RoleList { func (in *RoleList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c - } else { - return nil } + return nil } diff --git a/apis/rbac.authorization.k8s.io/v1/zz_generated_role_binding_controller.go b/apis/rbac.authorization.k8s.io/v1/zz_generated_role_binding_controller.go index 88a7ff17..24bcbe2e 100644 --- a/apis/rbac.authorization.k8s.io/v1/zz_generated_role_binding_controller.go +++ b/apis/rbac.authorization.k8s.io/v1/zz_generated_role_binding_controller.go @@ -97,7 +97,7 @@ func (l *roleBindingLister) Get(namespace, name string) (*v1.RoleBinding, error) return nil, errors.NewNotFound(schema.GroupResource{ Group: RoleBindingGroupVersionKind.Group, Resource: "roleBinding", - }, name) + }, key) } return obj.(*v1.RoleBinding), nil } diff --git a/apis/rbac.authorization.k8s.io/v1/zz_generated_role_controller.go b/apis/rbac.authorization.k8s.io/v1/zz_generated_role_controller.go index 72cf537e..3cdb6c96 100644 --- a/apis/rbac.authorization.k8s.io/v1/zz_generated_role_controller.go +++ b/apis/rbac.authorization.k8s.io/v1/zz_generated_role_controller.go @@ -97,7 +97,7 @@ func (l *roleLister) Get(namespace, name string) (*v1.Role, error) { return nil, errors.NewNotFound(schema.GroupResource{ Group: RoleGroupVersionKind.Group, Resource: "role", - }, name) + }, key) } return obj.(*v1.Role), nil } diff --git a/client/cluster/v3/zz_generated_csi_persistent_volume_source.go b/client/cluster/v3/zz_generated_csi_persistent_volume_source.go new file mode 100644 index 00000000..5ad80b6a --- /dev/null +++ b/client/cluster/v3/zz_generated_csi_persistent_volume_source.go @@ -0,0 +1,24 @@ +package client + +const ( + CSIPersistentVolumeSourceType = "csiPersistentVolumeSource" + CSIPersistentVolumeSourceFieldControllerPublishSecretRef = "controllerPublishSecretRef" + CSIPersistentVolumeSourceFieldDriver = "driver" + CSIPersistentVolumeSourceFieldFSType = "fsType" + CSIPersistentVolumeSourceFieldNodePublishSecretRef = "nodePublishSecretRef" + CSIPersistentVolumeSourceFieldNodeStageSecretRef = "nodeStageSecretRef" + CSIPersistentVolumeSourceFieldReadOnly = "readOnly" + CSIPersistentVolumeSourceFieldVolumeAttributes = "volumeAttributes" + CSIPersistentVolumeSourceFieldVolumeHandle = "volumeHandle" +) + +type CSIPersistentVolumeSource struct { + ControllerPublishSecretRef *SecretReference `json:"controllerPublishSecretRef,omitempty" yaml:"controllerPublishSecretRef,omitempty"` + Driver string `json:"driver,omitempty" yaml:"driver,omitempty"` + FSType string `json:"fsType,omitempty" yaml:"fsType,omitempty"` + NodePublishSecretRef *SecretReference `json:"nodePublishSecretRef,omitempty" yaml:"nodePublishSecretRef,omitempty"` + NodeStageSecretRef *SecretReference `json:"nodeStageSecretRef,omitempty" yaml:"nodeStageSecretRef,omitempty"` + ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"` + VolumeAttributes map[string]string `json:"volumeAttributes,omitempty" yaml:"volumeAttributes,omitempty"` + VolumeHandle string `json:"volumeHandle,omitempty" yaml:"volumeHandle,omitempty"` +} diff --git a/client/cluster/v3/zz_generated_flex_persistent_volume_source.go b/client/cluster/v3/zz_generated_flex_persistent_volume_source.go new file mode 100644 index 00000000..20de1fd7 --- /dev/null +++ b/client/cluster/v3/zz_generated_flex_persistent_volume_source.go @@ -0,0 +1,18 @@ +package client + +const ( + FlexPersistentVolumeSourceType = "flexPersistentVolumeSource" + FlexPersistentVolumeSourceFieldDriver = "driver" + FlexPersistentVolumeSourceFieldFSType = "fsType" + FlexPersistentVolumeSourceFieldOptions = "options" + FlexPersistentVolumeSourceFieldReadOnly = "readOnly" + FlexPersistentVolumeSourceFieldSecretRef = "secretRef" +) + +type FlexPersistentVolumeSource struct { + Driver string `json:"driver,omitempty" yaml:"driver,omitempty"` + FSType string `json:"fsType,omitempty" yaml:"fsType,omitempty"` + Options map[string]string `json:"options,omitempty" yaml:"options,omitempty"` + ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"` + SecretRef *SecretReference `json:"secretRef,omitempty" yaml:"secretRef,omitempty"` +} diff --git a/client/cluster/v3/zz_generated_flex_volume_source.go b/client/cluster/v3/zz_generated_flex_volume_source.go deleted file mode 100644 index d2e942b9..00000000 --- a/client/cluster/v3/zz_generated_flex_volume_source.go +++ /dev/null @@ -1,18 +0,0 @@ -package client - -const ( - FlexVolumeSourceType = "flexVolumeSource" - FlexVolumeSourceFieldDriver = "driver" - FlexVolumeSourceFieldFSType = "fsType" - FlexVolumeSourceFieldOptions = "options" - FlexVolumeSourceFieldReadOnly = "readOnly" - FlexVolumeSourceFieldSecretRef = "secretRef" -) - -type FlexVolumeSource struct { - Driver string `json:"driver,omitempty" yaml:"driver,omitempty"` - FSType string `json:"fsType,omitempty" yaml:"fsType,omitempty"` - Options map[string]string `json:"options,omitempty" yaml:"options,omitempty"` - ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"` - SecretRef *LocalObjectReference `json:"secretRef,omitempty" yaml:"secretRef,omitempty"` -} diff --git a/client/cluster/v3/zz_generated_iscsi_persistent_volume_source.go b/client/cluster/v3/zz_generated_iscsi_persistent_volume_source.go new file mode 100644 index 00000000..ba659f30 --- /dev/null +++ b/client/cluster/v3/zz_generated_iscsi_persistent_volume_source.go @@ -0,0 +1,30 @@ +package client + +const ( + ISCSIPersistentVolumeSourceType = "iscsiPersistentVolumeSource" + ISCSIPersistentVolumeSourceFieldDiscoveryCHAPAuth = "chapAuthDiscovery" + ISCSIPersistentVolumeSourceFieldFSType = "fsType" + ISCSIPersistentVolumeSourceFieldIQN = "iqn" + ISCSIPersistentVolumeSourceFieldISCSIInterface = "iscsiInterface" + ISCSIPersistentVolumeSourceFieldInitiatorName = "initiatorName" + ISCSIPersistentVolumeSourceFieldLun = "lun" + ISCSIPersistentVolumeSourceFieldPortals = "portals" + ISCSIPersistentVolumeSourceFieldReadOnly = "readOnly" + ISCSIPersistentVolumeSourceFieldSecretRef = "secretRef" + ISCSIPersistentVolumeSourceFieldSessionCHAPAuth = "chapAuthSession" + ISCSIPersistentVolumeSourceFieldTargetPortal = "targetPortal" +) + +type ISCSIPersistentVolumeSource struct { + DiscoveryCHAPAuth bool `json:"chapAuthDiscovery,omitempty" yaml:"chapAuthDiscovery,omitempty"` + FSType string `json:"fsType,omitempty" yaml:"fsType,omitempty"` + IQN string `json:"iqn,omitempty" yaml:"iqn,omitempty"` + ISCSIInterface string `json:"iscsiInterface,omitempty" yaml:"iscsiInterface,omitempty"` + InitiatorName string `json:"initiatorName,omitempty" yaml:"initiatorName,omitempty"` + Lun int64 `json:"lun,omitempty" yaml:"lun,omitempty"` + Portals []string `json:"portals,omitempty" yaml:"portals,omitempty"` + ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"` + SecretRef *SecretReference `json:"secretRef,omitempty" yaml:"secretRef,omitempty"` + SessionCHAPAuth bool `json:"chapAuthSession,omitempty" yaml:"chapAuthSession,omitempty"` + TargetPortal string `json:"targetPortal,omitempty" yaml:"targetPortal,omitempty"` +} diff --git a/client/cluster/v3/zz_generated_iscsi_volume_source.go b/client/cluster/v3/zz_generated_iscsi_volume_source.go deleted file mode 100644 index ef076207..00000000 --- a/client/cluster/v3/zz_generated_iscsi_volume_source.go +++ /dev/null @@ -1,30 +0,0 @@ -package client - -const ( - ISCSIVolumeSourceType = "iscsiVolumeSource" - ISCSIVolumeSourceFieldDiscoveryCHAPAuth = "chapAuthDiscovery" - ISCSIVolumeSourceFieldFSType = "fsType" - ISCSIVolumeSourceFieldIQN = "iqn" - ISCSIVolumeSourceFieldISCSIInterface = "iscsiInterface" - ISCSIVolumeSourceFieldInitiatorName = "initiatorName" - ISCSIVolumeSourceFieldLun = "lun" - ISCSIVolumeSourceFieldPortals = "portals" - ISCSIVolumeSourceFieldReadOnly = "readOnly" - ISCSIVolumeSourceFieldSecretRef = "secretRef" - ISCSIVolumeSourceFieldSessionCHAPAuth = "chapAuthSession" - ISCSIVolumeSourceFieldTargetPortal = "targetPortal" -) - -type ISCSIVolumeSource struct { - DiscoveryCHAPAuth bool `json:"chapAuthDiscovery,omitempty" yaml:"chapAuthDiscovery,omitempty"` - FSType string `json:"fsType,omitempty" yaml:"fsType,omitempty"` - IQN string `json:"iqn,omitempty" yaml:"iqn,omitempty"` - ISCSIInterface string `json:"iscsiInterface,omitempty" yaml:"iscsiInterface,omitempty"` - InitiatorName string `json:"initiatorName,omitempty" yaml:"initiatorName,omitempty"` - Lun int64 `json:"lun,omitempty" yaml:"lun,omitempty"` - Portals []string `json:"portals,omitempty" yaml:"portals,omitempty"` - ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"` - SecretRef *LocalObjectReference `json:"secretRef,omitempty" yaml:"secretRef,omitempty"` - SessionCHAPAuth bool `json:"chapAuthSession,omitempty" yaml:"chapAuthSession,omitempty"` - TargetPortal string `json:"targetPortal,omitempty" yaml:"targetPortal,omitempty"` -} diff --git a/client/cluster/v3/zz_generated_local_object_reference.go b/client/cluster/v3/zz_generated_local_object_reference.go deleted file mode 100644 index e4d3b505..00000000 --- a/client/cluster/v3/zz_generated_local_object_reference.go +++ /dev/null @@ -1,10 +0,0 @@ -package client - -const ( - LocalObjectReferenceType = "localObjectReference" - LocalObjectReferenceFieldName = "name" -) - -type LocalObjectReference struct { - Name string `json:"name,omitempty" yaml:"name,omitempty"` -} diff --git a/client/cluster/v3/zz_generated_node_selector.go b/client/cluster/v3/zz_generated_node_selector.go new file mode 100644 index 00000000..721a16f4 --- /dev/null +++ b/client/cluster/v3/zz_generated_node_selector.go @@ -0,0 +1,10 @@ +package client + +const ( + NodeSelectorType = "nodeSelector" + NodeSelectorFieldNodeSelectorTerms = "nodeSelectorTerms" +) + +type NodeSelector struct { + NodeSelectorTerms []NodeSelectorTerm `json:"nodeSelectorTerms,omitempty" yaml:"nodeSelectorTerms,omitempty"` +} diff --git a/client/cluster/v3/zz_generated_node_selector_requirement.go b/client/cluster/v3/zz_generated_node_selector_requirement.go new file mode 100644 index 00000000..9338a8c8 --- /dev/null +++ b/client/cluster/v3/zz_generated_node_selector_requirement.go @@ -0,0 +1,14 @@ +package client + +const ( + NodeSelectorRequirementType = "nodeSelectorRequirement" + NodeSelectorRequirementFieldKey = "key" + NodeSelectorRequirementFieldOperator = "operator" + NodeSelectorRequirementFieldValues = "values" +) + +type NodeSelectorRequirement struct { + Key string `json:"key,omitempty" yaml:"key,omitempty"` + Operator string `json:"operator,omitempty" yaml:"operator,omitempty"` + Values []string `json:"values,omitempty" yaml:"values,omitempty"` +} diff --git a/client/cluster/v3/zz_generated_node_selector_term.go b/client/cluster/v3/zz_generated_node_selector_term.go new file mode 100644 index 00000000..648cf8e3 --- /dev/null +++ b/client/cluster/v3/zz_generated_node_selector_term.go @@ -0,0 +1,10 @@ +package client + +const ( + NodeSelectorTermType = "nodeSelectorTerm" + NodeSelectorTermFieldMatchExpressions = "matchExpressions" +) + +type NodeSelectorTerm struct { + MatchExpressions []NodeSelectorRequirement `json:"matchExpressions,omitempty" yaml:"matchExpressions,omitempty"` +} diff --git a/client/cluster/v3/zz_generated_persistent_volume.go b/client/cluster/v3/zz_generated_persistent_volume.go index c88a8c41..a8fc2b6b 100644 --- a/client/cluster/v3/zz_generated_persistent_volume.go +++ b/client/cluster/v3/zz_generated_persistent_volume.go @@ -11,6 +11,7 @@ const ( PersistentVolumeFieldAnnotations = "annotations" PersistentVolumeFieldAzureDisk = "azureDisk" PersistentVolumeFieldAzureFile = "azureFile" + PersistentVolumeFieldCSI = "csi" PersistentVolumeFieldCapacity = "capacity" PersistentVolumeFieldCephFS = "cephfs" PersistentVolumeFieldCinder = "cinder" @@ -30,6 +31,7 @@ const ( PersistentVolumeFieldMountOptions = "mountOptions" PersistentVolumeFieldNFS = "nfs" PersistentVolumeFieldName = "name" + PersistentVolumeFieldNodeAffinity = "nodeAffinity" PersistentVolumeFieldOwnerReferences = "ownerReferences" PersistentVolumeFieldPersistentVolumeReclaimPolicy = "persistentVolumeReclaimPolicy" PersistentVolumeFieldPhotonPersistentDisk = "photonPersistentDisk" @@ -45,6 +47,7 @@ const ( PersistentVolumeFieldTransitioning = "transitioning" PersistentVolumeFieldTransitioningMessage = "transitioningMessage" PersistentVolumeFieldUuid = "uuid" + PersistentVolumeFieldVolumeMode = "volumeMode" PersistentVolumeFieldVsphereVolume = "vsphereVolume" ) @@ -55,6 +58,7 @@ type PersistentVolume struct { Annotations map[string]string `json:"annotations,omitempty" yaml:"annotations,omitempty"` AzureDisk *AzureDiskVolumeSource `json:"azureDisk,omitempty" yaml:"azureDisk,omitempty"` AzureFile *AzureFilePersistentVolumeSource `json:"azureFile,omitempty" yaml:"azureFile,omitempty"` + CSI *CSIPersistentVolumeSource `json:"csi,omitempty" yaml:"csi,omitempty"` Capacity map[string]string `json:"capacity,omitempty" yaml:"capacity,omitempty"` CephFS *CephFSPersistentVolumeSource `json:"cephfs,omitempty" yaml:"cephfs,omitempty"` Cinder *CinderVolumeSource `json:"cinder,omitempty" yaml:"cinder,omitempty"` @@ -63,25 +67,26 @@ type PersistentVolume struct { CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"` Description string `json:"description,omitempty" yaml:"description,omitempty"` FC *FCVolumeSource `json:"fc,omitempty" yaml:"fc,omitempty"` - FlexVolume *FlexVolumeSource `json:"flexVolume,omitempty" yaml:"flexVolume,omitempty"` + FlexVolume *FlexPersistentVolumeSource `json:"flexVolume,omitempty" yaml:"flexVolume,omitempty"` Flocker *FlockerVolumeSource `json:"flocker,omitempty" yaml:"flocker,omitempty"` GCEPersistentDisk *GCEPersistentDiskVolumeSource `json:"gcePersistentDisk,omitempty" yaml:"gcePersistentDisk,omitempty"` Glusterfs *GlusterfsVolumeSource `json:"glusterfs,omitempty" yaml:"glusterfs,omitempty"` HostPath *HostPathVolumeSource `json:"hostPath,omitempty" yaml:"hostPath,omitempty"` - ISCSI *ISCSIVolumeSource `json:"iscsi,omitempty" yaml:"iscsi,omitempty"` + ISCSI *ISCSIPersistentVolumeSource `json:"iscsi,omitempty" yaml:"iscsi,omitempty"` Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"` Local *LocalVolumeSource `json:"local,omitempty" yaml:"local,omitempty"` MountOptions []string `json:"mountOptions,omitempty" yaml:"mountOptions,omitempty"` NFS *NFSVolumeSource `json:"nfs,omitempty" yaml:"nfs,omitempty"` Name string `json:"name,omitempty" yaml:"name,omitempty"` + NodeAffinity *VolumeNodeAffinity `json:"nodeAffinity,omitempty" yaml:"nodeAffinity,omitempty"` OwnerReferences []OwnerReference `json:"ownerReferences,omitempty" yaml:"ownerReferences,omitempty"` PersistentVolumeReclaimPolicy string `json:"persistentVolumeReclaimPolicy,omitempty" yaml:"persistentVolumeReclaimPolicy,omitempty"` PhotonPersistentDisk *PhotonPersistentDiskVolumeSource `json:"photonPersistentDisk,omitempty" yaml:"photonPersistentDisk,omitempty"` PortworxVolume *PortworxVolumeSource `json:"portworxVolume,omitempty" yaml:"portworxVolume,omitempty"` Quobyte *QuobyteVolumeSource `json:"quobyte,omitempty" yaml:"quobyte,omitempty"` - RBD *RBDVolumeSource `json:"rbd,omitempty" yaml:"rbd,omitempty"` + RBD *RBDPersistentVolumeSource `json:"rbd,omitempty" yaml:"rbd,omitempty"` Removed string `json:"removed,omitempty" yaml:"removed,omitempty"` - ScaleIO *ScaleIOVolumeSource `json:"scaleIO,omitempty" yaml:"scaleIO,omitempty"` + ScaleIO *ScaleIOPersistentVolumeSource `json:"scaleIO,omitempty" yaml:"scaleIO,omitempty"` State string `json:"state,omitempty" yaml:"state,omitempty"` Status *PersistentVolumeStatus `json:"status,omitempty" yaml:"status,omitempty"` StorageClassId string `json:"storageClassId,omitempty" yaml:"storageClassId,omitempty"` @@ -89,6 +94,7 @@ type PersistentVolume struct { Transitioning string `json:"transitioning,omitempty" yaml:"transitioning,omitempty"` TransitioningMessage string `json:"transitioningMessage,omitempty" yaml:"transitioningMessage,omitempty"` Uuid string `json:"uuid,omitempty" yaml:"uuid,omitempty"` + VolumeMode string `json:"volumeMode,omitempty" yaml:"volumeMode,omitempty"` VsphereVolume *VsphereVirtualDiskVolumeSource `json:"vsphereVolume,omitempty" yaml:"vsphereVolume,omitempty"` } type PersistentVolumeCollection struct { diff --git a/client/cluster/v3/zz_generated_persistent_volume_spec.go b/client/cluster/v3/zz_generated_persistent_volume_spec.go index 1b5ded6d..00fd02b4 100644 --- a/client/cluster/v3/zz_generated_persistent_volume_spec.go +++ b/client/cluster/v3/zz_generated_persistent_volume_spec.go @@ -6,6 +6,7 @@ const ( PersistentVolumeSpecFieldAccessModes = "accessModes" PersistentVolumeSpecFieldAzureDisk = "azureDisk" PersistentVolumeSpecFieldAzureFile = "azureFile" + PersistentVolumeSpecFieldCSI = "csi" PersistentVolumeSpecFieldCapacity = "capacity" PersistentVolumeSpecFieldCephFS = "cephfs" PersistentVolumeSpecFieldCinder = "cinder" @@ -20,6 +21,7 @@ const ( PersistentVolumeSpecFieldLocal = "local" PersistentVolumeSpecFieldMountOptions = "mountOptions" PersistentVolumeSpecFieldNFS = "nfs" + PersistentVolumeSpecFieldNodeAffinity = "nodeAffinity" PersistentVolumeSpecFieldPersistentVolumeReclaimPolicy = "persistentVolumeReclaimPolicy" PersistentVolumeSpecFieldPhotonPersistentDisk = "photonPersistentDisk" PersistentVolumeSpecFieldPortworxVolume = "portworxVolume" @@ -28,6 +30,7 @@ const ( PersistentVolumeSpecFieldScaleIO = "scaleIO" PersistentVolumeSpecFieldStorageClassId = "storageClassId" PersistentVolumeSpecFieldStorageOS = "storageos" + PersistentVolumeSpecFieldVolumeMode = "volumeMode" PersistentVolumeSpecFieldVsphereVolume = "vsphereVolume" ) @@ -36,27 +39,30 @@ type PersistentVolumeSpec struct { AccessModes []string `json:"accessModes,omitempty" yaml:"accessModes,omitempty"` AzureDisk *AzureDiskVolumeSource `json:"azureDisk,omitempty" yaml:"azureDisk,omitempty"` AzureFile *AzureFilePersistentVolumeSource `json:"azureFile,omitempty" yaml:"azureFile,omitempty"` + CSI *CSIPersistentVolumeSource `json:"csi,omitempty" yaml:"csi,omitempty"` Capacity map[string]string `json:"capacity,omitempty" yaml:"capacity,omitempty"` CephFS *CephFSPersistentVolumeSource `json:"cephfs,omitempty" yaml:"cephfs,omitempty"` Cinder *CinderVolumeSource `json:"cinder,omitempty" yaml:"cinder,omitempty"` ClaimRef *ObjectReference `json:"claimRef,omitempty" yaml:"claimRef,omitempty"` FC *FCVolumeSource `json:"fc,omitempty" yaml:"fc,omitempty"` - FlexVolume *FlexVolumeSource `json:"flexVolume,omitempty" yaml:"flexVolume,omitempty"` + FlexVolume *FlexPersistentVolumeSource `json:"flexVolume,omitempty" yaml:"flexVolume,omitempty"` Flocker *FlockerVolumeSource `json:"flocker,omitempty" yaml:"flocker,omitempty"` GCEPersistentDisk *GCEPersistentDiskVolumeSource `json:"gcePersistentDisk,omitempty" yaml:"gcePersistentDisk,omitempty"` Glusterfs *GlusterfsVolumeSource `json:"glusterfs,omitempty" yaml:"glusterfs,omitempty"` HostPath *HostPathVolumeSource `json:"hostPath,omitempty" yaml:"hostPath,omitempty"` - ISCSI *ISCSIVolumeSource `json:"iscsi,omitempty" yaml:"iscsi,omitempty"` + ISCSI *ISCSIPersistentVolumeSource `json:"iscsi,omitempty" yaml:"iscsi,omitempty"` Local *LocalVolumeSource `json:"local,omitempty" yaml:"local,omitempty"` MountOptions []string `json:"mountOptions,omitempty" yaml:"mountOptions,omitempty"` NFS *NFSVolumeSource `json:"nfs,omitempty" yaml:"nfs,omitempty"` + NodeAffinity *VolumeNodeAffinity `json:"nodeAffinity,omitempty" yaml:"nodeAffinity,omitempty"` PersistentVolumeReclaimPolicy string `json:"persistentVolumeReclaimPolicy,omitempty" yaml:"persistentVolumeReclaimPolicy,omitempty"` PhotonPersistentDisk *PhotonPersistentDiskVolumeSource `json:"photonPersistentDisk,omitempty" yaml:"photonPersistentDisk,omitempty"` PortworxVolume *PortworxVolumeSource `json:"portworxVolume,omitempty" yaml:"portworxVolume,omitempty"` Quobyte *QuobyteVolumeSource `json:"quobyte,omitempty" yaml:"quobyte,omitempty"` - RBD *RBDVolumeSource `json:"rbd,omitempty" yaml:"rbd,omitempty"` - ScaleIO *ScaleIOVolumeSource `json:"scaleIO,omitempty" yaml:"scaleIO,omitempty"` + RBD *RBDPersistentVolumeSource `json:"rbd,omitempty" yaml:"rbd,omitempty"` + ScaleIO *ScaleIOPersistentVolumeSource `json:"scaleIO,omitempty" yaml:"scaleIO,omitempty"` StorageClassId string `json:"storageClassId,omitempty" yaml:"storageClassId,omitempty"` StorageOS *StorageOSPersistentVolumeSource `json:"storageos,omitempty" yaml:"storageos,omitempty"` + VolumeMode string `json:"volumeMode,omitempty" yaml:"volumeMode,omitempty"` VsphereVolume *VsphereVirtualDiskVolumeSource `json:"vsphereVolume,omitempty" yaml:"vsphereVolume,omitempty"` } diff --git a/client/cluster/v3/zz_generated_rbd_persistent_volume_source.go b/client/cluster/v3/zz_generated_rbd_persistent_volume_source.go new file mode 100644 index 00000000..40f55148 --- /dev/null +++ b/client/cluster/v3/zz_generated_rbd_persistent_volume_source.go @@ -0,0 +1,24 @@ +package client + +const ( + RBDPersistentVolumeSourceType = "rbdPersistentVolumeSource" + RBDPersistentVolumeSourceFieldCephMonitors = "monitors" + RBDPersistentVolumeSourceFieldFSType = "fsType" + RBDPersistentVolumeSourceFieldKeyring = "keyring" + RBDPersistentVolumeSourceFieldRBDImage = "image" + RBDPersistentVolumeSourceFieldRBDPool = "pool" + RBDPersistentVolumeSourceFieldRadosUser = "user" + RBDPersistentVolumeSourceFieldReadOnly = "readOnly" + RBDPersistentVolumeSourceFieldSecretRef = "secretRef" +) + +type RBDPersistentVolumeSource struct { + CephMonitors []string `json:"monitors,omitempty" yaml:"monitors,omitempty"` + FSType string `json:"fsType,omitempty" yaml:"fsType,omitempty"` + Keyring string `json:"keyring,omitempty" yaml:"keyring,omitempty"` + RBDImage string `json:"image,omitempty" yaml:"image,omitempty"` + RBDPool string `json:"pool,omitempty" yaml:"pool,omitempty"` + RadosUser string `json:"user,omitempty" yaml:"user,omitempty"` + ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"` + SecretRef *SecretReference `json:"secretRef,omitempty" yaml:"secretRef,omitempty"` +} diff --git a/client/cluster/v3/zz_generated_rbd_volume_source.go b/client/cluster/v3/zz_generated_rbd_volume_source.go deleted file mode 100644 index 436a8b73..00000000 --- a/client/cluster/v3/zz_generated_rbd_volume_source.go +++ /dev/null @@ -1,24 +0,0 @@ -package client - -const ( - RBDVolumeSourceType = "rbdVolumeSource" - RBDVolumeSourceFieldCephMonitors = "monitors" - RBDVolumeSourceFieldFSType = "fsType" - RBDVolumeSourceFieldKeyring = "keyring" - RBDVolumeSourceFieldRBDImage = "image" - RBDVolumeSourceFieldRBDPool = "pool" - RBDVolumeSourceFieldRadosUser = "user" - RBDVolumeSourceFieldReadOnly = "readOnly" - RBDVolumeSourceFieldSecretRef = "secretRef" -) - -type RBDVolumeSource struct { - CephMonitors []string `json:"monitors,omitempty" yaml:"monitors,omitempty"` - FSType string `json:"fsType,omitempty" yaml:"fsType,omitempty"` - Keyring string `json:"keyring,omitempty" yaml:"keyring,omitempty"` - RBDImage string `json:"image,omitempty" yaml:"image,omitempty"` - RBDPool string `json:"pool,omitempty" yaml:"pool,omitempty"` - RadosUser string `json:"user,omitempty" yaml:"user,omitempty"` - ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"` - SecretRef *LocalObjectReference `json:"secretRef,omitempty" yaml:"secretRef,omitempty"` -} diff --git a/client/cluster/v3/zz_generated_scale_iopersistent_volume_source.go b/client/cluster/v3/zz_generated_scale_iopersistent_volume_source.go new file mode 100644 index 00000000..49871d57 --- /dev/null +++ b/client/cluster/v3/zz_generated_scale_iopersistent_volume_source.go @@ -0,0 +1,28 @@ +package client + +const ( + ScaleIOPersistentVolumeSourceType = "scaleIOPersistentVolumeSource" + ScaleIOPersistentVolumeSourceFieldFSType = "fsType" + ScaleIOPersistentVolumeSourceFieldGateway = "gateway" + ScaleIOPersistentVolumeSourceFieldProtectionDomain = "protectionDomain" + ScaleIOPersistentVolumeSourceFieldReadOnly = "readOnly" + ScaleIOPersistentVolumeSourceFieldSSLEnabled = "sslEnabled" + ScaleIOPersistentVolumeSourceFieldSecretRef = "secretRef" + ScaleIOPersistentVolumeSourceFieldStorageMode = "storageMode" + ScaleIOPersistentVolumeSourceFieldStoragePool = "storagePool" + ScaleIOPersistentVolumeSourceFieldSystem = "system" + ScaleIOPersistentVolumeSourceFieldVolumeName = "volumeName" +) + +type ScaleIOPersistentVolumeSource struct { + FSType string `json:"fsType,omitempty" yaml:"fsType,omitempty"` + Gateway string `json:"gateway,omitempty" yaml:"gateway,omitempty"` + ProtectionDomain string `json:"protectionDomain,omitempty" yaml:"protectionDomain,omitempty"` + ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"` + SSLEnabled bool `json:"sslEnabled,omitempty" yaml:"sslEnabled,omitempty"` + SecretRef *SecretReference `json:"secretRef,omitempty" yaml:"secretRef,omitempty"` + StorageMode string `json:"storageMode,omitempty" yaml:"storageMode,omitempty"` + StoragePool string `json:"storagePool,omitempty" yaml:"storagePool,omitempty"` + System string `json:"system,omitempty" yaml:"system,omitempty"` + VolumeName string `json:"volumeName,omitempty" yaml:"volumeName,omitempty"` +} diff --git a/client/cluster/v3/zz_generated_scale_iovolume_source.go b/client/cluster/v3/zz_generated_scale_iovolume_source.go deleted file mode 100644 index 58e00091..00000000 --- a/client/cluster/v3/zz_generated_scale_iovolume_source.go +++ /dev/null @@ -1,28 +0,0 @@ -package client - -const ( - ScaleIOVolumeSourceType = "scaleIOVolumeSource" - ScaleIOVolumeSourceFieldFSType = "fsType" - ScaleIOVolumeSourceFieldGateway = "gateway" - ScaleIOVolumeSourceFieldProtectionDomain = "protectionDomain" - ScaleIOVolumeSourceFieldReadOnly = "readOnly" - ScaleIOVolumeSourceFieldSSLEnabled = "sslEnabled" - ScaleIOVolumeSourceFieldSecretRef = "secretRef" - ScaleIOVolumeSourceFieldStorageMode = "storageMode" - ScaleIOVolumeSourceFieldStoragePool = "storagePool" - ScaleIOVolumeSourceFieldSystem = "system" - ScaleIOVolumeSourceFieldVolumeName = "volumeName" -) - -type ScaleIOVolumeSource struct { - FSType string `json:"fsType,omitempty" yaml:"fsType,omitempty"` - Gateway string `json:"gateway,omitempty" yaml:"gateway,omitempty"` - ProtectionDomain string `json:"protectionDomain,omitempty" yaml:"protectionDomain,omitempty"` - ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"` - SSLEnabled bool `json:"sslEnabled,omitempty" yaml:"sslEnabled,omitempty"` - SecretRef *LocalObjectReference `json:"secretRef,omitempty" yaml:"secretRef,omitempty"` - StorageMode string `json:"storageMode,omitempty" yaml:"storageMode,omitempty"` - StoragePool string `json:"storagePool,omitempty" yaml:"storagePool,omitempty"` - System string `json:"system,omitempty" yaml:"system,omitempty"` - VolumeName string `json:"volumeName,omitempty" yaml:"volumeName,omitempty"` -} diff --git a/client/cluster/v3/zz_generated_storage_class.go b/client/cluster/v3/zz_generated_storage_class.go index aa1940cb..841f72ba 100644 --- a/client/cluster/v3/zz_generated_storage_class.go +++ b/client/cluster/v3/zz_generated_storage_class.go @@ -20,6 +20,7 @@ const ( StorageClassFieldReclaimPolicy = "reclaimPolicy" StorageClassFieldRemoved = "removed" StorageClassFieldUuid = "uuid" + StorageClassFieldVolumeBindingMode = "volumeBindingMode" ) type StorageClass struct { @@ -38,6 +39,7 @@ type StorageClass struct { ReclaimPolicy string `json:"reclaimPolicy,omitempty" yaml:"reclaimPolicy,omitempty"` Removed string `json:"removed,omitempty" yaml:"removed,omitempty"` Uuid string `json:"uuid,omitempty" yaml:"uuid,omitempty"` + VolumeBindingMode string `json:"volumeBindingMode,omitempty" yaml:"volumeBindingMode,omitempty"` } type StorageClassCollection struct { types.Collection diff --git a/client/cluster/v3/zz_generated_volume_node_affinity.go b/client/cluster/v3/zz_generated_volume_node_affinity.go new file mode 100644 index 00000000..e025eb36 --- /dev/null +++ b/client/cluster/v3/zz_generated_volume_node_affinity.go @@ -0,0 +1,10 @@ +package client + +const ( + VolumeNodeAffinityType = "volumeNodeAffinity" + VolumeNodeAffinityFieldRequired = "required" +) + +type VolumeNodeAffinity struct { + Required *NodeSelector `json:"required,omitempty" yaml:"required,omitempty"` +} diff --git a/client/management/v3/zz_generated_allowed_flex_volume.go b/client/management/v3/zz_generated_allowed_flex_volume.go new file mode 100644 index 00000000..8b7d9585 --- /dev/null +++ b/client/management/v3/zz_generated_allowed_flex_volume.go @@ -0,0 +1,10 @@ +package client + +const ( + AllowedFlexVolumeType = "allowedFlexVolume" + AllowedFlexVolumeFieldDriver = "driver" +) + +type AllowedFlexVolume struct { + Driver string `json:"driver,omitempty" yaml:"driver,omitempty"` +} diff --git a/client/management/v3/zz_generated_cluster_event.go b/client/management/v3/zz_generated_cluster_event.go index 88b29fcd..298f0273 100644 --- a/client/management/v3/zz_generated_cluster_event.go +++ b/client/management/v3/zz_generated_cluster_event.go @@ -5,47 +5,59 @@ import ( ) const ( - ClusterEventType = "clusterEvent" - ClusterEventFieldAnnotations = "annotations" - ClusterEventFieldClusterId = "clusterId" - ClusterEventFieldCount = "count" - ClusterEventFieldCreated = "created" - ClusterEventFieldCreatorID = "creatorId" - ClusterEventFieldEventType = "eventType" - ClusterEventFieldFirstTimestamp = "firstTimestamp" - ClusterEventFieldInvolvedObject = "involvedObject" - ClusterEventFieldLabels = "labels" - ClusterEventFieldLastTimestamp = "lastTimestamp" - ClusterEventFieldMessage = "message" - ClusterEventFieldName = "name" - ClusterEventFieldNamespaceId = "namespaceId" - ClusterEventFieldOwnerReferences = "ownerReferences" - ClusterEventFieldReason = "reason" - ClusterEventFieldRemoved = "removed" - ClusterEventFieldSource = "source" - ClusterEventFieldUuid = "uuid" + ClusterEventType = "clusterEvent" + ClusterEventFieldAction = "action" + ClusterEventFieldAnnotations = "annotations" + ClusterEventFieldClusterId = "clusterId" + ClusterEventFieldCount = "count" + ClusterEventFieldCreated = "created" + ClusterEventFieldCreatorID = "creatorId" + ClusterEventFieldEventTime = "eventTime" + ClusterEventFieldEventType = "eventType" + ClusterEventFieldFirstTimestamp = "firstTimestamp" + ClusterEventFieldInvolvedObject = "involvedObject" + ClusterEventFieldLabels = "labels" + ClusterEventFieldLastTimestamp = "lastTimestamp" + ClusterEventFieldMessage = "message" + ClusterEventFieldName = "name" + ClusterEventFieldNamespaceId = "namespaceId" + ClusterEventFieldOwnerReferences = "ownerReferences" + ClusterEventFieldReason = "reason" + ClusterEventFieldRelated = "related" + ClusterEventFieldRemoved = "removed" + ClusterEventFieldReportingController = "reportingComponent" + ClusterEventFieldReportingInstance = "reportingInstance" + ClusterEventFieldSeries = "series" + ClusterEventFieldSource = "source" + ClusterEventFieldUuid = "uuid" ) type ClusterEvent struct { types.Resource - Annotations map[string]string `json:"annotations,omitempty" yaml:"annotations,omitempty"` - ClusterId string `json:"clusterId,omitempty" yaml:"clusterId,omitempty"` - Count int64 `json:"count,omitempty" yaml:"count,omitempty"` - Created string `json:"created,omitempty" yaml:"created,omitempty"` - CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"` - EventType string `json:"eventType,omitempty" yaml:"eventType,omitempty"` - FirstTimestamp string `json:"firstTimestamp,omitempty" yaml:"firstTimestamp,omitempty"` - InvolvedObject *ObjectReference `json:"involvedObject,omitempty" yaml:"involvedObject,omitempty"` - Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"` - LastTimestamp string `json:"lastTimestamp,omitempty" yaml:"lastTimestamp,omitempty"` - Message string `json:"message,omitempty" yaml:"message,omitempty"` - Name string `json:"name,omitempty" yaml:"name,omitempty"` - NamespaceId string `json:"namespaceId,omitempty" yaml:"namespaceId,omitempty"` - OwnerReferences []OwnerReference `json:"ownerReferences,omitempty" yaml:"ownerReferences,omitempty"` - Reason string `json:"reason,omitempty" yaml:"reason,omitempty"` - Removed string `json:"removed,omitempty" yaml:"removed,omitempty"` - Source *EventSource `json:"source,omitempty" yaml:"source,omitempty"` - Uuid string `json:"uuid,omitempty" yaml:"uuid,omitempty"` + Action string `json:"action,omitempty" yaml:"action,omitempty"` + Annotations map[string]string `json:"annotations,omitempty" yaml:"annotations,omitempty"` + ClusterId string `json:"clusterId,omitempty" yaml:"clusterId,omitempty"` + Count int64 `json:"count,omitempty" yaml:"count,omitempty"` + Created string `json:"created,omitempty" yaml:"created,omitempty"` + CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"` + EventTime *MicroTime `json:"eventTime,omitempty" yaml:"eventTime,omitempty"` + EventType string `json:"eventType,omitempty" yaml:"eventType,omitempty"` + FirstTimestamp string `json:"firstTimestamp,omitempty" yaml:"firstTimestamp,omitempty"` + InvolvedObject *ObjectReference `json:"involvedObject,omitempty" yaml:"involvedObject,omitempty"` + Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"` + LastTimestamp string `json:"lastTimestamp,omitempty" yaml:"lastTimestamp,omitempty"` + Message string `json:"message,omitempty" yaml:"message,omitempty"` + Name string `json:"name,omitempty" yaml:"name,omitempty"` + NamespaceId string `json:"namespaceId,omitempty" yaml:"namespaceId,omitempty"` + OwnerReferences []OwnerReference `json:"ownerReferences,omitempty" yaml:"ownerReferences,omitempty"` + Reason string `json:"reason,omitempty" yaml:"reason,omitempty"` + Related *ObjectReference `json:"related,omitempty" yaml:"related,omitempty"` + Removed string `json:"removed,omitempty" yaml:"removed,omitempty"` + ReportingController string `json:"reportingComponent,omitempty" yaml:"reportingComponent,omitempty"` + ReportingInstance string `json:"reportingInstance,omitempty" yaml:"reportingInstance,omitempty"` + Series *EventSeries `json:"series,omitempty" yaml:"series,omitempty"` + Source *EventSource `json:"source,omitempty" yaml:"source,omitempty"` + Uuid string `json:"uuid,omitempty" yaml:"uuid,omitempty"` } type ClusterEventCollection struct { types.Collection diff --git a/client/management/v3/zz_generated_event_series.go b/client/management/v3/zz_generated_event_series.go new file mode 100644 index 00000000..85747ff6 --- /dev/null +++ b/client/management/v3/zz_generated_event_series.go @@ -0,0 +1,14 @@ +package client + +const ( + EventSeriesType = "eventSeries" + EventSeriesFieldCount = "count" + EventSeriesFieldLastObservedTime = "lastObservedTime" + EventSeriesFieldState = "state" +) + +type EventSeries struct { + Count int64 `json:"count,omitempty" yaml:"count,omitempty"` + LastObservedTime *MicroTime `json:"lastObservedTime,omitempty" yaml:"lastObservedTime,omitempty"` + State string `json:"state,omitempty" yaml:"state,omitempty"` +} diff --git a/client/management/v3/zz_generated_micro_time.go b/client/management/v3/zz_generated_micro_time.go new file mode 100644 index 00000000..bedb88d4 --- /dev/null +++ b/client/management/v3/zz_generated_micro_time.go @@ -0,0 +1,8 @@ +package client + +const ( + MicroTimeType = "microTime" +) + +type MicroTime struct { +} diff --git a/client/management/v3/zz_generated_pod_security_policy_spec.go b/client/management/v3/zz_generated_pod_security_policy_spec.go index 19bc6616..22d0a80b 100644 --- a/client/management/v3/zz_generated_pod_security_policy_spec.go +++ b/client/management/v3/zz_generated_pod_security_policy_spec.go @@ -4,6 +4,7 @@ const ( PodSecurityPolicySpecType = "podSecurityPolicySpec" PodSecurityPolicySpecFieldAllowPrivilegeEscalation = "allowPrivilegeEscalation" PodSecurityPolicySpecFieldAllowedCapabilities = "allowedCapabilities" + PodSecurityPolicySpecFieldAllowedFlexVolumes = "allowedFlexVolumes" PodSecurityPolicySpecFieldAllowedHostPaths = "allowedHostPaths" PodSecurityPolicySpecFieldDefaultAddCapabilities = "defaultAddCapabilities" PodSecurityPolicySpecFieldDefaultAllowPrivilegeEscalation = "defaultAllowPrivilegeEscalation" @@ -24,6 +25,7 @@ const ( type PodSecurityPolicySpec struct { AllowPrivilegeEscalation *bool `json:"allowPrivilegeEscalation,omitempty" yaml:"allowPrivilegeEscalation,omitempty"` AllowedCapabilities []string `json:"allowedCapabilities,omitempty" yaml:"allowedCapabilities,omitempty"` + AllowedFlexVolumes []AllowedFlexVolume `json:"allowedFlexVolumes,omitempty" yaml:"allowedFlexVolumes,omitempty"` AllowedHostPaths []AllowedHostPath `json:"allowedHostPaths,omitempty" yaml:"allowedHostPaths,omitempty"` DefaultAddCapabilities []string `json:"defaultAddCapabilities,omitempty" yaml:"defaultAddCapabilities,omitempty"` DefaultAllowPrivilegeEscalation *bool `json:"defaultAllowPrivilegeEscalation,omitempty" yaml:"defaultAllowPrivilegeEscalation,omitempty"` diff --git a/client/management/v3/zz_generated_pod_security_policy_template.go b/client/management/v3/zz_generated_pod_security_policy_template.go index 1e384462..d0fcb26d 100644 --- a/client/management/v3/zz_generated_pod_security_policy_template.go +++ b/client/management/v3/zz_generated_pod_security_policy_template.go @@ -8,6 +8,7 @@ const ( PodSecurityPolicyTemplateType = "podSecurityPolicyTemplate" PodSecurityPolicyTemplateFieldAllowPrivilegeEscalation = "allowPrivilegeEscalation" PodSecurityPolicyTemplateFieldAllowedCapabilities = "allowedCapabilities" + PodSecurityPolicyTemplateFieldAllowedFlexVolumes = "allowedFlexVolumes" PodSecurityPolicyTemplateFieldAllowedHostPaths = "allowedHostPaths" PodSecurityPolicyTemplateFieldAnnotations = "annotations" PodSecurityPolicyTemplateFieldCreated = "created" @@ -38,6 +39,7 @@ type PodSecurityPolicyTemplate struct { types.Resource AllowPrivilegeEscalation *bool `json:"allowPrivilegeEscalation,omitempty" yaml:"allowPrivilegeEscalation,omitempty"` AllowedCapabilities []string `json:"allowedCapabilities,omitempty" yaml:"allowedCapabilities,omitempty"` + AllowedFlexVolumes []AllowedFlexVolume `json:"allowedFlexVolumes,omitempty" yaml:"allowedFlexVolumes,omitempty"` AllowedHostPaths []AllowedHostPath `json:"allowedHostPaths,omitempty" yaml:"allowedHostPaths,omitempty"` Annotations map[string]string `json:"annotations,omitempty" yaml:"annotations,omitempty"` Created string `json:"created,omitempty" yaml:"created,omitempty"` diff --git a/client/project/v3/zz_generated_config_map.go b/client/project/v3/zz_generated_config_map.go index 1ca1fa68..74ef7210 100644 --- a/client/project/v3/zz_generated_config_map.go +++ b/client/project/v3/zz_generated_config_map.go @@ -7,6 +7,7 @@ import ( const ( ConfigMapType = "configMap" ConfigMapFieldAnnotations = "annotations" + ConfigMapFieldBinaryData = "binaryData" ConfigMapFieldCreated = "created" ConfigMapFieldCreatorID = "creatorId" ConfigMapFieldData = "data" @@ -22,6 +23,7 @@ const ( type ConfigMap struct { types.Resource Annotations map[string]string `json:"annotations,omitempty" yaml:"annotations,omitempty"` + BinaryData map[string]string `json:"binaryData,omitempty" yaml:"binaryData,omitempty"` Created string `json:"created,omitempty" yaml:"created,omitempty"` CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"` Data map[string]string `json:"data,omitempty" yaml:"data,omitempty"` diff --git a/client/project/v3/zz_generated_container.go b/client/project/v3/zz_generated_container.go index f0e12ac9..4e76cc77 100644 --- a/client/project/v3/zz_generated_container.go +++ b/client/project/v3/zz_generated_container.go @@ -23,6 +23,7 @@ const ( ContainerFieldReadinessProbe = "readinessProbe" ContainerFieldResources = "resources" ContainerFieldRestartCount = "restartCount" + ContainerFieldRunAsGroup = "runAsGroup" ContainerFieldRunAsNonRoot = "runAsNonRoot" ContainerFieldState = "state" ContainerFieldStdin = "stdin" @@ -33,6 +34,7 @@ const ( ContainerFieldTransitioning = "transitioning" ContainerFieldTransitioningMessage = "transitioningMessage" ContainerFieldUid = "uid" + ContainerFieldVolumeDevices = "volumeDevices" ContainerFieldVolumeMounts = "volumeMounts" ContainerFieldWorkingDir = "workingDir" ) @@ -59,6 +61,7 @@ type Container struct { ReadinessProbe *Probe `json:"readinessProbe,omitempty" yaml:"readinessProbe,omitempty"` Resources *ResourceRequirements `json:"resources,omitempty" yaml:"resources,omitempty"` RestartCount int64 `json:"restartCount,omitempty" yaml:"restartCount,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` State string `json:"state,omitempty" yaml:"state,omitempty"` Stdin bool `json:"stdin,omitempty" yaml:"stdin,omitempty"` @@ -69,6 +72,7 @@ type Container struct { Transitioning string `json:"transitioning,omitempty" yaml:"transitioning,omitempty"` TransitioningMessage string `json:"transitioningMessage,omitempty" yaml:"transitioningMessage,omitempty"` Uid *int64 `json:"uid,omitempty" yaml:"uid,omitempty"` + VolumeDevices []VolumeDevice `json:"volumeDevices,omitempty" yaml:"volumeDevices,omitempty"` VolumeMounts []VolumeMount `json:"volumeMounts,omitempty" yaml:"volumeMounts,omitempty"` WorkingDir string `json:"workingDir,omitempty" yaml:"workingDir,omitempty"` } diff --git a/client/project/v3/zz_generated_cron_job.go b/client/project/v3/zz_generated_cron_job.go index 57adf4fa..ef1cbb7d 100644 --- a/client/project/v3/zz_generated_cron_job.go +++ b/client/project/v3/zz_generated_cron_job.go @@ -14,6 +14,7 @@ const ( CronJobFieldCreatorID = "creatorId" CronJobFieldCronJobConfig = "cronJobConfig" CronJobFieldCronJobStatus = "cronJobStatus" + CronJobFieldDNSConfig = "dnsConfig" CronJobFieldDNSPolicy = "dnsPolicy" CronJobFieldFsgid = "fsgid" CronJobFieldGids = "gids" @@ -34,11 +35,13 @@ const ( CronJobFieldPublicEndpoints = "publicEndpoints" CronJobFieldRemoved = "removed" CronJobFieldRestartPolicy = "restartPolicy" + CronJobFieldRunAsGroup = "runAsGroup" CronJobFieldRunAsNonRoot = "runAsNonRoot" CronJobFieldSchedulerName = "schedulerName" CronJobFieldScheduling = "scheduling" CronJobFieldSelector = "selector" CronJobFieldServiceAccountName = "serviceAccountName" + CronJobFieldShareProcessNamespace = "shareProcessNamespace" CronJobFieldState = "state" CronJobFieldSubdomain = "subdomain" CronJobFieldTerminationGracePeriodSeconds = "terminationGracePeriodSeconds" @@ -61,6 +64,7 @@ type CronJob struct { CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"` CronJobConfig *CronJobConfig `json:"cronJobConfig,omitempty" yaml:"cronJobConfig,omitempty"` CronJobStatus *CronJobStatus `json:"cronJobStatus,omitempty" yaml:"cronJobStatus,omitempty"` + DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty" yaml:"dnsConfig,omitempty"` DNSPolicy string `json:"dnsPolicy,omitempty" yaml:"dnsPolicy,omitempty"` Fsgid *int64 `json:"fsgid,omitempty" yaml:"fsgid,omitempty"` Gids []int64 `json:"gids,omitempty" yaml:"gids,omitempty"` @@ -81,11 +85,13 @@ type CronJob struct { PublicEndpoints []PublicEndpoint `json:"publicEndpoints,omitempty" yaml:"publicEndpoints,omitempty"` Removed string `json:"removed,omitempty" yaml:"removed,omitempty"` RestartPolicy string `json:"restartPolicy,omitempty" yaml:"restartPolicy,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` SchedulerName string `json:"schedulerName,omitempty" yaml:"schedulerName,omitempty"` Scheduling *Scheduling `json:"scheduling,omitempty" yaml:"scheduling,omitempty"` Selector *LabelSelector `json:"selector,omitempty" yaml:"selector,omitempty"` ServiceAccountName string `json:"serviceAccountName,omitempty" yaml:"serviceAccountName,omitempty"` + ShareProcessNamespace *bool `json:"shareProcessNamespace,omitempty" yaml:"shareProcessNamespace,omitempty"` State string `json:"state,omitempty" yaml:"state,omitempty"` Subdomain string `json:"subdomain,omitempty" yaml:"subdomain,omitempty"` TerminationGracePeriodSeconds *int64 `json:"terminationGracePeriodSeconds,omitempty" yaml:"terminationGracePeriodSeconds,omitempty"` diff --git a/client/project/v3/zz_generated_cron_job_spec.go b/client/project/v3/zz_generated_cron_job_spec.go index 9172b4d7..85ef4cfa 100644 --- a/client/project/v3/zz_generated_cron_job_spec.go +++ b/client/project/v3/zz_generated_cron_job_spec.go @@ -6,6 +6,7 @@ const ( CronJobSpecFieldAutomountServiceAccountToken = "automountServiceAccountToken" CronJobSpecFieldContainers = "containers" CronJobSpecFieldCronJobConfig = "cronJobConfig" + CronJobSpecFieldDNSConfig = "dnsConfig" CronJobSpecFieldDNSPolicy = "dnsPolicy" CronJobSpecFieldFsgid = "fsgid" CronJobSpecFieldGids = "gids" @@ -20,11 +21,13 @@ const ( CronJobSpecFieldPriority = "priority" CronJobSpecFieldPriorityClassName = "priorityClassName" CronJobSpecFieldRestartPolicy = "restartPolicy" + CronJobSpecFieldRunAsGroup = "runAsGroup" CronJobSpecFieldRunAsNonRoot = "runAsNonRoot" CronJobSpecFieldSchedulerName = "schedulerName" CronJobSpecFieldScheduling = "scheduling" CronJobSpecFieldSelector = "selector" CronJobSpecFieldServiceAccountName = "serviceAccountName" + CronJobSpecFieldShareProcessNamespace = "shareProcessNamespace" CronJobSpecFieldSubdomain = "subdomain" CronJobSpecFieldTerminationGracePeriodSeconds = "terminationGracePeriodSeconds" CronJobSpecFieldUid = "uid" @@ -36,6 +39,7 @@ type CronJobSpec struct { AutomountServiceAccountToken *bool `json:"automountServiceAccountToken,omitempty" yaml:"automountServiceAccountToken,omitempty"` Containers []Container `json:"containers,omitempty" yaml:"containers,omitempty"` CronJobConfig *CronJobConfig `json:"cronJobConfig,omitempty" yaml:"cronJobConfig,omitempty"` + DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty" yaml:"dnsConfig,omitempty"` DNSPolicy string `json:"dnsPolicy,omitempty" yaml:"dnsPolicy,omitempty"` Fsgid *int64 `json:"fsgid,omitempty" yaml:"fsgid,omitempty"` Gids []int64 `json:"gids,omitempty" yaml:"gids,omitempty"` @@ -50,11 +54,13 @@ type CronJobSpec struct { Priority *int64 `json:"priority,omitempty" yaml:"priority,omitempty"` PriorityClassName string `json:"priorityClassName,omitempty" yaml:"priorityClassName,omitempty"` RestartPolicy string `json:"restartPolicy,omitempty" yaml:"restartPolicy,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` SchedulerName string `json:"schedulerName,omitempty" yaml:"schedulerName,omitempty"` Scheduling *Scheduling `json:"scheduling,omitempty" yaml:"scheduling,omitempty"` Selector *LabelSelector `json:"selector,omitempty" yaml:"selector,omitempty"` ServiceAccountName string `json:"serviceAccountName,omitempty" yaml:"serviceAccountName,omitempty"` + ShareProcessNamespace *bool `json:"shareProcessNamespace,omitempty" yaml:"shareProcessNamespace,omitempty"` Subdomain string `json:"subdomain,omitempty" yaml:"subdomain,omitempty"` TerminationGracePeriodSeconds *int64 `json:"terminationGracePeriodSeconds,omitempty" yaml:"terminationGracePeriodSeconds,omitempty"` Uid *int64 `json:"uid,omitempty" yaml:"uid,omitempty"` diff --git a/client/project/v3/zz_generated_csi_persistent_volume_source.go b/client/project/v3/zz_generated_csi_persistent_volume_source.go new file mode 100644 index 00000000..5ad80b6a --- /dev/null +++ b/client/project/v3/zz_generated_csi_persistent_volume_source.go @@ -0,0 +1,24 @@ +package client + +const ( + CSIPersistentVolumeSourceType = "csiPersistentVolumeSource" + CSIPersistentVolumeSourceFieldControllerPublishSecretRef = "controllerPublishSecretRef" + CSIPersistentVolumeSourceFieldDriver = "driver" + CSIPersistentVolumeSourceFieldFSType = "fsType" + CSIPersistentVolumeSourceFieldNodePublishSecretRef = "nodePublishSecretRef" + CSIPersistentVolumeSourceFieldNodeStageSecretRef = "nodeStageSecretRef" + CSIPersistentVolumeSourceFieldReadOnly = "readOnly" + CSIPersistentVolumeSourceFieldVolumeAttributes = "volumeAttributes" + CSIPersistentVolumeSourceFieldVolumeHandle = "volumeHandle" +) + +type CSIPersistentVolumeSource struct { + ControllerPublishSecretRef *SecretReference `json:"controllerPublishSecretRef,omitempty" yaml:"controllerPublishSecretRef,omitempty"` + Driver string `json:"driver,omitempty" yaml:"driver,omitempty"` + FSType string `json:"fsType,omitempty" yaml:"fsType,omitempty"` + NodePublishSecretRef *SecretReference `json:"nodePublishSecretRef,omitempty" yaml:"nodePublishSecretRef,omitempty"` + NodeStageSecretRef *SecretReference `json:"nodeStageSecretRef,omitempty" yaml:"nodeStageSecretRef,omitempty"` + ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"` + VolumeAttributes map[string]string `json:"volumeAttributes,omitempty" yaml:"volumeAttributes,omitempty"` + VolumeHandle string `json:"volumeHandle,omitempty" yaml:"volumeHandle,omitempty"` +} diff --git a/client/project/v3/zz_generated_daemon_set.go b/client/project/v3/zz_generated_daemon_set.go index 5745a8a0..d7c35c50 100644 --- a/client/project/v3/zz_generated_daemon_set.go +++ b/client/project/v3/zz_generated_daemon_set.go @@ -12,6 +12,7 @@ const ( DaemonSetFieldContainers = "containers" DaemonSetFieldCreated = "created" DaemonSetFieldCreatorID = "creatorId" + DaemonSetFieldDNSConfig = "dnsConfig" DaemonSetFieldDNSPolicy = "dnsPolicy" DaemonSetFieldDaemonSetConfig = "daemonSetConfig" DaemonSetFieldDaemonSetStatus = "daemonSetStatus" @@ -34,11 +35,13 @@ const ( DaemonSetFieldPublicEndpoints = "publicEndpoints" DaemonSetFieldRemoved = "removed" DaemonSetFieldRestartPolicy = "restartPolicy" + DaemonSetFieldRunAsGroup = "runAsGroup" DaemonSetFieldRunAsNonRoot = "runAsNonRoot" DaemonSetFieldSchedulerName = "schedulerName" DaemonSetFieldScheduling = "scheduling" DaemonSetFieldSelector = "selector" DaemonSetFieldServiceAccountName = "serviceAccountName" + DaemonSetFieldShareProcessNamespace = "shareProcessNamespace" DaemonSetFieldState = "state" DaemonSetFieldSubdomain = "subdomain" DaemonSetFieldTerminationGracePeriodSeconds = "terminationGracePeriodSeconds" @@ -59,6 +62,7 @@ type DaemonSet struct { Containers []Container `json:"containers,omitempty" yaml:"containers,omitempty"` Created string `json:"created,omitempty" yaml:"created,omitempty"` CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"` + DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty" yaml:"dnsConfig,omitempty"` DNSPolicy string `json:"dnsPolicy,omitempty" yaml:"dnsPolicy,omitempty"` DaemonSetConfig *DaemonSetConfig `json:"daemonSetConfig,omitempty" yaml:"daemonSetConfig,omitempty"` DaemonSetStatus *DaemonSetStatus `json:"daemonSetStatus,omitempty" yaml:"daemonSetStatus,omitempty"` @@ -81,11 +85,13 @@ type DaemonSet struct { PublicEndpoints []PublicEndpoint `json:"publicEndpoints,omitempty" yaml:"publicEndpoints,omitempty"` Removed string `json:"removed,omitempty" yaml:"removed,omitempty"` RestartPolicy string `json:"restartPolicy,omitempty" yaml:"restartPolicy,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` SchedulerName string `json:"schedulerName,omitempty" yaml:"schedulerName,omitempty"` Scheduling *Scheduling `json:"scheduling,omitempty" yaml:"scheduling,omitempty"` Selector *LabelSelector `json:"selector,omitempty" yaml:"selector,omitempty"` ServiceAccountName string `json:"serviceAccountName,omitempty" yaml:"serviceAccountName,omitempty"` + ShareProcessNamespace *bool `json:"shareProcessNamespace,omitempty" yaml:"shareProcessNamespace,omitempty"` State string `json:"state,omitempty" yaml:"state,omitempty"` Subdomain string `json:"subdomain,omitempty" yaml:"subdomain,omitempty"` TerminationGracePeriodSeconds *int64 `json:"terminationGracePeriodSeconds,omitempty" yaml:"terminationGracePeriodSeconds,omitempty"` diff --git a/client/project/v3/zz_generated_daemon_set_condition.go b/client/project/v3/zz_generated_daemon_set_condition.go new file mode 100644 index 00000000..39419034 --- /dev/null +++ b/client/project/v3/zz_generated_daemon_set_condition.go @@ -0,0 +1,18 @@ +package client + +const ( + DaemonSetConditionType = "daemonSetCondition" + DaemonSetConditionFieldLastTransitionTime = "lastTransitionTime" + DaemonSetConditionFieldMessage = "message" + DaemonSetConditionFieldReason = "reason" + DaemonSetConditionFieldStatus = "status" + DaemonSetConditionFieldType = "type" +) + +type DaemonSetCondition struct { + LastTransitionTime string `json:"lastTransitionTime,omitempty" yaml:"lastTransitionTime,omitempty"` + Message string `json:"message,omitempty" yaml:"message,omitempty"` + Reason string `json:"reason,omitempty" yaml:"reason,omitempty"` + Status string `json:"status,omitempty" yaml:"status,omitempty"` + Type string `json:"type,omitempty" yaml:"type,omitempty"` +} diff --git a/client/project/v3/zz_generated_daemon_set_spec.go b/client/project/v3/zz_generated_daemon_set_spec.go index 3fdd710d..582409e2 100644 --- a/client/project/v3/zz_generated_daemon_set_spec.go +++ b/client/project/v3/zz_generated_daemon_set_spec.go @@ -5,6 +5,7 @@ const ( DaemonSetSpecFieldActiveDeadlineSeconds = "activeDeadlineSeconds" DaemonSetSpecFieldAutomountServiceAccountToken = "automountServiceAccountToken" DaemonSetSpecFieldContainers = "containers" + DaemonSetSpecFieldDNSConfig = "dnsConfig" DaemonSetSpecFieldDNSPolicy = "dnsPolicy" DaemonSetSpecFieldDaemonSetConfig = "daemonSetConfig" DaemonSetSpecFieldFsgid = "fsgid" @@ -20,11 +21,13 @@ const ( DaemonSetSpecFieldPriority = "priority" DaemonSetSpecFieldPriorityClassName = "priorityClassName" DaemonSetSpecFieldRestartPolicy = "restartPolicy" + DaemonSetSpecFieldRunAsGroup = "runAsGroup" DaemonSetSpecFieldRunAsNonRoot = "runAsNonRoot" DaemonSetSpecFieldSchedulerName = "schedulerName" DaemonSetSpecFieldScheduling = "scheduling" DaemonSetSpecFieldSelector = "selector" DaemonSetSpecFieldServiceAccountName = "serviceAccountName" + DaemonSetSpecFieldShareProcessNamespace = "shareProcessNamespace" DaemonSetSpecFieldSubdomain = "subdomain" DaemonSetSpecFieldTerminationGracePeriodSeconds = "terminationGracePeriodSeconds" DaemonSetSpecFieldUid = "uid" @@ -35,6 +38,7 @@ type DaemonSetSpec struct { ActiveDeadlineSeconds *int64 `json:"activeDeadlineSeconds,omitempty" yaml:"activeDeadlineSeconds,omitempty"` AutomountServiceAccountToken *bool `json:"automountServiceAccountToken,omitempty" yaml:"automountServiceAccountToken,omitempty"` Containers []Container `json:"containers,omitempty" yaml:"containers,omitempty"` + DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty" yaml:"dnsConfig,omitempty"` DNSPolicy string `json:"dnsPolicy,omitempty" yaml:"dnsPolicy,omitempty"` DaemonSetConfig *DaemonSetConfig `json:"daemonSetConfig,omitempty" yaml:"daemonSetConfig,omitempty"` Fsgid *int64 `json:"fsgid,omitempty" yaml:"fsgid,omitempty"` @@ -50,11 +54,13 @@ type DaemonSetSpec struct { Priority *int64 `json:"priority,omitempty" yaml:"priority,omitempty"` PriorityClassName string `json:"priorityClassName,omitempty" yaml:"priorityClassName,omitempty"` RestartPolicy string `json:"restartPolicy,omitempty" yaml:"restartPolicy,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` SchedulerName string `json:"schedulerName,omitempty" yaml:"schedulerName,omitempty"` Scheduling *Scheduling `json:"scheduling,omitempty" yaml:"scheduling,omitempty"` Selector *LabelSelector `json:"selector,omitempty" yaml:"selector,omitempty"` ServiceAccountName string `json:"serviceAccountName,omitempty" yaml:"serviceAccountName,omitempty"` + ShareProcessNamespace *bool `json:"shareProcessNamespace,omitempty" yaml:"shareProcessNamespace,omitempty"` Subdomain string `json:"subdomain,omitempty" yaml:"subdomain,omitempty"` TerminationGracePeriodSeconds *int64 `json:"terminationGracePeriodSeconds,omitempty" yaml:"terminationGracePeriodSeconds,omitempty"` Uid *int64 `json:"uid,omitempty" yaml:"uid,omitempty"` diff --git a/client/project/v3/zz_generated_daemon_set_status.go b/client/project/v3/zz_generated_daemon_set_status.go index cc04c751..6777a41f 100644 --- a/client/project/v3/zz_generated_daemon_set_status.go +++ b/client/project/v3/zz_generated_daemon_set_status.go @@ -3,6 +3,7 @@ package client const ( DaemonSetStatusType = "daemonSetStatus" DaemonSetStatusFieldCollisionCount = "collisionCount" + DaemonSetStatusFieldConditions = "conditions" DaemonSetStatusFieldCurrentNumberScheduled = "currentNumberScheduled" DaemonSetStatusFieldDesiredNumberScheduled = "desiredNumberScheduled" DaemonSetStatusFieldNumberAvailable = "numberAvailable" @@ -14,13 +15,14 @@ const ( ) type DaemonSetStatus struct { - CollisionCount *int64 `json:"collisionCount,omitempty" yaml:"collisionCount,omitempty"` - CurrentNumberScheduled int64 `json:"currentNumberScheduled,omitempty" yaml:"currentNumberScheduled,omitempty"` - DesiredNumberScheduled int64 `json:"desiredNumberScheduled,omitempty" yaml:"desiredNumberScheduled,omitempty"` - NumberAvailable int64 `json:"numberAvailable,omitempty" yaml:"numberAvailable,omitempty"` - NumberMisscheduled int64 `json:"numberMisscheduled,omitempty" yaml:"numberMisscheduled,omitempty"` - NumberReady int64 `json:"numberReady,omitempty" yaml:"numberReady,omitempty"` - NumberUnavailable int64 `json:"numberUnavailable,omitempty" yaml:"numberUnavailable,omitempty"` - ObservedGeneration int64 `json:"observedGeneration,omitempty" yaml:"observedGeneration,omitempty"` - UpdatedNumberScheduled int64 `json:"updatedNumberScheduled,omitempty" yaml:"updatedNumberScheduled,omitempty"` + CollisionCount *int64 `json:"collisionCount,omitempty" yaml:"collisionCount,omitempty"` + Conditions []DaemonSetCondition `json:"conditions,omitempty" yaml:"conditions,omitempty"` + CurrentNumberScheduled int64 `json:"currentNumberScheduled,omitempty" yaml:"currentNumberScheduled,omitempty"` + DesiredNumberScheduled int64 `json:"desiredNumberScheduled,omitempty" yaml:"desiredNumberScheduled,omitempty"` + NumberAvailable int64 `json:"numberAvailable,omitempty" yaml:"numberAvailable,omitempty"` + NumberMisscheduled int64 `json:"numberMisscheduled,omitempty" yaml:"numberMisscheduled,omitempty"` + NumberReady int64 `json:"numberReady,omitempty" yaml:"numberReady,omitempty"` + NumberUnavailable int64 `json:"numberUnavailable,omitempty" yaml:"numberUnavailable,omitempty"` + ObservedGeneration int64 `json:"observedGeneration,omitempty" yaml:"observedGeneration,omitempty"` + UpdatedNumberScheduled int64 `json:"updatedNumberScheduled,omitempty" yaml:"updatedNumberScheduled,omitempty"` } diff --git a/client/project/v3/zz_generated_deployment.go b/client/project/v3/zz_generated_deployment.go index a23cbd6e..bf9bb7ea 100644 --- a/client/project/v3/zz_generated_deployment.go +++ b/client/project/v3/zz_generated_deployment.go @@ -12,6 +12,7 @@ const ( DeploymentFieldContainers = "containers" DeploymentFieldCreated = "created" DeploymentFieldCreatorID = "creatorId" + DeploymentFieldDNSConfig = "dnsConfig" DeploymentFieldDNSPolicy = "dnsPolicy" DeploymentFieldDeploymentConfig = "deploymentConfig" DeploymentFieldDeploymentStatus = "deploymentStatus" @@ -35,12 +36,14 @@ const ( DeploymentFieldPublicEndpoints = "publicEndpoints" DeploymentFieldRemoved = "removed" DeploymentFieldRestartPolicy = "restartPolicy" + DeploymentFieldRunAsGroup = "runAsGroup" DeploymentFieldRunAsNonRoot = "runAsNonRoot" DeploymentFieldScale = "scale" DeploymentFieldSchedulerName = "schedulerName" DeploymentFieldScheduling = "scheduling" DeploymentFieldSelector = "selector" DeploymentFieldServiceAccountName = "serviceAccountName" + DeploymentFieldShareProcessNamespace = "shareProcessNamespace" DeploymentFieldState = "state" DeploymentFieldSubdomain = "subdomain" DeploymentFieldTerminationGracePeriodSeconds = "terminationGracePeriodSeconds" @@ -61,6 +64,7 @@ type Deployment struct { Containers []Container `json:"containers,omitempty" yaml:"containers,omitempty"` Created string `json:"created,omitempty" yaml:"created,omitempty"` CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"` + DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty" yaml:"dnsConfig,omitempty"` DNSPolicy string `json:"dnsPolicy,omitempty" yaml:"dnsPolicy,omitempty"` DeploymentConfig *DeploymentConfig `json:"deploymentConfig,omitempty" yaml:"deploymentConfig,omitempty"` DeploymentStatus *DeploymentStatus `json:"deploymentStatus,omitempty" yaml:"deploymentStatus,omitempty"` @@ -84,12 +88,14 @@ type Deployment struct { PublicEndpoints []PublicEndpoint `json:"publicEndpoints,omitempty" yaml:"publicEndpoints,omitempty"` Removed string `json:"removed,omitempty" yaml:"removed,omitempty"` RestartPolicy string `json:"restartPolicy,omitempty" yaml:"restartPolicy,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` Scale *int64 `json:"scale,omitempty" yaml:"scale,omitempty"` SchedulerName string `json:"schedulerName,omitempty" yaml:"schedulerName,omitempty"` Scheduling *Scheduling `json:"scheduling,omitempty" yaml:"scheduling,omitempty"` Selector *LabelSelector `json:"selector,omitempty" yaml:"selector,omitempty"` ServiceAccountName string `json:"serviceAccountName,omitempty" yaml:"serviceAccountName,omitempty"` + ShareProcessNamespace *bool `json:"shareProcessNamespace,omitempty" yaml:"shareProcessNamespace,omitempty"` State string `json:"state,omitempty" yaml:"state,omitempty"` Subdomain string `json:"subdomain,omitempty" yaml:"subdomain,omitempty"` TerminationGracePeriodSeconds *int64 `json:"terminationGracePeriodSeconds,omitempty" yaml:"terminationGracePeriodSeconds,omitempty"` diff --git a/client/project/v3/zz_generated_deployment_spec.go b/client/project/v3/zz_generated_deployment_spec.go index bf5a92a5..ba0bdb8b 100644 --- a/client/project/v3/zz_generated_deployment_spec.go +++ b/client/project/v3/zz_generated_deployment_spec.go @@ -5,6 +5,7 @@ const ( DeploymentSpecFieldActiveDeadlineSeconds = "activeDeadlineSeconds" DeploymentSpecFieldAutomountServiceAccountToken = "automountServiceAccountToken" DeploymentSpecFieldContainers = "containers" + DeploymentSpecFieldDNSConfig = "dnsConfig" DeploymentSpecFieldDNSPolicy = "dnsPolicy" DeploymentSpecFieldDeploymentConfig = "deploymentConfig" DeploymentSpecFieldFsgid = "fsgid" @@ -21,12 +22,14 @@ const ( DeploymentSpecFieldPriority = "priority" DeploymentSpecFieldPriorityClassName = "priorityClassName" DeploymentSpecFieldRestartPolicy = "restartPolicy" + DeploymentSpecFieldRunAsGroup = "runAsGroup" DeploymentSpecFieldRunAsNonRoot = "runAsNonRoot" DeploymentSpecFieldScale = "scale" DeploymentSpecFieldSchedulerName = "schedulerName" DeploymentSpecFieldScheduling = "scheduling" DeploymentSpecFieldSelector = "selector" DeploymentSpecFieldServiceAccountName = "serviceAccountName" + DeploymentSpecFieldShareProcessNamespace = "shareProcessNamespace" DeploymentSpecFieldSubdomain = "subdomain" DeploymentSpecFieldTerminationGracePeriodSeconds = "terminationGracePeriodSeconds" DeploymentSpecFieldUid = "uid" @@ -37,6 +40,7 @@ type DeploymentSpec struct { ActiveDeadlineSeconds *int64 `json:"activeDeadlineSeconds,omitempty" yaml:"activeDeadlineSeconds,omitempty"` AutomountServiceAccountToken *bool `json:"automountServiceAccountToken,omitempty" yaml:"automountServiceAccountToken,omitempty"` Containers []Container `json:"containers,omitempty" yaml:"containers,omitempty"` + DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty" yaml:"dnsConfig,omitempty"` DNSPolicy string `json:"dnsPolicy,omitempty" yaml:"dnsPolicy,omitempty"` DeploymentConfig *DeploymentConfig `json:"deploymentConfig,omitempty" yaml:"deploymentConfig,omitempty"` Fsgid *int64 `json:"fsgid,omitempty" yaml:"fsgid,omitempty"` @@ -53,12 +57,14 @@ type DeploymentSpec struct { Priority *int64 `json:"priority,omitempty" yaml:"priority,omitempty"` PriorityClassName string `json:"priorityClassName,omitempty" yaml:"priorityClassName,omitempty"` RestartPolicy string `json:"restartPolicy,omitempty" yaml:"restartPolicy,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` Scale *int64 `json:"scale,omitempty" yaml:"scale,omitempty"` SchedulerName string `json:"schedulerName,omitempty" yaml:"schedulerName,omitempty"` Scheduling *Scheduling `json:"scheduling,omitempty" yaml:"scheduling,omitempty"` Selector *LabelSelector `json:"selector,omitempty" yaml:"selector,omitempty"` ServiceAccountName string `json:"serviceAccountName,omitempty" yaml:"serviceAccountName,omitempty"` + ShareProcessNamespace *bool `json:"shareProcessNamespace,omitempty" yaml:"shareProcessNamespace,omitempty"` Subdomain string `json:"subdomain,omitempty" yaml:"subdomain,omitempty"` TerminationGracePeriodSeconds *int64 `json:"terminationGracePeriodSeconds,omitempty" yaml:"terminationGracePeriodSeconds,omitempty"` Uid *int64 `json:"uid,omitempty" yaml:"uid,omitempty"` diff --git a/client/project/v3/zz_generated_flex_persistent_volume_source.go b/client/project/v3/zz_generated_flex_persistent_volume_source.go new file mode 100644 index 00000000..20de1fd7 --- /dev/null +++ b/client/project/v3/zz_generated_flex_persistent_volume_source.go @@ -0,0 +1,18 @@ +package client + +const ( + FlexPersistentVolumeSourceType = "flexPersistentVolumeSource" + FlexPersistentVolumeSourceFieldDriver = "driver" + FlexPersistentVolumeSourceFieldFSType = "fsType" + FlexPersistentVolumeSourceFieldOptions = "options" + FlexPersistentVolumeSourceFieldReadOnly = "readOnly" + FlexPersistentVolumeSourceFieldSecretRef = "secretRef" +) + +type FlexPersistentVolumeSource struct { + Driver string `json:"driver,omitempty" yaml:"driver,omitempty"` + FSType string `json:"fsType,omitempty" yaml:"fsType,omitempty"` + Options map[string]string `json:"options,omitempty" yaml:"options,omitempty"` + ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"` + SecretRef *SecretReference `json:"secretRef,omitempty" yaml:"secretRef,omitempty"` +} diff --git a/client/project/v3/zz_generated_iscsi_persistent_volume_source.go b/client/project/v3/zz_generated_iscsi_persistent_volume_source.go new file mode 100644 index 00000000..ba659f30 --- /dev/null +++ b/client/project/v3/zz_generated_iscsi_persistent_volume_source.go @@ -0,0 +1,30 @@ +package client + +const ( + ISCSIPersistentVolumeSourceType = "iscsiPersistentVolumeSource" + ISCSIPersistentVolumeSourceFieldDiscoveryCHAPAuth = "chapAuthDiscovery" + ISCSIPersistentVolumeSourceFieldFSType = "fsType" + ISCSIPersistentVolumeSourceFieldIQN = "iqn" + ISCSIPersistentVolumeSourceFieldISCSIInterface = "iscsiInterface" + ISCSIPersistentVolumeSourceFieldInitiatorName = "initiatorName" + ISCSIPersistentVolumeSourceFieldLun = "lun" + ISCSIPersistentVolumeSourceFieldPortals = "portals" + ISCSIPersistentVolumeSourceFieldReadOnly = "readOnly" + ISCSIPersistentVolumeSourceFieldSecretRef = "secretRef" + ISCSIPersistentVolumeSourceFieldSessionCHAPAuth = "chapAuthSession" + ISCSIPersistentVolumeSourceFieldTargetPortal = "targetPortal" +) + +type ISCSIPersistentVolumeSource struct { + DiscoveryCHAPAuth bool `json:"chapAuthDiscovery,omitempty" yaml:"chapAuthDiscovery,omitempty"` + FSType string `json:"fsType,omitempty" yaml:"fsType,omitempty"` + IQN string `json:"iqn,omitempty" yaml:"iqn,omitempty"` + ISCSIInterface string `json:"iscsiInterface,omitempty" yaml:"iscsiInterface,omitempty"` + InitiatorName string `json:"initiatorName,omitempty" yaml:"initiatorName,omitempty"` + Lun int64 `json:"lun,omitempty" yaml:"lun,omitempty"` + Portals []string `json:"portals,omitempty" yaml:"portals,omitempty"` + ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"` + SecretRef *SecretReference `json:"secretRef,omitempty" yaml:"secretRef,omitempty"` + SessionCHAPAuth bool `json:"chapAuthSession,omitempty" yaml:"chapAuthSession,omitempty"` + TargetPortal string `json:"targetPortal,omitempty" yaml:"targetPortal,omitempty"` +} diff --git a/client/project/v3/zz_generated_job.go b/client/project/v3/zz_generated_job.go index 168eacf0..86a8b8d1 100644 --- a/client/project/v3/zz_generated_job.go +++ b/client/project/v3/zz_generated_job.go @@ -12,6 +12,7 @@ const ( JobFieldContainers = "containers" JobFieldCreated = "created" JobFieldCreatorID = "creatorId" + JobFieldDNSConfig = "dnsConfig" JobFieldDNSPolicy = "dnsPolicy" JobFieldFsgid = "fsgid" JobFieldGids = "gids" @@ -34,11 +35,13 @@ const ( JobFieldPublicEndpoints = "publicEndpoints" JobFieldRemoved = "removed" JobFieldRestartPolicy = "restartPolicy" + JobFieldRunAsGroup = "runAsGroup" JobFieldRunAsNonRoot = "runAsNonRoot" JobFieldSchedulerName = "schedulerName" JobFieldScheduling = "scheduling" JobFieldSelector = "selector" JobFieldServiceAccountName = "serviceAccountName" + JobFieldShareProcessNamespace = "shareProcessNamespace" JobFieldState = "state" JobFieldSubdomain = "subdomain" JobFieldTerminationGracePeriodSeconds = "terminationGracePeriodSeconds" @@ -59,6 +62,7 @@ type Job struct { Containers []Container `json:"containers,omitempty" yaml:"containers,omitempty"` Created string `json:"created,omitempty" yaml:"created,omitempty"` CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"` + DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty" yaml:"dnsConfig,omitempty"` DNSPolicy string `json:"dnsPolicy,omitempty" yaml:"dnsPolicy,omitempty"` Fsgid *int64 `json:"fsgid,omitempty" yaml:"fsgid,omitempty"` Gids []int64 `json:"gids,omitempty" yaml:"gids,omitempty"` @@ -81,11 +85,13 @@ type Job struct { PublicEndpoints []PublicEndpoint `json:"publicEndpoints,omitempty" yaml:"publicEndpoints,omitempty"` Removed string `json:"removed,omitempty" yaml:"removed,omitempty"` RestartPolicy string `json:"restartPolicy,omitempty" yaml:"restartPolicy,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` SchedulerName string `json:"schedulerName,omitempty" yaml:"schedulerName,omitempty"` Scheduling *Scheduling `json:"scheduling,omitempty" yaml:"scheduling,omitempty"` Selector *LabelSelector `json:"selector,omitempty" yaml:"selector,omitempty"` ServiceAccountName string `json:"serviceAccountName,omitempty" yaml:"serviceAccountName,omitempty"` + ShareProcessNamespace *bool `json:"shareProcessNamespace,omitempty" yaml:"shareProcessNamespace,omitempty"` State string `json:"state,omitempty" yaml:"state,omitempty"` Subdomain string `json:"subdomain,omitempty" yaml:"subdomain,omitempty"` TerminationGracePeriodSeconds *int64 `json:"terminationGracePeriodSeconds,omitempty" yaml:"terminationGracePeriodSeconds,omitempty"` diff --git a/client/project/v3/zz_generated_job_spec.go b/client/project/v3/zz_generated_job_spec.go index 91c0a370..2e49b3ef 100644 --- a/client/project/v3/zz_generated_job_spec.go +++ b/client/project/v3/zz_generated_job_spec.go @@ -5,6 +5,7 @@ const ( JobSpecFieldActiveDeadlineSeconds = "activeDeadlineSeconds" JobSpecFieldAutomountServiceAccountToken = "automountServiceAccountToken" JobSpecFieldContainers = "containers" + JobSpecFieldDNSConfig = "dnsConfig" JobSpecFieldDNSPolicy = "dnsPolicy" JobSpecFieldFsgid = "fsgid" JobSpecFieldGids = "gids" @@ -20,11 +21,13 @@ const ( JobSpecFieldPriority = "priority" JobSpecFieldPriorityClassName = "priorityClassName" JobSpecFieldRestartPolicy = "restartPolicy" + JobSpecFieldRunAsGroup = "runAsGroup" JobSpecFieldRunAsNonRoot = "runAsNonRoot" JobSpecFieldSchedulerName = "schedulerName" JobSpecFieldScheduling = "scheduling" JobSpecFieldSelector = "selector" JobSpecFieldServiceAccountName = "serviceAccountName" + JobSpecFieldShareProcessNamespace = "shareProcessNamespace" JobSpecFieldSubdomain = "subdomain" JobSpecFieldTerminationGracePeriodSeconds = "terminationGracePeriodSeconds" JobSpecFieldUid = "uid" @@ -35,6 +38,7 @@ type JobSpec struct { ActiveDeadlineSeconds *int64 `json:"activeDeadlineSeconds,omitempty" yaml:"activeDeadlineSeconds,omitempty"` AutomountServiceAccountToken *bool `json:"automountServiceAccountToken,omitempty" yaml:"automountServiceAccountToken,omitempty"` Containers []Container `json:"containers,omitempty" yaml:"containers,omitempty"` + DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty" yaml:"dnsConfig,omitempty"` DNSPolicy string `json:"dnsPolicy,omitempty" yaml:"dnsPolicy,omitempty"` Fsgid *int64 `json:"fsgid,omitempty" yaml:"fsgid,omitempty"` Gids []int64 `json:"gids,omitempty" yaml:"gids,omitempty"` @@ -50,11 +54,13 @@ type JobSpec struct { Priority *int64 `json:"priority,omitempty" yaml:"priority,omitempty"` PriorityClassName string `json:"priorityClassName,omitempty" yaml:"priorityClassName,omitempty"` RestartPolicy string `json:"restartPolicy,omitempty" yaml:"restartPolicy,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` SchedulerName string `json:"schedulerName,omitempty" yaml:"schedulerName,omitempty"` Scheduling *Scheduling `json:"scheduling,omitempty" yaml:"scheduling,omitempty"` Selector *LabelSelector `json:"selector,omitempty" yaml:"selector,omitempty"` ServiceAccountName string `json:"serviceAccountName,omitempty" yaml:"serviceAccountName,omitempty"` + ShareProcessNamespace *bool `json:"shareProcessNamespace,omitempty" yaml:"shareProcessNamespace,omitempty"` Subdomain string `json:"subdomain,omitempty" yaml:"subdomain,omitempty"` TerminationGracePeriodSeconds *int64 `json:"terminationGracePeriodSeconds,omitempty" yaml:"terminationGracePeriodSeconds,omitempty"` Uid *int64 `json:"uid,omitempty" yaml:"uid,omitempty"` diff --git a/client/project/v3/zz_generated_job_template_spec.go b/client/project/v3/zz_generated_job_template_spec.go index b9eb1be1..17855414 100644 --- a/client/project/v3/zz_generated_job_template_spec.go +++ b/client/project/v3/zz_generated_job_template_spec.go @@ -5,6 +5,7 @@ const ( JobTemplateSpecFieldActiveDeadlineSeconds = "activeDeadlineSeconds" JobTemplateSpecFieldAutomountServiceAccountToken = "automountServiceAccountToken" JobTemplateSpecFieldContainers = "containers" + JobTemplateSpecFieldDNSConfig = "dnsConfig" JobTemplateSpecFieldDNSPolicy = "dnsPolicy" JobTemplateSpecFieldFsgid = "fsgid" JobTemplateSpecFieldGids = "gids" @@ -21,11 +22,13 @@ const ( JobTemplateSpecFieldPriority = "priority" JobTemplateSpecFieldPriorityClassName = "priorityClassName" JobTemplateSpecFieldRestartPolicy = "restartPolicy" + JobTemplateSpecFieldRunAsGroup = "runAsGroup" JobTemplateSpecFieldRunAsNonRoot = "runAsNonRoot" JobTemplateSpecFieldSchedulerName = "schedulerName" JobTemplateSpecFieldScheduling = "scheduling" JobTemplateSpecFieldSelector = "selector" JobTemplateSpecFieldServiceAccountName = "serviceAccountName" + JobTemplateSpecFieldShareProcessNamespace = "shareProcessNamespace" JobTemplateSpecFieldSubdomain = "subdomain" JobTemplateSpecFieldTerminationGracePeriodSeconds = "terminationGracePeriodSeconds" JobTemplateSpecFieldUid = "uid" @@ -36,6 +39,7 @@ type JobTemplateSpec struct { ActiveDeadlineSeconds *int64 `json:"activeDeadlineSeconds,omitempty" yaml:"activeDeadlineSeconds,omitempty"` AutomountServiceAccountToken *bool `json:"automountServiceAccountToken,omitempty" yaml:"automountServiceAccountToken,omitempty"` Containers []Container `json:"containers,omitempty" yaml:"containers,omitempty"` + DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty" yaml:"dnsConfig,omitempty"` DNSPolicy string `json:"dnsPolicy,omitempty" yaml:"dnsPolicy,omitempty"` Fsgid *int64 `json:"fsgid,omitempty" yaml:"fsgid,omitempty"` Gids []int64 `json:"gids,omitempty" yaml:"gids,omitempty"` @@ -52,11 +56,13 @@ type JobTemplateSpec struct { Priority *int64 `json:"priority,omitempty" yaml:"priority,omitempty"` PriorityClassName string `json:"priorityClassName,omitempty" yaml:"priorityClassName,omitempty"` RestartPolicy string `json:"restartPolicy,omitempty" yaml:"restartPolicy,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` SchedulerName string `json:"schedulerName,omitempty" yaml:"schedulerName,omitempty"` Scheduling *Scheduling `json:"scheduling,omitempty" yaml:"scheduling,omitempty"` Selector *LabelSelector `json:"selector,omitempty" yaml:"selector,omitempty"` ServiceAccountName string `json:"serviceAccountName,omitempty" yaml:"serviceAccountName,omitempty"` + ShareProcessNamespace *bool `json:"shareProcessNamespace,omitempty" yaml:"shareProcessNamespace,omitempty"` Subdomain string `json:"subdomain,omitempty" yaml:"subdomain,omitempty"` TerminationGracePeriodSeconds *int64 `json:"terminationGracePeriodSeconds,omitempty" yaml:"terminationGracePeriodSeconds,omitempty"` Uid *int64 `json:"uid,omitempty" yaml:"uid,omitempty"` diff --git a/client/project/v3/zz_generated_persistent_volume_claim.go b/client/project/v3/zz_generated_persistent_volume_claim.go index 42268ce6..619c2f2c 100644 --- a/client/project/v3/zz_generated_persistent_volume_claim.go +++ b/client/project/v3/zz_generated_persistent_volume_claim.go @@ -25,6 +25,7 @@ const ( PersistentVolumeClaimFieldTransitioningMessage = "transitioningMessage" PersistentVolumeClaimFieldUuid = "uuid" PersistentVolumeClaimFieldVolumeId = "volumeId" + PersistentVolumeClaimFieldVolumeMode = "volumeMode" ) type PersistentVolumeClaim struct { @@ -48,6 +49,7 @@ type PersistentVolumeClaim struct { TransitioningMessage string `json:"transitioningMessage,omitempty" yaml:"transitioningMessage,omitempty"` Uuid string `json:"uuid,omitempty" yaml:"uuid,omitempty"` VolumeId string `json:"volumeId,omitempty" yaml:"volumeId,omitempty"` + VolumeMode string `json:"volumeMode,omitempty" yaml:"volumeMode,omitempty"` } type PersistentVolumeClaimCollection struct { types.Collection diff --git a/client/project/v3/zz_generated_persistent_volume_claim_spec.go b/client/project/v3/zz_generated_persistent_volume_claim_spec.go index 420ec163..59f6d4d2 100644 --- a/client/project/v3/zz_generated_persistent_volume_claim_spec.go +++ b/client/project/v3/zz_generated_persistent_volume_claim_spec.go @@ -7,6 +7,7 @@ const ( PersistentVolumeClaimSpecFieldSelector = "selector" PersistentVolumeClaimSpecFieldStorageClassId = "storageClassId" PersistentVolumeClaimSpecFieldVolumeId = "volumeId" + PersistentVolumeClaimSpecFieldVolumeMode = "volumeMode" ) type PersistentVolumeClaimSpec struct { @@ -15,4 +16,5 @@ type PersistentVolumeClaimSpec struct { Selector *LabelSelector `json:"selector,omitempty" yaml:"selector,omitempty"` StorageClassId string `json:"storageClassId,omitempty" yaml:"storageClassId,omitempty"` VolumeId string `json:"volumeId,omitempty" yaml:"volumeId,omitempty"` + VolumeMode string `json:"volumeMode,omitempty" yaml:"volumeMode,omitempty"` } diff --git a/client/project/v3/zz_generated_persistent_volume_spec.go b/client/project/v3/zz_generated_persistent_volume_spec.go index 1b5ded6d..00fd02b4 100644 --- a/client/project/v3/zz_generated_persistent_volume_spec.go +++ b/client/project/v3/zz_generated_persistent_volume_spec.go @@ -6,6 +6,7 @@ const ( PersistentVolumeSpecFieldAccessModes = "accessModes" PersistentVolumeSpecFieldAzureDisk = "azureDisk" PersistentVolumeSpecFieldAzureFile = "azureFile" + PersistentVolumeSpecFieldCSI = "csi" PersistentVolumeSpecFieldCapacity = "capacity" PersistentVolumeSpecFieldCephFS = "cephfs" PersistentVolumeSpecFieldCinder = "cinder" @@ -20,6 +21,7 @@ const ( PersistentVolumeSpecFieldLocal = "local" PersistentVolumeSpecFieldMountOptions = "mountOptions" PersistentVolumeSpecFieldNFS = "nfs" + PersistentVolumeSpecFieldNodeAffinity = "nodeAffinity" PersistentVolumeSpecFieldPersistentVolumeReclaimPolicy = "persistentVolumeReclaimPolicy" PersistentVolumeSpecFieldPhotonPersistentDisk = "photonPersistentDisk" PersistentVolumeSpecFieldPortworxVolume = "portworxVolume" @@ -28,6 +30,7 @@ const ( PersistentVolumeSpecFieldScaleIO = "scaleIO" PersistentVolumeSpecFieldStorageClassId = "storageClassId" PersistentVolumeSpecFieldStorageOS = "storageos" + PersistentVolumeSpecFieldVolumeMode = "volumeMode" PersistentVolumeSpecFieldVsphereVolume = "vsphereVolume" ) @@ -36,27 +39,30 @@ type PersistentVolumeSpec struct { AccessModes []string `json:"accessModes,omitempty" yaml:"accessModes,omitempty"` AzureDisk *AzureDiskVolumeSource `json:"azureDisk,omitempty" yaml:"azureDisk,omitempty"` AzureFile *AzureFilePersistentVolumeSource `json:"azureFile,omitempty" yaml:"azureFile,omitempty"` + CSI *CSIPersistentVolumeSource `json:"csi,omitempty" yaml:"csi,omitempty"` Capacity map[string]string `json:"capacity,omitempty" yaml:"capacity,omitempty"` CephFS *CephFSPersistentVolumeSource `json:"cephfs,omitempty" yaml:"cephfs,omitempty"` Cinder *CinderVolumeSource `json:"cinder,omitempty" yaml:"cinder,omitempty"` ClaimRef *ObjectReference `json:"claimRef,omitempty" yaml:"claimRef,omitempty"` FC *FCVolumeSource `json:"fc,omitempty" yaml:"fc,omitempty"` - FlexVolume *FlexVolumeSource `json:"flexVolume,omitempty" yaml:"flexVolume,omitempty"` + FlexVolume *FlexPersistentVolumeSource `json:"flexVolume,omitempty" yaml:"flexVolume,omitempty"` Flocker *FlockerVolumeSource `json:"flocker,omitempty" yaml:"flocker,omitempty"` GCEPersistentDisk *GCEPersistentDiskVolumeSource `json:"gcePersistentDisk,omitempty" yaml:"gcePersistentDisk,omitempty"` Glusterfs *GlusterfsVolumeSource `json:"glusterfs,omitempty" yaml:"glusterfs,omitempty"` HostPath *HostPathVolumeSource `json:"hostPath,omitempty" yaml:"hostPath,omitempty"` - ISCSI *ISCSIVolumeSource `json:"iscsi,omitempty" yaml:"iscsi,omitempty"` + ISCSI *ISCSIPersistentVolumeSource `json:"iscsi,omitempty" yaml:"iscsi,omitempty"` Local *LocalVolumeSource `json:"local,omitempty" yaml:"local,omitempty"` MountOptions []string `json:"mountOptions,omitempty" yaml:"mountOptions,omitempty"` NFS *NFSVolumeSource `json:"nfs,omitempty" yaml:"nfs,omitempty"` + NodeAffinity *VolumeNodeAffinity `json:"nodeAffinity,omitempty" yaml:"nodeAffinity,omitempty"` PersistentVolumeReclaimPolicy string `json:"persistentVolumeReclaimPolicy,omitempty" yaml:"persistentVolumeReclaimPolicy,omitempty"` PhotonPersistentDisk *PhotonPersistentDiskVolumeSource `json:"photonPersistentDisk,omitempty" yaml:"photonPersistentDisk,omitempty"` PortworxVolume *PortworxVolumeSource `json:"portworxVolume,omitempty" yaml:"portworxVolume,omitempty"` Quobyte *QuobyteVolumeSource `json:"quobyte,omitempty" yaml:"quobyte,omitempty"` - RBD *RBDVolumeSource `json:"rbd,omitempty" yaml:"rbd,omitempty"` - ScaleIO *ScaleIOVolumeSource `json:"scaleIO,omitempty" yaml:"scaleIO,omitempty"` + RBD *RBDPersistentVolumeSource `json:"rbd,omitempty" yaml:"rbd,omitempty"` + ScaleIO *ScaleIOPersistentVolumeSource `json:"scaleIO,omitempty" yaml:"scaleIO,omitempty"` StorageClassId string `json:"storageClassId,omitempty" yaml:"storageClassId,omitempty"` StorageOS *StorageOSPersistentVolumeSource `json:"storageos,omitempty" yaml:"storageos,omitempty"` + VolumeMode string `json:"volumeMode,omitempty" yaml:"volumeMode,omitempty"` VsphereVolume *VsphereVirtualDiskVolumeSource `json:"vsphereVolume,omitempty" yaml:"vsphereVolume,omitempty"` } diff --git a/client/project/v3/zz_generated_pod.go b/client/project/v3/zz_generated_pod.go index 74032c72..8dd743ec 100644 --- a/client/project/v3/zz_generated_pod.go +++ b/client/project/v3/zz_generated_pod.go @@ -12,6 +12,7 @@ const ( PodFieldContainers = "containers" PodFieldCreated = "created" PodFieldCreatorID = "creatorId" + PodFieldDNSConfig = "dnsConfig" PodFieldDNSPolicy = "dnsPolicy" PodFieldDescription = "description" PodFieldFsgid = "fsgid" @@ -33,10 +34,12 @@ const ( PodFieldPublicEndpoints = "publicEndpoints" PodFieldRemoved = "removed" PodFieldRestartPolicy = "restartPolicy" + PodFieldRunAsGroup = "runAsGroup" PodFieldRunAsNonRoot = "runAsNonRoot" PodFieldSchedulerName = "schedulerName" PodFieldScheduling = "scheduling" PodFieldServiceAccountName = "serviceAccountName" + PodFieldShareProcessNamespace = "shareProcessNamespace" PodFieldState = "state" PodFieldStatus = "status" PodFieldSubdomain = "subdomain" @@ -57,6 +60,7 @@ type Pod struct { Containers []Container `json:"containers,omitempty" yaml:"containers,omitempty"` Created string `json:"created,omitempty" yaml:"created,omitempty"` CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"` + DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty" yaml:"dnsConfig,omitempty"` DNSPolicy string `json:"dnsPolicy,omitempty" yaml:"dnsPolicy,omitempty"` Description string `json:"description,omitempty" yaml:"description,omitempty"` Fsgid *int64 `json:"fsgid,omitempty" yaml:"fsgid,omitempty"` @@ -78,10 +82,12 @@ type Pod struct { PublicEndpoints []PublicEndpoint `json:"publicEndpoints,omitempty" yaml:"publicEndpoints,omitempty"` Removed string `json:"removed,omitempty" yaml:"removed,omitempty"` RestartPolicy string `json:"restartPolicy,omitempty" yaml:"restartPolicy,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` SchedulerName string `json:"schedulerName,omitempty" yaml:"schedulerName,omitempty"` Scheduling *Scheduling `json:"scheduling,omitempty" yaml:"scheduling,omitempty"` ServiceAccountName string `json:"serviceAccountName,omitempty" yaml:"serviceAccountName,omitempty"` + ShareProcessNamespace *bool `json:"shareProcessNamespace,omitempty" yaml:"shareProcessNamespace,omitempty"` State string `json:"state,omitempty" yaml:"state,omitempty"` Status *PodStatus `json:"status,omitempty" yaml:"status,omitempty"` Subdomain string `json:"subdomain,omitempty" yaml:"subdomain,omitempty"` diff --git a/client/project/v3/zz_generated_pod_dnsconfig.go b/client/project/v3/zz_generated_pod_dnsconfig.go new file mode 100644 index 00000000..e61ebd7d --- /dev/null +++ b/client/project/v3/zz_generated_pod_dnsconfig.go @@ -0,0 +1,14 @@ +package client + +const ( + PodDNSConfigType = "podDNSConfig" + PodDNSConfigFieldNameservers = "nameservers" + PodDNSConfigFieldOptions = "options" + PodDNSConfigFieldSearches = "searches" +) + +type PodDNSConfig struct { + Nameservers []string `json:"nameservers,omitempty" yaml:"nameservers,omitempty"` + Options []PodDNSConfigOption `json:"options,omitempty" yaml:"options,omitempty"` + Searches []string `json:"searches,omitempty" yaml:"searches,omitempty"` +} diff --git a/client/project/v3/zz_generated_pod_dnsconfig_option.go b/client/project/v3/zz_generated_pod_dnsconfig_option.go new file mode 100644 index 00000000..7afd4e12 --- /dev/null +++ b/client/project/v3/zz_generated_pod_dnsconfig_option.go @@ -0,0 +1,12 @@ +package client + +const ( + PodDNSConfigOptionType = "podDNSConfigOption" + PodDNSConfigOptionFieldName = "name" + PodDNSConfigOptionFieldValue = "value" +) + +type PodDNSConfigOption struct { + Name string `json:"name,omitempty" yaml:"name,omitempty"` + Value string `json:"value,omitempty" yaml:"value,omitempty"` +} diff --git a/client/project/v3/zz_generated_pod_security_context.go b/client/project/v3/zz_generated_pod_security_context.go index ab8d8789..b49f9d6d 100644 --- a/client/project/v3/zz_generated_pod_security_context.go +++ b/client/project/v3/zz_generated_pod_security_context.go @@ -4,6 +4,7 @@ const ( PodSecurityContextType = "podSecurityContext" PodSecurityContextFieldFsgid = "fsgid" PodSecurityContextFieldGids = "gids" + PodSecurityContextFieldRunAsGroup = "runAsGroup" PodSecurityContextFieldRunAsNonRoot = "runAsNonRoot" PodSecurityContextFieldUid = "uid" ) @@ -11,6 +12,7 @@ const ( type PodSecurityContext struct { Fsgid *int64 `json:"fsgid,omitempty" yaml:"fsgid,omitempty"` Gids []int64 `json:"gids,omitempty" yaml:"gids,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` Uid *int64 `json:"uid,omitempty" yaml:"uid,omitempty"` } diff --git a/client/project/v3/zz_generated_pod_spec.go b/client/project/v3/zz_generated_pod_spec.go index 7e946f98..705ef249 100644 --- a/client/project/v3/zz_generated_pod_spec.go +++ b/client/project/v3/zz_generated_pod_spec.go @@ -5,6 +5,7 @@ const ( PodSpecFieldActiveDeadlineSeconds = "activeDeadlineSeconds" PodSpecFieldAutomountServiceAccountToken = "automountServiceAccountToken" PodSpecFieldContainers = "containers" + PodSpecFieldDNSConfig = "dnsConfig" PodSpecFieldDNSPolicy = "dnsPolicy" PodSpecFieldFsgid = "fsgid" PodSpecFieldGids = "gids" @@ -18,10 +19,12 @@ const ( PodSpecFieldPriority = "priority" PodSpecFieldPriorityClassName = "priorityClassName" PodSpecFieldRestartPolicy = "restartPolicy" + PodSpecFieldRunAsGroup = "runAsGroup" PodSpecFieldRunAsNonRoot = "runAsNonRoot" PodSpecFieldSchedulerName = "schedulerName" PodSpecFieldScheduling = "scheduling" PodSpecFieldServiceAccountName = "serviceAccountName" + PodSpecFieldShareProcessNamespace = "shareProcessNamespace" PodSpecFieldSubdomain = "subdomain" PodSpecFieldTerminationGracePeriodSeconds = "terminationGracePeriodSeconds" PodSpecFieldUid = "uid" @@ -32,6 +35,7 @@ type PodSpec struct { ActiveDeadlineSeconds *int64 `json:"activeDeadlineSeconds,omitempty" yaml:"activeDeadlineSeconds,omitempty"` AutomountServiceAccountToken *bool `json:"automountServiceAccountToken,omitempty" yaml:"automountServiceAccountToken,omitempty"` Containers []Container `json:"containers,omitempty" yaml:"containers,omitempty"` + DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty" yaml:"dnsConfig,omitempty"` DNSPolicy string `json:"dnsPolicy,omitempty" yaml:"dnsPolicy,omitempty"` Fsgid *int64 `json:"fsgid,omitempty" yaml:"fsgid,omitempty"` Gids []int64 `json:"gids,omitempty" yaml:"gids,omitempty"` @@ -45,10 +49,12 @@ type PodSpec struct { Priority *int64 `json:"priority,omitempty" yaml:"priority,omitempty"` PriorityClassName string `json:"priorityClassName,omitempty" yaml:"priorityClassName,omitempty"` RestartPolicy string `json:"restartPolicy,omitempty" yaml:"restartPolicy,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` SchedulerName string `json:"schedulerName,omitempty" yaml:"schedulerName,omitempty"` Scheduling *Scheduling `json:"scheduling,omitempty" yaml:"scheduling,omitempty"` ServiceAccountName string `json:"serviceAccountName,omitempty" yaml:"serviceAccountName,omitempty"` + ShareProcessNamespace *bool `json:"shareProcessNamespace,omitempty" yaml:"shareProcessNamespace,omitempty"` Subdomain string `json:"subdomain,omitempty" yaml:"subdomain,omitempty"` TerminationGracePeriodSeconds *int64 `json:"terminationGracePeriodSeconds,omitempty" yaml:"terminationGracePeriodSeconds,omitempty"` Uid *int64 `json:"uid,omitempty" yaml:"uid,omitempty"` diff --git a/client/project/v3/zz_generated_pod_status.go b/client/project/v3/zz_generated_pod_status.go index 39f297ad..2275228e 100644 --- a/client/project/v3/zz_generated_pod_status.go +++ b/client/project/v3/zz_generated_pod_status.go @@ -7,6 +7,7 @@ const ( PodStatusFieldInitContainerStatuses = "initContainerStatuses" PodStatusFieldMessage = "message" PodStatusFieldNodeIp = "nodeIp" + PodStatusFieldNominatedNodeName = "nominatedNodeName" PodStatusFieldPhase = "phase" PodStatusFieldPodIp = "podIp" PodStatusFieldQOSClass = "qosClass" @@ -20,6 +21,7 @@ type PodStatus struct { InitContainerStatuses []ContainerStatus `json:"initContainerStatuses,omitempty" yaml:"initContainerStatuses,omitempty"` Message string `json:"message,omitempty" yaml:"message,omitempty"` NodeIp string `json:"nodeIp,omitempty" yaml:"nodeIp,omitempty"` + NominatedNodeName string `json:"nominatedNodeName,omitempty" yaml:"nominatedNodeName,omitempty"` Phase string `json:"phase,omitempty" yaml:"phase,omitempty"` PodIp string `json:"podIp,omitempty" yaml:"podIp,omitempty"` QOSClass string `json:"qosClass,omitempty" yaml:"qosClass,omitempty"` diff --git a/client/project/v3/zz_generated_pod_template_spec.go b/client/project/v3/zz_generated_pod_template_spec.go index 46184823..086405ea 100644 --- a/client/project/v3/zz_generated_pod_template_spec.go +++ b/client/project/v3/zz_generated_pod_template_spec.go @@ -5,6 +5,7 @@ const ( PodTemplateSpecFieldActiveDeadlineSeconds = "activeDeadlineSeconds" PodTemplateSpecFieldAutomountServiceAccountToken = "automountServiceAccountToken" PodTemplateSpecFieldContainers = "containers" + PodTemplateSpecFieldDNSConfig = "dnsConfig" PodTemplateSpecFieldDNSPolicy = "dnsPolicy" PodTemplateSpecFieldFsgid = "fsgid" PodTemplateSpecFieldGids = "gids" @@ -19,10 +20,12 @@ const ( PodTemplateSpecFieldPriority = "priority" PodTemplateSpecFieldPriorityClassName = "priorityClassName" PodTemplateSpecFieldRestartPolicy = "restartPolicy" + PodTemplateSpecFieldRunAsGroup = "runAsGroup" PodTemplateSpecFieldRunAsNonRoot = "runAsNonRoot" PodTemplateSpecFieldSchedulerName = "schedulerName" PodTemplateSpecFieldScheduling = "scheduling" PodTemplateSpecFieldServiceAccountName = "serviceAccountName" + PodTemplateSpecFieldShareProcessNamespace = "shareProcessNamespace" PodTemplateSpecFieldSubdomain = "subdomain" PodTemplateSpecFieldTerminationGracePeriodSeconds = "terminationGracePeriodSeconds" PodTemplateSpecFieldUid = "uid" @@ -33,6 +36,7 @@ type PodTemplateSpec struct { ActiveDeadlineSeconds *int64 `json:"activeDeadlineSeconds,omitempty" yaml:"activeDeadlineSeconds,omitempty"` AutomountServiceAccountToken *bool `json:"automountServiceAccountToken,omitempty" yaml:"automountServiceAccountToken,omitempty"` Containers []Container `json:"containers,omitempty" yaml:"containers,omitempty"` + DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty" yaml:"dnsConfig,omitempty"` DNSPolicy string `json:"dnsPolicy,omitempty" yaml:"dnsPolicy,omitempty"` Fsgid *int64 `json:"fsgid,omitempty" yaml:"fsgid,omitempty"` Gids []int64 `json:"gids,omitempty" yaml:"gids,omitempty"` @@ -47,10 +51,12 @@ type PodTemplateSpec struct { Priority *int64 `json:"priority,omitempty" yaml:"priority,omitempty"` PriorityClassName string `json:"priorityClassName,omitempty" yaml:"priorityClassName,omitempty"` RestartPolicy string `json:"restartPolicy,omitempty" yaml:"restartPolicy,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` SchedulerName string `json:"schedulerName,omitempty" yaml:"schedulerName,omitempty"` Scheduling *Scheduling `json:"scheduling,omitempty" yaml:"scheduling,omitempty"` ServiceAccountName string `json:"serviceAccountName,omitempty" yaml:"serviceAccountName,omitempty"` + ShareProcessNamespace *bool `json:"shareProcessNamespace,omitempty" yaml:"shareProcessNamespace,omitempty"` Subdomain string `json:"subdomain,omitempty" yaml:"subdomain,omitempty"` TerminationGracePeriodSeconds *int64 `json:"terminationGracePeriodSeconds,omitempty" yaml:"terminationGracePeriodSeconds,omitempty"` Uid *int64 `json:"uid,omitempty" yaml:"uid,omitempty"` diff --git a/client/project/v3/zz_generated_rbd_persistent_volume_source.go b/client/project/v3/zz_generated_rbd_persistent_volume_source.go new file mode 100644 index 00000000..40f55148 --- /dev/null +++ b/client/project/v3/zz_generated_rbd_persistent_volume_source.go @@ -0,0 +1,24 @@ +package client + +const ( + RBDPersistentVolumeSourceType = "rbdPersistentVolumeSource" + RBDPersistentVolumeSourceFieldCephMonitors = "monitors" + RBDPersistentVolumeSourceFieldFSType = "fsType" + RBDPersistentVolumeSourceFieldKeyring = "keyring" + RBDPersistentVolumeSourceFieldRBDImage = "image" + RBDPersistentVolumeSourceFieldRBDPool = "pool" + RBDPersistentVolumeSourceFieldRadosUser = "user" + RBDPersistentVolumeSourceFieldReadOnly = "readOnly" + RBDPersistentVolumeSourceFieldSecretRef = "secretRef" +) + +type RBDPersistentVolumeSource struct { + CephMonitors []string `json:"monitors,omitempty" yaml:"monitors,omitempty"` + FSType string `json:"fsType,omitempty" yaml:"fsType,omitempty"` + Keyring string `json:"keyring,omitempty" yaml:"keyring,omitempty"` + RBDImage string `json:"image,omitempty" yaml:"image,omitempty"` + RBDPool string `json:"pool,omitempty" yaml:"pool,omitempty"` + RadosUser string `json:"user,omitempty" yaml:"user,omitempty"` + ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"` + SecretRef *SecretReference `json:"secretRef,omitempty" yaml:"secretRef,omitempty"` +} diff --git a/client/project/v3/zz_generated_replica_set.go b/client/project/v3/zz_generated_replica_set.go index 2c8c6da6..283684f0 100644 --- a/client/project/v3/zz_generated_replica_set.go +++ b/client/project/v3/zz_generated_replica_set.go @@ -12,6 +12,7 @@ const ( ReplicaSetFieldContainers = "containers" ReplicaSetFieldCreated = "created" ReplicaSetFieldCreatorID = "creatorId" + ReplicaSetFieldDNSConfig = "dnsConfig" ReplicaSetFieldDNSPolicy = "dnsPolicy" ReplicaSetFieldFsgid = "fsgid" ReplicaSetFieldGids = "gids" @@ -34,12 +35,14 @@ const ( ReplicaSetFieldReplicaSetConfig = "replicaSetConfig" ReplicaSetFieldReplicaSetStatus = "replicaSetStatus" ReplicaSetFieldRestartPolicy = "restartPolicy" + ReplicaSetFieldRunAsGroup = "runAsGroup" ReplicaSetFieldRunAsNonRoot = "runAsNonRoot" ReplicaSetFieldScale = "scale" ReplicaSetFieldSchedulerName = "schedulerName" ReplicaSetFieldScheduling = "scheduling" ReplicaSetFieldSelector = "selector" ReplicaSetFieldServiceAccountName = "serviceAccountName" + ReplicaSetFieldShareProcessNamespace = "shareProcessNamespace" ReplicaSetFieldState = "state" ReplicaSetFieldSubdomain = "subdomain" ReplicaSetFieldTerminationGracePeriodSeconds = "terminationGracePeriodSeconds" @@ -60,6 +63,7 @@ type ReplicaSet struct { Containers []Container `json:"containers,omitempty" yaml:"containers,omitempty"` Created string `json:"created,omitempty" yaml:"created,omitempty"` CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"` + DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty" yaml:"dnsConfig,omitempty"` DNSPolicy string `json:"dnsPolicy,omitempty" yaml:"dnsPolicy,omitempty"` Fsgid *int64 `json:"fsgid,omitempty" yaml:"fsgid,omitempty"` Gids []int64 `json:"gids,omitempty" yaml:"gids,omitempty"` @@ -82,12 +86,14 @@ type ReplicaSet struct { ReplicaSetConfig *ReplicaSetConfig `json:"replicaSetConfig,omitempty" yaml:"replicaSetConfig,omitempty"` ReplicaSetStatus *ReplicaSetStatus `json:"replicaSetStatus,omitempty" yaml:"replicaSetStatus,omitempty"` RestartPolicy string `json:"restartPolicy,omitempty" yaml:"restartPolicy,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` Scale *int64 `json:"scale,omitempty" yaml:"scale,omitempty"` SchedulerName string `json:"schedulerName,omitempty" yaml:"schedulerName,omitempty"` Scheduling *Scheduling `json:"scheduling,omitempty" yaml:"scheduling,omitempty"` Selector *LabelSelector `json:"selector,omitempty" yaml:"selector,omitempty"` ServiceAccountName string `json:"serviceAccountName,omitempty" yaml:"serviceAccountName,omitempty"` + ShareProcessNamespace *bool `json:"shareProcessNamespace,omitempty" yaml:"shareProcessNamespace,omitempty"` State string `json:"state,omitempty" yaml:"state,omitempty"` Subdomain string `json:"subdomain,omitempty" yaml:"subdomain,omitempty"` TerminationGracePeriodSeconds *int64 `json:"terminationGracePeriodSeconds,omitempty" yaml:"terminationGracePeriodSeconds,omitempty"` diff --git a/client/project/v3/zz_generated_replication_controller.go b/client/project/v3/zz_generated_replication_controller.go index 6d341733..ab6a3a01 100644 --- a/client/project/v3/zz_generated_replication_controller.go +++ b/client/project/v3/zz_generated_replication_controller.go @@ -12,6 +12,7 @@ const ( ReplicationControllerFieldContainers = "containers" ReplicationControllerFieldCreated = "created" ReplicationControllerFieldCreatorID = "creatorId" + ReplicationControllerFieldDNSConfig = "dnsConfig" ReplicationControllerFieldDNSPolicy = "dnsPolicy" ReplicationControllerFieldFsgid = "fsgid" ReplicationControllerFieldGids = "gids" @@ -34,12 +35,14 @@ const ( ReplicationControllerFieldReplicationControllerConfig = "replicationControllerConfig" ReplicationControllerFieldReplicationControllerStatus = "replicationControllerStatus" ReplicationControllerFieldRestartPolicy = "restartPolicy" + ReplicationControllerFieldRunAsGroup = "runAsGroup" ReplicationControllerFieldRunAsNonRoot = "runAsNonRoot" ReplicationControllerFieldScale = "scale" ReplicationControllerFieldSchedulerName = "schedulerName" ReplicationControllerFieldScheduling = "scheduling" ReplicationControllerFieldSelector = "selector" ReplicationControllerFieldServiceAccountName = "serviceAccountName" + ReplicationControllerFieldShareProcessNamespace = "shareProcessNamespace" ReplicationControllerFieldState = "state" ReplicationControllerFieldSubdomain = "subdomain" ReplicationControllerFieldTerminationGracePeriodSeconds = "terminationGracePeriodSeconds" @@ -60,6 +63,7 @@ type ReplicationController struct { Containers []Container `json:"containers,omitempty" yaml:"containers,omitempty"` Created string `json:"created,omitempty" yaml:"created,omitempty"` CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"` + DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty" yaml:"dnsConfig,omitempty"` DNSPolicy string `json:"dnsPolicy,omitempty" yaml:"dnsPolicy,omitempty"` Fsgid *int64 `json:"fsgid,omitempty" yaml:"fsgid,omitempty"` Gids []int64 `json:"gids,omitempty" yaml:"gids,omitempty"` @@ -82,12 +86,14 @@ type ReplicationController struct { ReplicationControllerConfig *ReplicationControllerConfig `json:"replicationControllerConfig,omitempty" yaml:"replicationControllerConfig,omitempty"` ReplicationControllerStatus *ReplicationControllerStatus `json:"replicationControllerStatus,omitempty" yaml:"replicationControllerStatus,omitempty"` RestartPolicy string `json:"restartPolicy,omitempty" yaml:"restartPolicy,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` Scale *int64 `json:"scale,omitempty" yaml:"scale,omitempty"` SchedulerName string `json:"schedulerName,omitempty" yaml:"schedulerName,omitempty"` Scheduling *Scheduling `json:"scheduling,omitempty" yaml:"scheduling,omitempty"` Selector map[string]string `json:"selector,omitempty" yaml:"selector,omitempty"` ServiceAccountName string `json:"serviceAccountName,omitempty" yaml:"serviceAccountName,omitempty"` + ShareProcessNamespace *bool `json:"shareProcessNamespace,omitempty" yaml:"shareProcessNamespace,omitempty"` State string `json:"state,omitempty" yaml:"state,omitempty"` Subdomain string `json:"subdomain,omitempty" yaml:"subdomain,omitempty"` TerminationGracePeriodSeconds *int64 `json:"terminationGracePeriodSeconds,omitempty" yaml:"terminationGracePeriodSeconds,omitempty"` diff --git a/client/project/v3/zz_generated_replication_controller_spec.go b/client/project/v3/zz_generated_replication_controller_spec.go index ac08447b..520eb6c6 100644 --- a/client/project/v3/zz_generated_replication_controller_spec.go +++ b/client/project/v3/zz_generated_replication_controller_spec.go @@ -5,6 +5,7 @@ const ( ReplicationControllerSpecFieldActiveDeadlineSeconds = "activeDeadlineSeconds" ReplicationControllerSpecFieldAutomountServiceAccountToken = "automountServiceAccountToken" ReplicationControllerSpecFieldContainers = "containers" + ReplicationControllerSpecFieldDNSConfig = "dnsConfig" ReplicationControllerSpecFieldDNSPolicy = "dnsPolicy" ReplicationControllerSpecFieldFsgid = "fsgid" ReplicationControllerSpecFieldGids = "gids" @@ -20,12 +21,14 @@ const ( ReplicationControllerSpecFieldPriorityClassName = "priorityClassName" ReplicationControllerSpecFieldReplicationControllerConfig = "replicationControllerConfig" ReplicationControllerSpecFieldRestartPolicy = "restartPolicy" + ReplicationControllerSpecFieldRunAsGroup = "runAsGroup" ReplicationControllerSpecFieldRunAsNonRoot = "runAsNonRoot" ReplicationControllerSpecFieldScale = "scale" ReplicationControllerSpecFieldSchedulerName = "schedulerName" ReplicationControllerSpecFieldScheduling = "scheduling" ReplicationControllerSpecFieldSelector = "selector" ReplicationControllerSpecFieldServiceAccountName = "serviceAccountName" + ReplicationControllerSpecFieldShareProcessNamespace = "shareProcessNamespace" ReplicationControllerSpecFieldSubdomain = "subdomain" ReplicationControllerSpecFieldTerminationGracePeriodSeconds = "terminationGracePeriodSeconds" ReplicationControllerSpecFieldUid = "uid" @@ -36,6 +39,7 @@ type ReplicationControllerSpec struct { ActiveDeadlineSeconds *int64 `json:"activeDeadlineSeconds,omitempty" yaml:"activeDeadlineSeconds,omitempty"` AutomountServiceAccountToken *bool `json:"automountServiceAccountToken,omitempty" yaml:"automountServiceAccountToken,omitempty"` Containers []Container `json:"containers,omitempty" yaml:"containers,omitempty"` + DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty" yaml:"dnsConfig,omitempty"` DNSPolicy string `json:"dnsPolicy,omitempty" yaml:"dnsPolicy,omitempty"` Fsgid *int64 `json:"fsgid,omitempty" yaml:"fsgid,omitempty"` Gids []int64 `json:"gids,omitempty" yaml:"gids,omitempty"` @@ -51,12 +55,14 @@ type ReplicationControllerSpec struct { PriorityClassName string `json:"priorityClassName,omitempty" yaml:"priorityClassName,omitempty"` ReplicationControllerConfig *ReplicationControllerConfig `json:"replicationControllerConfig,omitempty" yaml:"replicationControllerConfig,omitempty"` RestartPolicy string `json:"restartPolicy,omitempty" yaml:"restartPolicy,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` Scale *int64 `json:"scale,omitempty" yaml:"scale,omitempty"` SchedulerName string `json:"schedulerName,omitempty" yaml:"schedulerName,omitempty"` Scheduling *Scheduling `json:"scheduling,omitempty" yaml:"scheduling,omitempty"` Selector map[string]string `json:"selector,omitempty" yaml:"selector,omitempty"` ServiceAccountName string `json:"serviceAccountName,omitempty" yaml:"serviceAccountName,omitempty"` + ShareProcessNamespace *bool `json:"shareProcessNamespace,omitempty" yaml:"shareProcessNamespace,omitempty"` Subdomain string `json:"subdomain,omitempty" yaml:"subdomain,omitempty"` TerminationGracePeriodSeconds *int64 `json:"terminationGracePeriodSeconds,omitempty" yaml:"terminationGracePeriodSeconds,omitempty"` Uid *int64 `json:"uid,omitempty" yaml:"uid,omitempty"` diff --git a/client/project/v3/zz_generated_scale_iopersistent_volume_source.go b/client/project/v3/zz_generated_scale_iopersistent_volume_source.go new file mode 100644 index 00000000..49871d57 --- /dev/null +++ b/client/project/v3/zz_generated_scale_iopersistent_volume_source.go @@ -0,0 +1,28 @@ +package client + +const ( + ScaleIOPersistentVolumeSourceType = "scaleIOPersistentVolumeSource" + ScaleIOPersistentVolumeSourceFieldFSType = "fsType" + ScaleIOPersistentVolumeSourceFieldGateway = "gateway" + ScaleIOPersistentVolumeSourceFieldProtectionDomain = "protectionDomain" + ScaleIOPersistentVolumeSourceFieldReadOnly = "readOnly" + ScaleIOPersistentVolumeSourceFieldSSLEnabled = "sslEnabled" + ScaleIOPersistentVolumeSourceFieldSecretRef = "secretRef" + ScaleIOPersistentVolumeSourceFieldStorageMode = "storageMode" + ScaleIOPersistentVolumeSourceFieldStoragePool = "storagePool" + ScaleIOPersistentVolumeSourceFieldSystem = "system" + ScaleIOPersistentVolumeSourceFieldVolumeName = "volumeName" +) + +type ScaleIOPersistentVolumeSource struct { + FSType string `json:"fsType,omitempty" yaml:"fsType,omitempty"` + Gateway string `json:"gateway,omitempty" yaml:"gateway,omitempty"` + ProtectionDomain string `json:"protectionDomain,omitempty" yaml:"protectionDomain,omitempty"` + ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"` + SSLEnabled bool `json:"sslEnabled,omitempty" yaml:"sslEnabled,omitempty"` + SecretRef *SecretReference `json:"secretRef,omitempty" yaml:"secretRef,omitempty"` + StorageMode string `json:"storageMode,omitempty" yaml:"storageMode,omitempty"` + StoragePool string `json:"storagePool,omitempty" yaml:"storagePool,omitempty"` + System string `json:"system,omitempty" yaml:"system,omitempty"` + VolumeName string `json:"volumeName,omitempty" yaml:"volumeName,omitempty"` +} diff --git a/client/project/v3/zz_generated_security_context.go b/client/project/v3/zz_generated_security_context.go index f42f85df..0067d78f 100644 --- a/client/project/v3/zz_generated_security_context.go +++ b/client/project/v3/zz_generated_security_context.go @@ -7,6 +7,7 @@ const ( SecurityContextFieldCapDrop = "capDrop" SecurityContextFieldPrivileged = "privileged" SecurityContextFieldReadOnly = "readOnly" + SecurityContextFieldRunAsGroup = "runAsGroup" SecurityContextFieldRunAsNonRoot = "runAsNonRoot" SecurityContextFieldUid = "uid" ) @@ -17,6 +18,7 @@ type SecurityContext struct { CapDrop []string `json:"capDrop,omitempty" yaml:"capDrop,omitempty"` Privileged *bool `json:"privileged,omitempty" yaml:"privileged,omitempty"` ReadOnly *bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` Uid *int64 `json:"uid,omitempty" yaml:"uid,omitempty"` } diff --git a/client/project/v3/zz_generated_stateful_set.go b/client/project/v3/zz_generated_stateful_set.go index 632146ec..730ffb7c 100644 --- a/client/project/v3/zz_generated_stateful_set.go +++ b/client/project/v3/zz_generated_stateful_set.go @@ -12,6 +12,7 @@ const ( StatefulSetFieldContainers = "containers" StatefulSetFieldCreated = "created" StatefulSetFieldCreatorID = "creatorId" + StatefulSetFieldDNSConfig = "dnsConfig" StatefulSetFieldDNSPolicy = "dnsPolicy" StatefulSetFieldFsgid = "fsgid" StatefulSetFieldGids = "gids" @@ -32,12 +33,14 @@ const ( StatefulSetFieldPublicEndpoints = "publicEndpoints" StatefulSetFieldRemoved = "removed" StatefulSetFieldRestartPolicy = "restartPolicy" + StatefulSetFieldRunAsGroup = "runAsGroup" StatefulSetFieldRunAsNonRoot = "runAsNonRoot" StatefulSetFieldScale = "scale" StatefulSetFieldSchedulerName = "schedulerName" StatefulSetFieldScheduling = "scheduling" StatefulSetFieldSelector = "selector" StatefulSetFieldServiceAccountName = "serviceAccountName" + StatefulSetFieldShareProcessNamespace = "shareProcessNamespace" StatefulSetFieldState = "state" StatefulSetFieldStatefulSetConfig = "statefulSetConfig" StatefulSetFieldStatefulSetStatus = "statefulSetStatus" @@ -60,6 +63,7 @@ type StatefulSet struct { Containers []Container `json:"containers,omitempty" yaml:"containers,omitempty"` Created string `json:"created,omitempty" yaml:"created,omitempty"` CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"` + DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty" yaml:"dnsConfig,omitempty"` DNSPolicy string `json:"dnsPolicy,omitempty" yaml:"dnsPolicy,omitempty"` Fsgid *int64 `json:"fsgid,omitempty" yaml:"fsgid,omitempty"` Gids []int64 `json:"gids,omitempty" yaml:"gids,omitempty"` @@ -80,12 +84,14 @@ type StatefulSet struct { PublicEndpoints []PublicEndpoint `json:"publicEndpoints,omitempty" yaml:"publicEndpoints,omitempty"` Removed string `json:"removed,omitempty" yaml:"removed,omitempty"` RestartPolicy string `json:"restartPolicy,omitempty" yaml:"restartPolicy,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` Scale *int64 `json:"scale,omitempty" yaml:"scale,omitempty"` SchedulerName string `json:"schedulerName,omitempty" yaml:"schedulerName,omitempty"` Scheduling *Scheduling `json:"scheduling,omitempty" yaml:"scheduling,omitempty"` Selector *LabelSelector `json:"selector,omitempty" yaml:"selector,omitempty"` ServiceAccountName string `json:"serviceAccountName,omitempty" yaml:"serviceAccountName,omitempty"` + ShareProcessNamespace *bool `json:"shareProcessNamespace,omitempty" yaml:"shareProcessNamespace,omitempty"` State string `json:"state,omitempty" yaml:"state,omitempty"` StatefulSetConfig *StatefulSetConfig `json:"statefulSetConfig,omitempty" yaml:"statefulSetConfig,omitempty"` StatefulSetStatus *StatefulSetStatus `json:"statefulSetStatus,omitempty" yaml:"statefulSetStatus,omitempty"` diff --git a/client/project/v3/zz_generated_stateful_set_condition.go b/client/project/v3/zz_generated_stateful_set_condition.go new file mode 100644 index 00000000..6ff9b5e1 --- /dev/null +++ b/client/project/v3/zz_generated_stateful_set_condition.go @@ -0,0 +1,18 @@ +package client + +const ( + StatefulSetConditionType = "statefulSetCondition" + StatefulSetConditionFieldLastTransitionTime = "lastTransitionTime" + StatefulSetConditionFieldMessage = "message" + StatefulSetConditionFieldReason = "reason" + StatefulSetConditionFieldStatus = "status" + StatefulSetConditionFieldType = "type" +) + +type StatefulSetCondition struct { + LastTransitionTime string `json:"lastTransitionTime,omitempty" yaml:"lastTransitionTime,omitempty"` + Message string `json:"message,omitempty" yaml:"message,omitempty"` + Reason string `json:"reason,omitempty" yaml:"reason,omitempty"` + Status string `json:"status,omitempty" yaml:"status,omitempty"` + Type string `json:"type,omitempty" yaml:"type,omitempty"` +} diff --git a/client/project/v3/zz_generated_stateful_set_spec.go b/client/project/v3/zz_generated_stateful_set_spec.go index 7d755425..f5a4a6ba 100644 --- a/client/project/v3/zz_generated_stateful_set_spec.go +++ b/client/project/v3/zz_generated_stateful_set_spec.go @@ -5,6 +5,7 @@ const ( StatefulSetSpecFieldActiveDeadlineSeconds = "activeDeadlineSeconds" StatefulSetSpecFieldAutomountServiceAccountToken = "automountServiceAccountToken" StatefulSetSpecFieldContainers = "containers" + StatefulSetSpecFieldDNSConfig = "dnsConfig" StatefulSetSpecFieldDNSPolicy = "dnsPolicy" StatefulSetSpecFieldFsgid = "fsgid" StatefulSetSpecFieldGids = "gids" @@ -19,12 +20,14 @@ const ( StatefulSetSpecFieldPriority = "priority" StatefulSetSpecFieldPriorityClassName = "priorityClassName" StatefulSetSpecFieldRestartPolicy = "restartPolicy" + StatefulSetSpecFieldRunAsGroup = "runAsGroup" StatefulSetSpecFieldRunAsNonRoot = "runAsNonRoot" StatefulSetSpecFieldScale = "scale" StatefulSetSpecFieldSchedulerName = "schedulerName" StatefulSetSpecFieldScheduling = "scheduling" StatefulSetSpecFieldSelector = "selector" StatefulSetSpecFieldServiceAccountName = "serviceAccountName" + StatefulSetSpecFieldShareProcessNamespace = "shareProcessNamespace" StatefulSetSpecFieldStatefulSetConfig = "statefulSetConfig" StatefulSetSpecFieldSubdomain = "subdomain" StatefulSetSpecFieldTerminationGracePeriodSeconds = "terminationGracePeriodSeconds" @@ -36,6 +39,7 @@ type StatefulSetSpec struct { ActiveDeadlineSeconds *int64 `json:"activeDeadlineSeconds,omitempty" yaml:"activeDeadlineSeconds,omitempty"` AutomountServiceAccountToken *bool `json:"automountServiceAccountToken,omitempty" yaml:"automountServiceAccountToken,omitempty"` Containers []Container `json:"containers,omitempty" yaml:"containers,omitempty"` + DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty" yaml:"dnsConfig,omitempty"` DNSPolicy string `json:"dnsPolicy,omitempty" yaml:"dnsPolicy,omitempty"` Fsgid *int64 `json:"fsgid,omitempty" yaml:"fsgid,omitempty"` Gids []int64 `json:"gids,omitempty" yaml:"gids,omitempty"` @@ -50,12 +54,14 @@ type StatefulSetSpec struct { Priority *int64 `json:"priority,omitempty" yaml:"priority,omitempty"` PriorityClassName string `json:"priorityClassName,omitempty" yaml:"priorityClassName,omitempty"` RestartPolicy string `json:"restartPolicy,omitempty" yaml:"restartPolicy,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` Scale *int64 `json:"scale,omitempty" yaml:"scale,omitempty"` SchedulerName string `json:"schedulerName,omitempty" yaml:"schedulerName,omitempty"` Scheduling *Scheduling `json:"scheduling,omitempty" yaml:"scheduling,omitempty"` Selector *LabelSelector `json:"selector,omitempty" yaml:"selector,omitempty"` ServiceAccountName string `json:"serviceAccountName,omitempty" yaml:"serviceAccountName,omitempty"` + ShareProcessNamespace *bool `json:"shareProcessNamespace,omitempty" yaml:"shareProcessNamespace,omitempty"` StatefulSetConfig *StatefulSetConfig `json:"statefulSetConfig,omitempty" yaml:"statefulSetConfig,omitempty"` Subdomain string `json:"subdomain,omitempty" yaml:"subdomain,omitempty"` TerminationGracePeriodSeconds *int64 `json:"terminationGracePeriodSeconds,omitempty" yaml:"terminationGracePeriodSeconds,omitempty"` diff --git a/client/project/v3/zz_generated_stateful_set_status.go b/client/project/v3/zz_generated_stateful_set_status.go index 55963d7c..75fa701f 100644 --- a/client/project/v3/zz_generated_stateful_set_status.go +++ b/client/project/v3/zz_generated_stateful_set_status.go @@ -3,6 +3,7 @@ package client const ( StatefulSetStatusType = "statefulSetStatus" StatefulSetStatusFieldCollisionCount = "collisionCount" + StatefulSetStatusFieldConditions = "conditions" StatefulSetStatusFieldCurrentReplicas = "currentReplicas" StatefulSetStatusFieldCurrentRevision = "currentRevision" StatefulSetStatusFieldObservedGeneration = "observedGeneration" @@ -13,12 +14,13 @@ const ( ) type StatefulSetStatus struct { - CollisionCount *int64 `json:"collisionCount,omitempty" yaml:"collisionCount,omitempty"` - CurrentReplicas int64 `json:"currentReplicas,omitempty" yaml:"currentReplicas,omitempty"` - CurrentRevision string `json:"currentRevision,omitempty" yaml:"currentRevision,omitempty"` - ObservedGeneration int64 `json:"observedGeneration,omitempty" yaml:"observedGeneration,omitempty"` - ReadyReplicas int64 `json:"readyReplicas,omitempty" yaml:"readyReplicas,omitempty"` - Replicas int64 `json:"replicas,omitempty" yaml:"replicas,omitempty"` - UpdateRevision string `json:"updateRevision,omitempty" yaml:"updateRevision,omitempty"` - UpdatedReplicas int64 `json:"updatedReplicas,omitempty" yaml:"updatedReplicas,omitempty"` + CollisionCount *int64 `json:"collisionCount,omitempty" yaml:"collisionCount,omitempty"` + Conditions []StatefulSetCondition `json:"conditions,omitempty" yaml:"conditions,omitempty"` + CurrentReplicas int64 `json:"currentReplicas,omitempty" yaml:"currentReplicas,omitempty"` + CurrentRevision string `json:"currentRevision,omitempty" yaml:"currentRevision,omitempty"` + ObservedGeneration int64 `json:"observedGeneration,omitempty" yaml:"observedGeneration,omitempty"` + ReadyReplicas int64 `json:"readyReplicas,omitempty" yaml:"readyReplicas,omitempty"` + Replicas int64 `json:"replicas,omitempty" yaml:"replicas,omitempty"` + UpdateRevision string `json:"updateRevision,omitempty" yaml:"updateRevision,omitempty"` + UpdatedReplicas int64 `json:"updatedReplicas,omitempty" yaml:"updatedReplicas,omitempty"` } diff --git a/client/project/v3/zz_generated_volume_device.go b/client/project/v3/zz_generated_volume_device.go new file mode 100644 index 00000000..4fe23102 --- /dev/null +++ b/client/project/v3/zz_generated_volume_device.go @@ -0,0 +1,12 @@ +package client + +const ( + VolumeDeviceType = "volumeDevice" + VolumeDeviceFieldDevicePath = "devicePath" + VolumeDeviceFieldName = "name" +) + +type VolumeDevice struct { + DevicePath string `json:"devicePath,omitempty" yaml:"devicePath,omitempty"` + Name string `json:"name,omitempty" yaml:"name,omitempty"` +} diff --git a/client/project/v3/zz_generated_volume_node_affinity.go b/client/project/v3/zz_generated_volume_node_affinity.go new file mode 100644 index 00000000..e025eb36 --- /dev/null +++ b/client/project/v3/zz_generated_volume_node_affinity.go @@ -0,0 +1,10 @@ +package client + +const ( + VolumeNodeAffinityType = "volumeNodeAffinity" + VolumeNodeAffinityFieldRequired = "required" +) + +type VolumeNodeAffinity struct { + Required *NodeSelector `json:"required,omitempty" yaml:"required,omitempty"` +} diff --git a/client/project/v3/zz_generated_workload.go b/client/project/v3/zz_generated_workload.go index 2d694f03..2a08d7da 100644 --- a/client/project/v3/zz_generated_workload.go +++ b/client/project/v3/zz_generated_workload.go @@ -14,6 +14,7 @@ const ( WorkloadFieldCreatorID = "creatorId" WorkloadFieldCronJobConfig = "cronJobConfig" WorkloadFieldCronJobStatus = "cronJobStatus" + WorkloadFieldDNSConfig = "dnsConfig" WorkloadFieldDNSPolicy = "dnsPolicy" WorkloadFieldDaemonSetConfig = "daemonSetConfig" WorkloadFieldDaemonSetStatus = "daemonSetStatus" @@ -45,12 +46,14 @@ const ( WorkloadFieldReplicationControllerConfig = "replicationControllerConfig" WorkloadFieldReplicationControllerStatus = "replicationControllerStatus" WorkloadFieldRestartPolicy = "restartPolicy" + WorkloadFieldRunAsGroup = "runAsGroup" WorkloadFieldRunAsNonRoot = "runAsNonRoot" WorkloadFieldScale = "scale" WorkloadFieldSchedulerName = "schedulerName" WorkloadFieldScheduling = "scheduling" WorkloadFieldSelector = "selector" WorkloadFieldServiceAccountName = "serviceAccountName" + WorkloadFieldShareProcessNamespace = "shareProcessNamespace" WorkloadFieldState = "state" WorkloadFieldStatefulSetConfig = "statefulSetConfig" WorkloadFieldStatefulSetStatus = "statefulSetStatus" @@ -75,6 +78,7 @@ type Workload struct { CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"` CronJobConfig *CronJobConfig `json:"cronJobConfig,omitempty" yaml:"cronJobConfig,omitempty"` CronJobStatus *CronJobStatus `json:"cronJobStatus,omitempty" yaml:"cronJobStatus,omitempty"` + DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty" yaml:"dnsConfig,omitempty"` DNSPolicy string `json:"dnsPolicy,omitempty" yaml:"dnsPolicy,omitempty"` DaemonSetConfig *DaemonSetConfig `json:"daemonSetConfig,omitempty" yaml:"daemonSetConfig,omitempty"` DaemonSetStatus *DaemonSetStatus `json:"daemonSetStatus,omitempty" yaml:"daemonSetStatus,omitempty"` @@ -106,12 +110,14 @@ type Workload struct { ReplicationControllerConfig *ReplicationControllerConfig `json:"replicationControllerConfig,omitempty" yaml:"replicationControllerConfig,omitempty"` ReplicationControllerStatus *ReplicationControllerStatus `json:"replicationControllerStatus,omitempty" yaml:"replicationControllerStatus,omitempty"` RestartPolicy string `json:"restartPolicy,omitempty" yaml:"restartPolicy,omitempty"` + RunAsGroup *int64 `json:"runAsGroup,omitempty" yaml:"runAsGroup,omitempty"` RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" yaml:"runAsNonRoot,omitempty"` Scale *int64 `json:"scale,omitempty" yaml:"scale,omitempty"` SchedulerName string `json:"schedulerName,omitempty" yaml:"schedulerName,omitempty"` Scheduling *Scheduling `json:"scheduling,omitempty" yaml:"scheduling,omitempty"` Selector *LabelSelector `json:"selector,omitempty" yaml:"selector,omitempty"` ServiceAccountName string `json:"serviceAccountName,omitempty" yaml:"serviceAccountName,omitempty"` + ShareProcessNamespace *bool `json:"shareProcessNamespace,omitempty" yaml:"shareProcessNamespace,omitempty"` State string `json:"state,omitempty" yaml:"state,omitempty"` StatefulSetConfig *StatefulSetConfig `json:"statefulSetConfig,omitempty" yaml:"statefulSetConfig,omitempty"` StatefulSetStatus *StatefulSetStatus `json:"statefulSetStatus,omitempty" yaml:"statefulSetStatus,omitempty"`