diff --git a/pkg/apis/extensions/v1beta1/conversion.go b/pkg/apis/extensions/v1beta1/conversion.go index 0e0bf3de573..6d928528d8b 100644 --- a/pkg/apis/extensions/v1beta1/conversion.go +++ b/pkg/apis/extensions/v1beta1/conversion.go @@ -31,12 +31,12 @@ func addConversionFuncs() { err := api.Scheme.AddConversionFuncs( convert_api_PodSpec_To_v1_PodSpec, convert_v1_PodSpec_To_api_PodSpec, - convert_experimental_DeploymentSpec_To_v1alpha1_DeploymentSpec, - convert_v1alpha1_DeploymentSpec_To_experimental_DeploymentSpec, - convert_experimental_DeploymentStrategy_To_v1alpha1_DeploymentStrategy, - convert_v1alpha1_DeploymentStrategy_To_experimental_DeploymentStrategy, - convert_experimental_RollingUpdateDeployment_To_v1alpha1_RollingUpdateDeployment, - convert_v1alpha1_RollingUpdateDeployment_To_experimental_RollingUpdateDeployment, + convert_experimental_DeploymentSpec_To_v1beta1_DeploymentSpec, + convert_v1beta1_DeploymentSpec_To_experimental_DeploymentSpec, + convert_experimental_DeploymentStrategy_To_v1beta1_DeploymentStrategy, + convert_v1beta1_DeploymentStrategy_To_experimental_DeploymentStrategy, + convert_experimental_RollingUpdateDeployment_To_v1beta1_RollingUpdateDeployment, + convert_v1beta1_RollingUpdateDeployment_To_experimental_RollingUpdateDeployment, ) if err != nil { // If one of the conversion functions is malformed, detect it immediately. @@ -199,7 +199,7 @@ func convert_v1_PodSpec_To_api_PodSpec(in *v1.PodSpec, out *api.PodSpec, s conve return nil } -func convert_experimental_DeploymentSpec_To_v1alpha1_DeploymentSpec(in *experimental.DeploymentSpec, out *DeploymentSpec, s conversion.Scope) error { +func convert_experimental_DeploymentSpec_To_v1beta1_DeploymentSpec(in *experimental.DeploymentSpec, out *DeploymentSpec, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.DeploymentSpec))(in) } @@ -221,7 +221,7 @@ func convert_experimental_DeploymentSpec_To_v1alpha1_DeploymentSpec(in *experime } else { out.Template = nil } - if err := convert_experimental_DeploymentStrategy_To_v1alpha1_DeploymentStrategy(&in.Strategy, &out.Strategy, s); err != nil { + if err := convert_experimental_DeploymentStrategy_To_v1beta1_DeploymentStrategy(&in.Strategy, &out.Strategy, s); err != nil { return err } out.UniqueLabelKey = new(string) @@ -229,7 +229,7 @@ func convert_experimental_DeploymentSpec_To_v1alpha1_DeploymentSpec(in *experime return nil } -func convert_v1alpha1_DeploymentSpec_To_experimental_DeploymentSpec(in *DeploymentSpec, out *experimental.DeploymentSpec, s conversion.Scope) error { +func convert_v1beta1_DeploymentSpec_To_experimental_DeploymentSpec(in *DeploymentSpec, out *experimental.DeploymentSpec, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*DeploymentSpec))(in) } @@ -252,7 +252,7 @@ func convert_v1alpha1_DeploymentSpec_To_experimental_DeploymentSpec(in *Deployme } else { out.Template = nil } - if err := convert_v1alpha1_DeploymentStrategy_To_experimental_DeploymentStrategy(&in.Strategy, &out.Strategy, s); err != nil { + if err := convert_v1beta1_DeploymentStrategy_To_experimental_DeploymentStrategy(&in.Strategy, &out.Strategy, s); err != nil { return err } if in.UniqueLabelKey != nil { @@ -261,14 +261,14 @@ func convert_v1alpha1_DeploymentSpec_To_experimental_DeploymentSpec(in *Deployme return nil } -func convert_experimental_DeploymentStrategy_To_v1alpha1_DeploymentStrategy(in *experimental.DeploymentStrategy, out *DeploymentStrategy, s conversion.Scope) error { +func convert_experimental_DeploymentStrategy_To_v1beta1_DeploymentStrategy(in *experimental.DeploymentStrategy, out *DeploymentStrategy, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.DeploymentStrategy))(in) } out.Type = DeploymentStrategyType(in.Type) if in.RollingUpdate != nil { out.RollingUpdate = new(RollingUpdateDeployment) - if err := convert_experimental_RollingUpdateDeployment_To_v1alpha1_RollingUpdateDeployment(in.RollingUpdate, out.RollingUpdate, s); err != nil { + if err := convert_experimental_RollingUpdateDeployment_To_v1beta1_RollingUpdateDeployment(in.RollingUpdate, out.RollingUpdate, s); err != nil { return err } } else { @@ -277,14 +277,14 @@ func convert_experimental_DeploymentStrategy_To_v1alpha1_DeploymentStrategy(in * return nil } -func convert_v1alpha1_DeploymentStrategy_To_experimental_DeploymentStrategy(in *DeploymentStrategy, out *experimental.DeploymentStrategy, s conversion.Scope) error { +func convert_v1beta1_DeploymentStrategy_To_experimental_DeploymentStrategy(in *DeploymentStrategy, out *experimental.DeploymentStrategy, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*DeploymentStrategy))(in) } out.Type = experimental.DeploymentStrategyType(in.Type) if in.RollingUpdate != nil { out.RollingUpdate = new(experimental.RollingUpdateDeployment) - if err := convert_v1alpha1_RollingUpdateDeployment_To_experimental_RollingUpdateDeployment(in.RollingUpdate, out.RollingUpdate, s); err != nil { + if err := convert_v1beta1_RollingUpdateDeployment_To_experimental_RollingUpdateDeployment(in.RollingUpdate, out.RollingUpdate, s); err != nil { return err } } else { @@ -293,7 +293,7 @@ func convert_v1alpha1_DeploymentStrategy_To_experimental_DeploymentStrategy(in * return nil } -func convert_experimental_RollingUpdateDeployment_To_v1alpha1_RollingUpdateDeployment(in *experimental.RollingUpdateDeployment, out *RollingUpdateDeployment, s conversion.Scope) error { +func convert_experimental_RollingUpdateDeployment_To_v1beta1_RollingUpdateDeployment(in *experimental.RollingUpdateDeployment, out *RollingUpdateDeployment, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.RollingUpdateDeployment))(in) } @@ -313,7 +313,7 @@ func convert_experimental_RollingUpdateDeployment_To_v1alpha1_RollingUpdateDeplo return nil } -func convert_v1alpha1_RollingUpdateDeployment_To_experimental_RollingUpdateDeployment(in *RollingUpdateDeployment, out *experimental.RollingUpdateDeployment, s conversion.Scope) error { +func convert_v1beta1_RollingUpdateDeployment_To_experimental_RollingUpdateDeployment(in *RollingUpdateDeployment, out *experimental.RollingUpdateDeployment, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*RollingUpdateDeployment))(in) } diff --git a/pkg/apis/extensions/v1beta1/conversion_generated.go b/pkg/apis/extensions/v1beta1/conversion_generated.go index bd51913fde6..09090992eae 100644 --- a/pkg/apis/extensions/v1beta1/conversion_generated.go +++ b/pkg/apis/extensions/v1beta1/conversion_generated.go @@ -2132,7 +2132,7 @@ func convert_v1_VolumeSource_To_api_VolumeSource(in *v1.VolumeSource, out *api.V return autoconvert_v1_VolumeSource_To_api_VolumeSource(in, out, s) } -func autoconvert_experimental_APIVersion_To_v1alpha1_APIVersion(in *experimental.APIVersion, out *APIVersion, s conversion.Scope) error { +func autoconvert_experimental_APIVersion_To_v1beta1_APIVersion(in *experimental.APIVersion, out *APIVersion, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.APIVersion))(in) } @@ -2141,11 +2141,11 @@ func autoconvert_experimental_APIVersion_To_v1alpha1_APIVersion(in *experimental return nil } -func convert_experimental_APIVersion_To_v1alpha1_APIVersion(in *experimental.APIVersion, out *APIVersion, s conversion.Scope) error { - return autoconvert_experimental_APIVersion_To_v1alpha1_APIVersion(in, out, s) +func convert_experimental_APIVersion_To_v1beta1_APIVersion(in *experimental.APIVersion, out *APIVersion, s conversion.Scope) error { + return autoconvert_experimental_APIVersion_To_v1beta1_APIVersion(in, out, s) } -func autoconvert_experimental_ClusterAutoscaler_To_v1alpha1_ClusterAutoscaler(in *experimental.ClusterAutoscaler, out *ClusterAutoscaler, s conversion.Scope) error { +func autoconvert_experimental_ClusterAutoscaler_To_v1beta1_ClusterAutoscaler(in *experimental.ClusterAutoscaler, out *ClusterAutoscaler, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.ClusterAutoscaler))(in) } @@ -2155,17 +2155,17 @@ func autoconvert_experimental_ClusterAutoscaler_To_v1alpha1_ClusterAutoscaler(in if err := convert_api_ObjectMeta_To_v1_ObjectMeta(&in.ObjectMeta, &out.ObjectMeta, s); err != nil { return err } - if err := convert_experimental_ClusterAutoscalerSpec_To_v1alpha1_ClusterAutoscalerSpec(&in.Spec, &out.Spec, s); err != nil { + if err := convert_experimental_ClusterAutoscalerSpec_To_v1beta1_ClusterAutoscalerSpec(&in.Spec, &out.Spec, s); err != nil { return err } return nil } -func convert_experimental_ClusterAutoscaler_To_v1alpha1_ClusterAutoscaler(in *experimental.ClusterAutoscaler, out *ClusterAutoscaler, s conversion.Scope) error { - return autoconvert_experimental_ClusterAutoscaler_To_v1alpha1_ClusterAutoscaler(in, out, s) +func convert_experimental_ClusterAutoscaler_To_v1beta1_ClusterAutoscaler(in *experimental.ClusterAutoscaler, out *ClusterAutoscaler, s conversion.Scope) error { + return autoconvert_experimental_ClusterAutoscaler_To_v1beta1_ClusterAutoscaler(in, out, s) } -func autoconvert_experimental_ClusterAutoscalerList_To_v1alpha1_ClusterAutoscalerList(in *experimental.ClusterAutoscalerList, out *ClusterAutoscalerList, s conversion.Scope) error { +func autoconvert_experimental_ClusterAutoscalerList_To_v1beta1_ClusterAutoscalerList(in *experimental.ClusterAutoscalerList, out *ClusterAutoscalerList, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.ClusterAutoscalerList))(in) } @@ -2178,7 +2178,7 @@ func autoconvert_experimental_ClusterAutoscalerList_To_v1alpha1_ClusterAutoscale if in.Items != nil { out.Items = make([]ClusterAutoscaler, len(in.Items)) for i := range in.Items { - if err := convert_experimental_ClusterAutoscaler_To_v1alpha1_ClusterAutoscaler(&in.Items[i], &out.Items[i], s); err != nil { + if err := convert_experimental_ClusterAutoscaler_To_v1beta1_ClusterAutoscaler(&in.Items[i], &out.Items[i], s); err != nil { return err } } @@ -2188,11 +2188,11 @@ func autoconvert_experimental_ClusterAutoscalerList_To_v1alpha1_ClusterAutoscale return nil } -func convert_experimental_ClusterAutoscalerList_To_v1alpha1_ClusterAutoscalerList(in *experimental.ClusterAutoscalerList, out *ClusterAutoscalerList, s conversion.Scope) error { - return autoconvert_experimental_ClusterAutoscalerList_To_v1alpha1_ClusterAutoscalerList(in, out, s) +func convert_experimental_ClusterAutoscalerList_To_v1beta1_ClusterAutoscalerList(in *experimental.ClusterAutoscalerList, out *ClusterAutoscalerList, s conversion.Scope) error { + return autoconvert_experimental_ClusterAutoscalerList_To_v1beta1_ClusterAutoscalerList(in, out, s) } -func autoconvert_experimental_ClusterAutoscalerSpec_To_v1alpha1_ClusterAutoscalerSpec(in *experimental.ClusterAutoscalerSpec, out *ClusterAutoscalerSpec, s conversion.Scope) error { +func autoconvert_experimental_ClusterAutoscalerSpec_To_v1beta1_ClusterAutoscalerSpec(in *experimental.ClusterAutoscalerSpec, out *ClusterAutoscalerSpec, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.ClusterAutoscalerSpec))(in) } @@ -2201,7 +2201,7 @@ func autoconvert_experimental_ClusterAutoscalerSpec_To_v1alpha1_ClusterAutoscale if in.TargetUtilization != nil { out.TargetUtilization = make([]NodeUtilization, len(in.TargetUtilization)) for i := range in.TargetUtilization { - if err := convert_experimental_NodeUtilization_To_v1alpha1_NodeUtilization(&in.TargetUtilization[i], &out.TargetUtilization[i], s); err != nil { + if err := convert_experimental_NodeUtilization_To_v1beta1_NodeUtilization(&in.TargetUtilization[i], &out.TargetUtilization[i], s); err != nil { return err } } @@ -2211,11 +2211,11 @@ func autoconvert_experimental_ClusterAutoscalerSpec_To_v1alpha1_ClusterAutoscale return nil } -func convert_experimental_ClusterAutoscalerSpec_To_v1alpha1_ClusterAutoscalerSpec(in *experimental.ClusterAutoscalerSpec, out *ClusterAutoscalerSpec, s conversion.Scope) error { - return autoconvert_experimental_ClusterAutoscalerSpec_To_v1alpha1_ClusterAutoscalerSpec(in, out, s) +func convert_experimental_ClusterAutoscalerSpec_To_v1beta1_ClusterAutoscalerSpec(in *experimental.ClusterAutoscalerSpec, out *ClusterAutoscalerSpec, s conversion.Scope) error { + return autoconvert_experimental_ClusterAutoscalerSpec_To_v1beta1_ClusterAutoscalerSpec(in, out, s) } -func autoconvert_experimental_DaemonSet_To_v1alpha1_DaemonSet(in *experimental.DaemonSet, out *DaemonSet, s conversion.Scope) error { +func autoconvert_experimental_DaemonSet_To_v1beta1_DaemonSet(in *experimental.DaemonSet, out *DaemonSet, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.DaemonSet))(in) } @@ -2225,20 +2225,20 @@ func autoconvert_experimental_DaemonSet_To_v1alpha1_DaemonSet(in *experimental.D if err := convert_api_ObjectMeta_To_v1_ObjectMeta(&in.ObjectMeta, &out.ObjectMeta, s); err != nil { return err } - if err := convert_experimental_DaemonSetSpec_To_v1alpha1_DaemonSetSpec(&in.Spec, &out.Spec, s); err != nil { + if err := convert_experimental_DaemonSetSpec_To_v1beta1_DaemonSetSpec(&in.Spec, &out.Spec, s); err != nil { return err } - if err := convert_experimental_DaemonSetStatus_To_v1alpha1_DaemonSetStatus(&in.Status, &out.Status, s); err != nil { + if err := convert_experimental_DaemonSetStatus_To_v1beta1_DaemonSetStatus(&in.Status, &out.Status, s); err != nil { return err } return nil } -func convert_experimental_DaemonSet_To_v1alpha1_DaemonSet(in *experimental.DaemonSet, out *DaemonSet, s conversion.Scope) error { - return autoconvert_experimental_DaemonSet_To_v1alpha1_DaemonSet(in, out, s) +func convert_experimental_DaemonSet_To_v1beta1_DaemonSet(in *experimental.DaemonSet, out *DaemonSet, s conversion.Scope) error { + return autoconvert_experimental_DaemonSet_To_v1beta1_DaemonSet(in, out, s) } -func autoconvert_experimental_DaemonSetList_To_v1alpha1_DaemonSetList(in *experimental.DaemonSetList, out *DaemonSetList, s conversion.Scope) error { +func autoconvert_experimental_DaemonSetList_To_v1beta1_DaemonSetList(in *experimental.DaemonSetList, out *DaemonSetList, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.DaemonSetList))(in) } @@ -2251,7 +2251,7 @@ func autoconvert_experimental_DaemonSetList_To_v1alpha1_DaemonSetList(in *experi if in.Items != nil { out.Items = make([]DaemonSet, len(in.Items)) for i := range in.Items { - if err := convert_experimental_DaemonSet_To_v1alpha1_DaemonSet(&in.Items[i], &out.Items[i], s); err != nil { + if err := convert_experimental_DaemonSet_To_v1beta1_DaemonSet(&in.Items[i], &out.Items[i], s); err != nil { return err } } @@ -2261,11 +2261,11 @@ func autoconvert_experimental_DaemonSetList_To_v1alpha1_DaemonSetList(in *experi return nil } -func convert_experimental_DaemonSetList_To_v1alpha1_DaemonSetList(in *experimental.DaemonSetList, out *DaemonSetList, s conversion.Scope) error { - return autoconvert_experimental_DaemonSetList_To_v1alpha1_DaemonSetList(in, out, s) +func convert_experimental_DaemonSetList_To_v1beta1_DaemonSetList(in *experimental.DaemonSetList, out *DaemonSetList, s conversion.Scope) error { + return autoconvert_experimental_DaemonSetList_To_v1beta1_DaemonSetList(in, out, s) } -func autoconvert_experimental_DaemonSetSpec_To_v1alpha1_DaemonSetSpec(in *experimental.DaemonSetSpec, out *DaemonSetSpec, s conversion.Scope) error { +func autoconvert_experimental_DaemonSetSpec_To_v1beta1_DaemonSetSpec(in *experimental.DaemonSetSpec, out *DaemonSetSpec, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.DaemonSetSpec))(in) } @@ -2288,11 +2288,11 @@ func autoconvert_experimental_DaemonSetSpec_To_v1alpha1_DaemonSetSpec(in *experi return nil } -func convert_experimental_DaemonSetSpec_To_v1alpha1_DaemonSetSpec(in *experimental.DaemonSetSpec, out *DaemonSetSpec, s conversion.Scope) error { - return autoconvert_experimental_DaemonSetSpec_To_v1alpha1_DaemonSetSpec(in, out, s) +func convert_experimental_DaemonSetSpec_To_v1beta1_DaemonSetSpec(in *experimental.DaemonSetSpec, out *DaemonSetSpec, s conversion.Scope) error { + return autoconvert_experimental_DaemonSetSpec_To_v1beta1_DaemonSetSpec(in, out, s) } -func autoconvert_experimental_DaemonSetStatus_To_v1alpha1_DaemonSetStatus(in *experimental.DaemonSetStatus, out *DaemonSetStatus, s conversion.Scope) error { +func autoconvert_experimental_DaemonSetStatus_To_v1beta1_DaemonSetStatus(in *experimental.DaemonSetStatus, out *DaemonSetStatus, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.DaemonSetStatus))(in) } @@ -2302,11 +2302,11 @@ func autoconvert_experimental_DaemonSetStatus_To_v1alpha1_DaemonSetStatus(in *ex return nil } -func convert_experimental_DaemonSetStatus_To_v1alpha1_DaemonSetStatus(in *experimental.DaemonSetStatus, out *DaemonSetStatus, s conversion.Scope) error { - return autoconvert_experimental_DaemonSetStatus_To_v1alpha1_DaemonSetStatus(in, out, s) +func convert_experimental_DaemonSetStatus_To_v1beta1_DaemonSetStatus(in *experimental.DaemonSetStatus, out *DaemonSetStatus, s conversion.Scope) error { + return autoconvert_experimental_DaemonSetStatus_To_v1beta1_DaemonSetStatus(in, out, s) } -func autoconvert_experimental_Deployment_To_v1alpha1_Deployment(in *experimental.Deployment, out *Deployment, s conversion.Scope) error { +func autoconvert_experimental_Deployment_To_v1beta1_Deployment(in *experimental.Deployment, out *Deployment, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.Deployment))(in) } @@ -2316,20 +2316,20 @@ func autoconvert_experimental_Deployment_To_v1alpha1_Deployment(in *experimental if err := convert_api_ObjectMeta_To_v1_ObjectMeta(&in.ObjectMeta, &out.ObjectMeta, s); err != nil { return err } - if err := convert_experimental_DeploymentSpec_To_v1alpha1_DeploymentSpec(&in.Spec, &out.Spec, s); err != nil { + if err := convert_experimental_DeploymentSpec_To_v1beta1_DeploymentSpec(&in.Spec, &out.Spec, s); err != nil { return err } - if err := convert_experimental_DeploymentStatus_To_v1alpha1_DeploymentStatus(&in.Status, &out.Status, s); err != nil { + if err := convert_experimental_DeploymentStatus_To_v1beta1_DeploymentStatus(&in.Status, &out.Status, s); err != nil { return err } return nil } -func convert_experimental_Deployment_To_v1alpha1_Deployment(in *experimental.Deployment, out *Deployment, s conversion.Scope) error { - return autoconvert_experimental_Deployment_To_v1alpha1_Deployment(in, out, s) +func convert_experimental_Deployment_To_v1beta1_Deployment(in *experimental.Deployment, out *Deployment, s conversion.Scope) error { + return autoconvert_experimental_Deployment_To_v1beta1_Deployment(in, out, s) } -func autoconvert_experimental_DeploymentList_To_v1alpha1_DeploymentList(in *experimental.DeploymentList, out *DeploymentList, s conversion.Scope) error { +func autoconvert_experimental_DeploymentList_To_v1beta1_DeploymentList(in *experimental.DeploymentList, out *DeploymentList, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.DeploymentList))(in) } @@ -2342,7 +2342,7 @@ func autoconvert_experimental_DeploymentList_To_v1alpha1_DeploymentList(in *expe if in.Items != nil { out.Items = make([]Deployment, len(in.Items)) for i := range in.Items { - if err := convert_experimental_Deployment_To_v1alpha1_Deployment(&in.Items[i], &out.Items[i], s); err != nil { + if err := convert_experimental_Deployment_To_v1beta1_Deployment(&in.Items[i], &out.Items[i], s); err != nil { return err } } @@ -2352,11 +2352,11 @@ func autoconvert_experimental_DeploymentList_To_v1alpha1_DeploymentList(in *expe return nil } -func convert_experimental_DeploymentList_To_v1alpha1_DeploymentList(in *experimental.DeploymentList, out *DeploymentList, s conversion.Scope) error { - return autoconvert_experimental_DeploymentList_To_v1alpha1_DeploymentList(in, out, s) +func convert_experimental_DeploymentList_To_v1beta1_DeploymentList(in *experimental.DeploymentList, out *DeploymentList, s conversion.Scope) error { + return autoconvert_experimental_DeploymentList_To_v1beta1_DeploymentList(in, out, s) } -func autoconvert_experimental_DeploymentSpec_To_v1alpha1_DeploymentSpec(in *experimental.DeploymentSpec, out *DeploymentSpec, s conversion.Scope) error { +func autoconvert_experimental_DeploymentSpec_To_v1beta1_DeploymentSpec(in *experimental.DeploymentSpec, out *DeploymentSpec, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.DeploymentSpec))(in) } @@ -2379,7 +2379,7 @@ func autoconvert_experimental_DeploymentSpec_To_v1alpha1_DeploymentSpec(in *expe } else { out.Template = nil } - if err := convert_experimental_DeploymentStrategy_To_v1alpha1_DeploymentStrategy(&in.Strategy, &out.Strategy, s); err != nil { + if err := convert_experimental_DeploymentStrategy_To_v1beta1_DeploymentStrategy(&in.Strategy, &out.Strategy, s); err != nil { return err } if err := s.Convert(&in.UniqueLabelKey, &out.UniqueLabelKey, 0); err != nil { @@ -2388,7 +2388,7 @@ func autoconvert_experimental_DeploymentSpec_To_v1alpha1_DeploymentSpec(in *expe return nil } -func autoconvert_experimental_DeploymentStatus_To_v1alpha1_DeploymentStatus(in *experimental.DeploymentStatus, out *DeploymentStatus, s conversion.Scope) error { +func autoconvert_experimental_DeploymentStatus_To_v1beta1_DeploymentStatus(in *experimental.DeploymentStatus, out *DeploymentStatus, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.DeploymentStatus))(in) } @@ -2397,18 +2397,18 @@ func autoconvert_experimental_DeploymentStatus_To_v1alpha1_DeploymentStatus(in * return nil } -func convert_experimental_DeploymentStatus_To_v1alpha1_DeploymentStatus(in *experimental.DeploymentStatus, out *DeploymentStatus, s conversion.Scope) error { - return autoconvert_experimental_DeploymentStatus_To_v1alpha1_DeploymentStatus(in, out, s) +func convert_experimental_DeploymentStatus_To_v1beta1_DeploymentStatus(in *experimental.DeploymentStatus, out *DeploymentStatus, s conversion.Scope) error { + return autoconvert_experimental_DeploymentStatus_To_v1beta1_DeploymentStatus(in, out, s) } -func autoconvert_experimental_DeploymentStrategy_To_v1alpha1_DeploymentStrategy(in *experimental.DeploymentStrategy, out *DeploymentStrategy, s conversion.Scope) error { +func autoconvert_experimental_DeploymentStrategy_To_v1beta1_DeploymentStrategy(in *experimental.DeploymentStrategy, out *DeploymentStrategy, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.DeploymentStrategy))(in) } out.Type = DeploymentStrategyType(in.Type) if in.RollingUpdate != nil { out.RollingUpdate = new(RollingUpdateDeployment) - if err := convert_experimental_RollingUpdateDeployment_To_v1alpha1_RollingUpdateDeployment(in.RollingUpdate, out.RollingUpdate, s); err != nil { + if err := convert_experimental_RollingUpdateDeployment_To_v1beta1_RollingUpdateDeployment(in.RollingUpdate, out.RollingUpdate, s); err != nil { return err } } else { @@ -2417,29 +2417,29 @@ func autoconvert_experimental_DeploymentStrategy_To_v1alpha1_DeploymentStrategy( return nil } -func autoconvert_experimental_HTTPIngressPath_To_v1alpha1_HTTPIngressPath(in *experimental.HTTPIngressPath, out *HTTPIngressPath, s conversion.Scope) error { +func autoconvert_experimental_HTTPIngressPath_To_v1beta1_HTTPIngressPath(in *experimental.HTTPIngressPath, out *HTTPIngressPath, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.HTTPIngressPath))(in) } out.Path = in.Path - if err := convert_experimental_IngressBackend_To_v1alpha1_IngressBackend(&in.Backend, &out.Backend, s); err != nil { + if err := convert_experimental_IngressBackend_To_v1beta1_IngressBackend(&in.Backend, &out.Backend, s); err != nil { return err } return nil } -func convert_experimental_HTTPIngressPath_To_v1alpha1_HTTPIngressPath(in *experimental.HTTPIngressPath, out *HTTPIngressPath, s conversion.Scope) error { - return autoconvert_experimental_HTTPIngressPath_To_v1alpha1_HTTPIngressPath(in, out, s) +func convert_experimental_HTTPIngressPath_To_v1beta1_HTTPIngressPath(in *experimental.HTTPIngressPath, out *HTTPIngressPath, s conversion.Scope) error { + return autoconvert_experimental_HTTPIngressPath_To_v1beta1_HTTPIngressPath(in, out, s) } -func autoconvert_experimental_HTTPIngressRuleValue_To_v1alpha1_HTTPIngressRuleValue(in *experimental.HTTPIngressRuleValue, out *HTTPIngressRuleValue, s conversion.Scope) error { +func autoconvert_experimental_HTTPIngressRuleValue_To_v1beta1_HTTPIngressRuleValue(in *experimental.HTTPIngressRuleValue, out *HTTPIngressRuleValue, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.HTTPIngressRuleValue))(in) } if in.Paths != nil { out.Paths = make([]HTTPIngressPath, len(in.Paths)) for i := range in.Paths { - if err := convert_experimental_HTTPIngressPath_To_v1alpha1_HTTPIngressPath(&in.Paths[i], &out.Paths[i], s); err != nil { + if err := convert_experimental_HTTPIngressPath_To_v1beta1_HTTPIngressPath(&in.Paths[i], &out.Paths[i], s); err != nil { return err } } @@ -2449,11 +2449,11 @@ func autoconvert_experimental_HTTPIngressRuleValue_To_v1alpha1_HTTPIngressRuleVa return nil } -func convert_experimental_HTTPIngressRuleValue_To_v1alpha1_HTTPIngressRuleValue(in *experimental.HTTPIngressRuleValue, out *HTTPIngressRuleValue, s conversion.Scope) error { - return autoconvert_experimental_HTTPIngressRuleValue_To_v1alpha1_HTTPIngressRuleValue(in, out, s) +func convert_experimental_HTTPIngressRuleValue_To_v1beta1_HTTPIngressRuleValue(in *experimental.HTTPIngressRuleValue, out *HTTPIngressRuleValue, s conversion.Scope) error { + return autoconvert_experimental_HTTPIngressRuleValue_To_v1beta1_HTTPIngressRuleValue(in, out, s) } -func autoconvert_experimental_HorizontalPodAutoscaler_To_v1alpha1_HorizontalPodAutoscaler(in *experimental.HorizontalPodAutoscaler, out *HorizontalPodAutoscaler, s conversion.Scope) error { +func autoconvert_experimental_HorizontalPodAutoscaler_To_v1beta1_HorizontalPodAutoscaler(in *experimental.HorizontalPodAutoscaler, out *HorizontalPodAutoscaler, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.HorizontalPodAutoscaler))(in) } @@ -2463,20 +2463,20 @@ func autoconvert_experimental_HorizontalPodAutoscaler_To_v1alpha1_HorizontalPodA if err := convert_api_ObjectMeta_To_v1_ObjectMeta(&in.ObjectMeta, &out.ObjectMeta, s); err != nil { return err } - if err := convert_experimental_HorizontalPodAutoscalerSpec_To_v1alpha1_HorizontalPodAutoscalerSpec(&in.Spec, &out.Spec, s); err != nil { + if err := convert_experimental_HorizontalPodAutoscalerSpec_To_v1beta1_HorizontalPodAutoscalerSpec(&in.Spec, &out.Spec, s); err != nil { return err } - if err := convert_experimental_HorizontalPodAutoscalerStatus_To_v1alpha1_HorizontalPodAutoscalerStatus(&in.Status, &out.Status, s); err != nil { + if err := convert_experimental_HorizontalPodAutoscalerStatus_To_v1beta1_HorizontalPodAutoscalerStatus(&in.Status, &out.Status, s); err != nil { return err } return nil } -func convert_experimental_HorizontalPodAutoscaler_To_v1alpha1_HorizontalPodAutoscaler(in *experimental.HorizontalPodAutoscaler, out *HorizontalPodAutoscaler, s conversion.Scope) error { - return autoconvert_experimental_HorizontalPodAutoscaler_To_v1alpha1_HorizontalPodAutoscaler(in, out, s) +func convert_experimental_HorizontalPodAutoscaler_To_v1beta1_HorizontalPodAutoscaler(in *experimental.HorizontalPodAutoscaler, out *HorizontalPodAutoscaler, s conversion.Scope) error { + return autoconvert_experimental_HorizontalPodAutoscaler_To_v1beta1_HorizontalPodAutoscaler(in, out, s) } -func autoconvert_experimental_HorizontalPodAutoscalerList_To_v1alpha1_HorizontalPodAutoscalerList(in *experimental.HorizontalPodAutoscalerList, out *HorizontalPodAutoscalerList, s conversion.Scope) error { +func autoconvert_experimental_HorizontalPodAutoscalerList_To_v1beta1_HorizontalPodAutoscalerList(in *experimental.HorizontalPodAutoscalerList, out *HorizontalPodAutoscalerList, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.HorizontalPodAutoscalerList))(in) } @@ -2489,7 +2489,7 @@ func autoconvert_experimental_HorizontalPodAutoscalerList_To_v1alpha1_Horizontal if in.Items != nil { out.Items = make([]HorizontalPodAutoscaler, len(in.Items)) for i := range in.Items { - if err := convert_experimental_HorizontalPodAutoscaler_To_v1alpha1_HorizontalPodAutoscaler(&in.Items[i], &out.Items[i], s); err != nil { + if err := convert_experimental_HorizontalPodAutoscaler_To_v1beta1_HorizontalPodAutoscaler(&in.Items[i], &out.Items[i], s); err != nil { return err } } @@ -2499,17 +2499,17 @@ func autoconvert_experimental_HorizontalPodAutoscalerList_To_v1alpha1_Horizontal return nil } -func convert_experimental_HorizontalPodAutoscalerList_To_v1alpha1_HorizontalPodAutoscalerList(in *experimental.HorizontalPodAutoscalerList, out *HorizontalPodAutoscalerList, s conversion.Scope) error { - return autoconvert_experimental_HorizontalPodAutoscalerList_To_v1alpha1_HorizontalPodAutoscalerList(in, out, s) +func convert_experimental_HorizontalPodAutoscalerList_To_v1beta1_HorizontalPodAutoscalerList(in *experimental.HorizontalPodAutoscalerList, out *HorizontalPodAutoscalerList, s conversion.Scope) error { + return autoconvert_experimental_HorizontalPodAutoscalerList_To_v1beta1_HorizontalPodAutoscalerList(in, out, s) } -func autoconvert_experimental_HorizontalPodAutoscalerSpec_To_v1alpha1_HorizontalPodAutoscalerSpec(in *experimental.HorizontalPodAutoscalerSpec, out *HorizontalPodAutoscalerSpec, s conversion.Scope) error { +func autoconvert_experimental_HorizontalPodAutoscalerSpec_To_v1beta1_HorizontalPodAutoscalerSpec(in *experimental.HorizontalPodAutoscalerSpec, out *HorizontalPodAutoscalerSpec, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.HorizontalPodAutoscalerSpec))(in) } if in.ScaleRef != nil { out.ScaleRef = new(SubresourceReference) - if err := convert_experimental_SubresourceReference_To_v1alpha1_SubresourceReference(in.ScaleRef, out.ScaleRef, s); err != nil { + if err := convert_experimental_SubresourceReference_To_v1beta1_SubresourceReference(in.ScaleRef, out.ScaleRef, s); err != nil { return err } } else { @@ -2517,17 +2517,17 @@ func autoconvert_experimental_HorizontalPodAutoscalerSpec_To_v1alpha1_Horizontal } out.MinReplicas = in.MinReplicas out.MaxReplicas = in.MaxReplicas - if err := convert_experimental_ResourceConsumption_To_v1alpha1_ResourceConsumption(&in.Target, &out.Target, s); err != nil { + if err := convert_experimental_ResourceConsumption_To_v1beta1_ResourceConsumption(&in.Target, &out.Target, s); err != nil { return err } return nil } -func convert_experimental_HorizontalPodAutoscalerSpec_To_v1alpha1_HorizontalPodAutoscalerSpec(in *experimental.HorizontalPodAutoscalerSpec, out *HorizontalPodAutoscalerSpec, s conversion.Scope) error { - return autoconvert_experimental_HorizontalPodAutoscalerSpec_To_v1alpha1_HorizontalPodAutoscalerSpec(in, out, s) +func convert_experimental_HorizontalPodAutoscalerSpec_To_v1beta1_HorizontalPodAutoscalerSpec(in *experimental.HorizontalPodAutoscalerSpec, out *HorizontalPodAutoscalerSpec, s conversion.Scope) error { + return autoconvert_experimental_HorizontalPodAutoscalerSpec_To_v1beta1_HorizontalPodAutoscalerSpec(in, out, s) } -func autoconvert_experimental_HorizontalPodAutoscalerStatus_To_v1alpha1_HorizontalPodAutoscalerStatus(in *experimental.HorizontalPodAutoscalerStatus, out *HorizontalPodAutoscalerStatus, s conversion.Scope) error { +func autoconvert_experimental_HorizontalPodAutoscalerStatus_To_v1beta1_HorizontalPodAutoscalerStatus(in *experimental.HorizontalPodAutoscalerStatus, out *HorizontalPodAutoscalerStatus, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.HorizontalPodAutoscalerStatus))(in) } @@ -2535,7 +2535,7 @@ func autoconvert_experimental_HorizontalPodAutoscalerStatus_To_v1alpha1_Horizont out.DesiredReplicas = in.DesiredReplicas if in.CurrentConsumption != nil { out.CurrentConsumption = new(ResourceConsumption) - if err := convert_experimental_ResourceConsumption_To_v1alpha1_ResourceConsumption(in.CurrentConsumption, out.CurrentConsumption, s); err != nil { + if err := convert_experimental_ResourceConsumption_To_v1beta1_ResourceConsumption(in.CurrentConsumption, out.CurrentConsumption, s); err != nil { return err } } else { @@ -2551,11 +2551,11 @@ func autoconvert_experimental_HorizontalPodAutoscalerStatus_To_v1alpha1_Horizont return nil } -func convert_experimental_HorizontalPodAutoscalerStatus_To_v1alpha1_HorizontalPodAutoscalerStatus(in *experimental.HorizontalPodAutoscalerStatus, out *HorizontalPodAutoscalerStatus, s conversion.Scope) error { - return autoconvert_experimental_HorizontalPodAutoscalerStatus_To_v1alpha1_HorizontalPodAutoscalerStatus(in, out, s) +func convert_experimental_HorizontalPodAutoscalerStatus_To_v1beta1_HorizontalPodAutoscalerStatus(in *experimental.HorizontalPodAutoscalerStatus, out *HorizontalPodAutoscalerStatus, s conversion.Scope) error { + return autoconvert_experimental_HorizontalPodAutoscalerStatus_To_v1beta1_HorizontalPodAutoscalerStatus(in, out, s) } -func autoconvert_experimental_Ingress_To_v1alpha1_Ingress(in *experimental.Ingress, out *Ingress, s conversion.Scope) error { +func autoconvert_experimental_Ingress_To_v1beta1_Ingress(in *experimental.Ingress, out *Ingress, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.Ingress))(in) } @@ -2565,20 +2565,20 @@ func autoconvert_experimental_Ingress_To_v1alpha1_Ingress(in *experimental.Ingre if err := convert_api_ObjectMeta_To_v1_ObjectMeta(&in.ObjectMeta, &out.ObjectMeta, s); err != nil { return err } - if err := convert_experimental_IngressSpec_To_v1alpha1_IngressSpec(&in.Spec, &out.Spec, s); err != nil { + if err := convert_experimental_IngressSpec_To_v1beta1_IngressSpec(&in.Spec, &out.Spec, s); err != nil { return err } - if err := convert_experimental_IngressStatus_To_v1alpha1_IngressStatus(&in.Status, &out.Status, s); err != nil { + if err := convert_experimental_IngressStatus_To_v1beta1_IngressStatus(&in.Status, &out.Status, s); err != nil { return err } return nil } -func convert_experimental_Ingress_To_v1alpha1_Ingress(in *experimental.Ingress, out *Ingress, s conversion.Scope) error { - return autoconvert_experimental_Ingress_To_v1alpha1_Ingress(in, out, s) +func convert_experimental_Ingress_To_v1beta1_Ingress(in *experimental.Ingress, out *Ingress, s conversion.Scope) error { + return autoconvert_experimental_Ingress_To_v1beta1_Ingress(in, out, s) } -func autoconvert_experimental_IngressBackend_To_v1alpha1_IngressBackend(in *experimental.IngressBackend, out *IngressBackend, s conversion.Scope) error { +func autoconvert_experimental_IngressBackend_To_v1beta1_IngressBackend(in *experimental.IngressBackend, out *IngressBackend, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.IngressBackend))(in) } @@ -2589,11 +2589,11 @@ func autoconvert_experimental_IngressBackend_To_v1alpha1_IngressBackend(in *expe return nil } -func convert_experimental_IngressBackend_To_v1alpha1_IngressBackend(in *experimental.IngressBackend, out *IngressBackend, s conversion.Scope) error { - return autoconvert_experimental_IngressBackend_To_v1alpha1_IngressBackend(in, out, s) +func convert_experimental_IngressBackend_To_v1beta1_IngressBackend(in *experimental.IngressBackend, out *IngressBackend, s conversion.Scope) error { + return autoconvert_experimental_IngressBackend_To_v1beta1_IngressBackend(in, out, s) } -func autoconvert_experimental_IngressList_To_v1alpha1_IngressList(in *experimental.IngressList, out *IngressList, s conversion.Scope) error { +func autoconvert_experimental_IngressList_To_v1beta1_IngressList(in *experimental.IngressList, out *IngressList, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.IngressList))(in) } @@ -2606,7 +2606,7 @@ func autoconvert_experimental_IngressList_To_v1alpha1_IngressList(in *experiment if in.Items != nil { out.Items = make([]Ingress, len(in.Items)) for i := range in.Items { - if err := convert_experimental_Ingress_To_v1alpha1_Ingress(&in.Items[i], &out.Items[i], s); err != nil { + if err := convert_experimental_Ingress_To_v1beta1_Ingress(&in.Items[i], &out.Items[i], s); err != nil { return err } } @@ -2616,32 +2616,32 @@ func autoconvert_experimental_IngressList_To_v1alpha1_IngressList(in *experiment return nil } -func convert_experimental_IngressList_To_v1alpha1_IngressList(in *experimental.IngressList, out *IngressList, s conversion.Scope) error { - return autoconvert_experimental_IngressList_To_v1alpha1_IngressList(in, out, s) +func convert_experimental_IngressList_To_v1beta1_IngressList(in *experimental.IngressList, out *IngressList, s conversion.Scope) error { + return autoconvert_experimental_IngressList_To_v1beta1_IngressList(in, out, s) } -func autoconvert_experimental_IngressRule_To_v1alpha1_IngressRule(in *experimental.IngressRule, out *IngressRule, s conversion.Scope) error { +func autoconvert_experimental_IngressRule_To_v1beta1_IngressRule(in *experimental.IngressRule, out *IngressRule, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.IngressRule))(in) } out.Host = in.Host - if err := convert_experimental_IngressRuleValue_To_v1alpha1_IngressRuleValue(&in.IngressRuleValue, &out.IngressRuleValue, s); err != nil { + if err := convert_experimental_IngressRuleValue_To_v1beta1_IngressRuleValue(&in.IngressRuleValue, &out.IngressRuleValue, s); err != nil { return err } return nil } -func convert_experimental_IngressRule_To_v1alpha1_IngressRule(in *experimental.IngressRule, out *IngressRule, s conversion.Scope) error { - return autoconvert_experimental_IngressRule_To_v1alpha1_IngressRule(in, out, s) +func convert_experimental_IngressRule_To_v1beta1_IngressRule(in *experimental.IngressRule, out *IngressRule, s conversion.Scope) error { + return autoconvert_experimental_IngressRule_To_v1beta1_IngressRule(in, out, s) } -func autoconvert_experimental_IngressRuleValue_To_v1alpha1_IngressRuleValue(in *experimental.IngressRuleValue, out *IngressRuleValue, s conversion.Scope) error { +func autoconvert_experimental_IngressRuleValue_To_v1beta1_IngressRuleValue(in *experimental.IngressRuleValue, out *IngressRuleValue, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.IngressRuleValue))(in) } if in.HTTP != nil { out.HTTP = new(HTTPIngressRuleValue) - if err := convert_experimental_HTTPIngressRuleValue_To_v1alpha1_HTTPIngressRuleValue(in.HTTP, out.HTTP, s); err != nil { + if err := convert_experimental_HTTPIngressRuleValue_To_v1beta1_HTTPIngressRuleValue(in.HTTP, out.HTTP, s); err != nil { return err } } else { @@ -2650,17 +2650,17 @@ func autoconvert_experimental_IngressRuleValue_To_v1alpha1_IngressRuleValue(in * return nil } -func convert_experimental_IngressRuleValue_To_v1alpha1_IngressRuleValue(in *experimental.IngressRuleValue, out *IngressRuleValue, s conversion.Scope) error { - return autoconvert_experimental_IngressRuleValue_To_v1alpha1_IngressRuleValue(in, out, s) +func convert_experimental_IngressRuleValue_To_v1beta1_IngressRuleValue(in *experimental.IngressRuleValue, out *IngressRuleValue, s conversion.Scope) error { + return autoconvert_experimental_IngressRuleValue_To_v1beta1_IngressRuleValue(in, out, s) } -func autoconvert_experimental_IngressSpec_To_v1alpha1_IngressSpec(in *experimental.IngressSpec, out *IngressSpec, s conversion.Scope) error { +func autoconvert_experimental_IngressSpec_To_v1beta1_IngressSpec(in *experimental.IngressSpec, out *IngressSpec, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.IngressSpec))(in) } if in.Backend != nil { out.Backend = new(IngressBackend) - if err := convert_experimental_IngressBackend_To_v1alpha1_IngressBackend(in.Backend, out.Backend, s); err != nil { + if err := convert_experimental_IngressBackend_To_v1beta1_IngressBackend(in.Backend, out.Backend, s); err != nil { return err } } else { @@ -2669,7 +2669,7 @@ func autoconvert_experimental_IngressSpec_To_v1alpha1_IngressSpec(in *experiment if in.Rules != nil { out.Rules = make([]IngressRule, len(in.Rules)) for i := range in.Rules { - if err := convert_experimental_IngressRule_To_v1alpha1_IngressRule(&in.Rules[i], &out.Rules[i], s); err != nil { + if err := convert_experimental_IngressRule_To_v1beta1_IngressRule(&in.Rules[i], &out.Rules[i], s); err != nil { return err } } @@ -2679,11 +2679,11 @@ func autoconvert_experimental_IngressSpec_To_v1alpha1_IngressSpec(in *experiment return nil } -func convert_experimental_IngressSpec_To_v1alpha1_IngressSpec(in *experimental.IngressSpec, out *IngressSpec, s conversion.Scope) error { - return autoconvert_experimental_IngressSpec_To_v1alpha1_IngressSpec(in, out, s) +func convert_experimental_IngressSpec_To_v1beta1_IngressSpec(in *experimental.IngressSpec, out *IngressSpec, s conversion.Scope) error { + return autoconvert_experimental_IngressSpec_To_v1beta1_IngressSpec(in, out, s) } -func autoconvert_experimental_IngressStatus_To_v1alpha1_IngressStatus(in *experimental.IngressStatus, out *IngressStatus, s conversion.Scope) error { +func autoconvert_experimental_IngressStatus_To_v1beta1_IngressStatus(in *experimental.IngressStatus, out *IngressStatus, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.IngressStatus))(in) } @@ -2693,11 +2693,11 @@ func autoconvert_experimental_IngressStatus_To_v1alpha1_IngressStatus(in *experi return nil } -func convert_experimental_IngressStatus_To_v1alpha1_IngressStatus(in *experimental.IngressStatus, out *IngressStatus, s conversion.Scope) error { - return autoconvert_experimental_IngressStatus_To_v1alpha1_IngressStatus(in, out, s) +func convert_experimental_IngressStatus_To_v1beta1_IngressStatus(in *experimental.IngressStatus, out *IngressStatus, s conversion.Scope) error { + return autoconvert_experimental_IngressStatus_To_v1beta1_IngressStatus(in, out, s) } -func autoconvert_experimental_Job_To_v1alpha1_Job(in *experimental.Job, out *Job, s conversion.Scope) error { +func autoconvert_experimental_Job_To_v1beta1_Job(in *experimental.Job, out *Job, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.Job))(in) } @@ -2707,20 +2707,20 @@ func autoconvert_experimental_Job_To_v1alpha1_Job(in *experimental.Job, out *Job if err := convert_api_ObjectMeta_To_v1_ObjectMeta(&in.ObjectMeta, &out.ObjectMeta, s); err != nil { return err } - if err := convert_experimental_JobSpec_To_v1alpha1_JobSpec(&in.Spec, &out.Spec, s); err != nil { + if err := convert_experimental_JobSpec_To_v1beta1_JobSpec(&in.Spec, &out.Spec, s); err != nil { return err } - if err := convert_experimental_JobStatus_To_v1alpha1_JobStatus(&in.Status, &out.Status, s); err != nil { + if err := convert_experimental_JobStatus_To_v1beta1_JobStatus(&in.Status, &out.Status, s); err != nil { return err } return nil } -func convert_experimental_Job_To_v1alpha1_Job(in *experimental.Job, out *Job, s conversion.Scope) error { - return autoconvert_experimental_Job_To_v1alpha1_Job(in, out, s) +func convert_experimental_Job_To_v1beta1_Job(in *experimental.Job, out *Job, s conversion.Scope) error { + return autoconvert_experimental_Job_To_v1beta1_Job(in, out, s) } -func autoconvert_experimental_JobCondition_To_v1alpha1_JobCondition(in *experimental.JobCondition, out *JobCondition, s conversion.Scope) error { +func autoconvert_experimental_JobCondition_To_v1beta1_JobCondition(in *experimental.JobCondition, out *JobCondition, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.JobCondition))(in) } @@ -2737,11 +2737,11 @@ func autoconvert_experimental_JobCondition_To_v1alpha1_JobCondition(in *experime return nil } -func convert_experimental_JobCondition_To_v1alpha1_JobCondition(in *experimental.JobCondition, out *JobCondition, s conversion.Scope) error { - return autoconvert_experimental_JobCondition_To_v1alpha1_JobCondition(in, out, s) +func convert_experimental_JobCondition_To_v1beta1_JobCondition(in *experimental.JobCondition, out *JobCondition, s conversion.Scope) error { + return autoconvert_experimental_JobCondition_To_v1beta1_JobCondition(in, out, s) } -func autoconvert_experimental_JobList_To_v1alpha1_JobList(in *experimental.JobList, out *JobList, s conversion.Scope) error { +func autoconvert_experimental_JobList_To_v1beta1_JobList(in *experimental.JobList, out *JobList, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.JobList))(in) } @@ -2754,7 +2754,7 @@ func autoconvert_experimental_JobList_To_v1alpha1_JobList(in *experimental.JobLi if in.Items != nil { out.Items = make([]Job, len(in.Items)) for i := range in.Items { - if err := convert_experimental_Job_To_v1alpha1_Job(&in.Items[i], &out.Items[i], s); err != nil { + if err := convert_experimental_Job_To_v1beta1_Job(&in.Items[i], &out.Items[i], s); err != nil { return err } } @@ -2764,11 +2764,11 @@ func autoconvert_experimental_JobList_To_v1alpha1_JobList(in *experimental.JobLi return nil } -func convert_experimental_JobList_To_v1alpha1_JobList(in *experimental.JobList, out *JobList, s conversion.Scope) error { - return autoconvert_experimental_JobList_To_v1alpha1_JobList(in, out, s) +func convert_experimental_JobList_To_v1beta1_JobList(in *experimental.JobList, out *JobList, s conversion.Scope) error { + return autoconvert_experimental_JobList_To_v1beta1_JobList(in, out, s) } -func autoconvert_experimental_JobSpec_To_v1alpha1_JobSpec(in *experimental.JobSpec, out *JobSpec, s conversion.Scope) error { +func autoconvert_experimental_JobSpec_To_v1beta1_JobSpec(in *experimental.JobSpec, out *JobSpec, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.JobSpec))(in) } @@ -2803,18 +2803,18 @@ func autoconvert_experimental_JobSpec_To_v1alpha1_JobSpec(in *experimental.JobSp return nil } -func convert_experimental_JobSpec_To_v1alpha1_JobSpec(in *experimental.JobSpec, out *JobSpec, s conversion.Scope) error { - return autoconvert_experimental_JobSpec_To_v1alpha1_JobSpec(in, out, s) +func convert_experimental_JobSpec_To_v1beta1_JobSpec(in *experimental.JobSpec, out *JobSpec, s conversion.Scope) error { + return autoconvert_experimental_JobSpec_To_v1beta1_JobSpec(in, out, s) } -func autoconvert_experimental_JobStatus_To_v1alpha1_JobStatus(in *experimental.JobStatus, out *JobStatus, s conversion.Scope) error { +func autoconvert_experimental_JobStatus_To_v1beta1_JobStatus(in *experimental.JobStatus, out *JobStatus, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.JobStatus))(in) } if in.Conditions != nil { out.Conditions = make([]JobCondition, len(in.Conditions)) for i := range in.Conditions { - if err := convert_experimental_JobCondition_To_v1alpha1_JobCondition(&in.Conditions[i], &out.Conditions[i], s); err != nil { + if err := convert_experimental_JobCondition_To_v1beta1_JobCondition(&in.Conditions[i], &out.Conditions[i], s); err != nil { return err } } @@ -2841,11 +2841,11 @@ func autoconvert_experimental_JobStatus_To_v1alpha1_JobStatus(in *experimental.J return nil } -func convert_experimental_JobStatus_To_v1alpha1_JobStatus(in *experimental.JobStatus, out *JobStatus, s conversion.Scope) error { - return autoconvert_experimental_JobStatus_To_v1alpha1_JobStatus(in, out, s) +func convert_experimental_JobStatus_To_v1beta1_JobStatus(in *experimental.JobStatus, out *JobStatus, s conversion.Scope) error { + return autoconvert_experimental_JobStatus_To_v1beta1_JobStatus(in, out, s) } -func autoconvert_experimental_NodeUtilization_To_v1alpha1_NodeUtilization(in *experimental.NodeUtilization, out *NodeUtilization, s conversion.Scope) error { +func autoconvert_experimental_NodeUtilization_To_v1beta1_NodeUtilization(in *experimental.NodeUtilization, out *NodeUtilization, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.NodeUtilization))(in) } @@ -2854,11 +2854,11 @@ func autoconvert_experimental_NodeUtilization_To_v1alpha1_NodeUtilization(in *ex return nil } -func convert_experimental_NodeUtilization_To_v1alpha1_NodeUtilization(in *experimental.NodeUtilization, out *NodeUtilization, s conversion.Scope) error { - return autoconvert_experimental_NodeUtilization_To_v1alpha1_NodeUtilization(in, out, s) +func convert_experimental_NodeUtilization_To_v1beta1_NodeUtilization(in *experimental.NodeUtilization, out *NodeUtilization, s conversion.Scope) error { + return autoconvert_experimental_NodeUtilization_To_v1beta1_NodeUtilization(in, out, s) } -func autoconvert_experimental_ReplicationControllerDummy_To_v1alpha1_ReplicationControllerDummy(in *experimental.ReplicationControllerDummy, out *ReplicationControllerDummy, s conversion.Scope) error { +func autoconvert_experimental_ReplicationControllerDummy_To_v1beta1_ReplicationControllerDummy(in *experimental.ReplicationControllerDummy, out *ReplicationControllerDummy, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.ReplicationControllerDummy))(in) } @@ -2868,11 +2868,11 @@ func autoconvert_experimental_ReplicationControllerDummy_To_v1alpha1_Replication return nil } -func convert_experimental_ReplicationControllerDummy_To_v1alpha1_ReplicationControllerDummy(in *experimental.ReplicationControllerDummy, out *ReplicationControllerDummy, s conversion.Scope) error { - return autoconvert_experimental_ReplicationControllerDummy_To_v1alpha1_ReplicationControllerDummy(in, out, s) +func convert_experimental_ReplicationControllerDummy_To_v1beta1_ReplicationControllerDummy(in *experimental.ReplicationControllerDummy, out *ReplicationControllerDummy, s conversion.Scope) error { + return autoconvert_experimental_ReplicationControllerDummy_To_v1beta1_ReplicationControllerDummy(in, out, s) } -func autoconvert_experimental_ResourceConsumption_To_v1alpha1_ResourceConsumption(in *experimental.ResourceConsumption, out *ResourceConsumption, s conversion.Scope) error { +func autoconvert_experimental_ResourceConsumption_To_v1beta1_ResourceConsumption(in *experimental.ResourceConsumption, out *ResourceConsumption, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.ResourceConsumption))(in) } @@ -2883,11 +2883,11 @@ func autoconvert_experimental_ResourceConsumption_To_v1alpha1_ResourceConsumptio return nil } -func convert_experimental_ResourceConsumption_To_v1alpha1_ResourceConsumption(in *experimental.ResourceConsumption, out *ResourceConsumption, s conversion.Scope) error { - return autoconvert_experimental_ResourceConsumption_To_v1alpha1_ResourceConsumption(in, out, s) +func convert_experimental_ResourceConsumption_To_v1beta1_ResourceConsumption(in *experimental.ResourceConsumption, out *ResourceConsumption, s conversion.Scope) error { + return autoconvert_experimental_ResourceConsumption_To_v1beta1_ResourceConsumption(in, out, s) } -func autoconvert_experimental_RollingUpdateDeployment_To_v1alpha1_RollingUpdateDeployment(in *experimental.RollingUpdateDeployment, out *RollingUpdateDeployment, s conversion.Scope) error { +func autoconvert_experimental_RollingUpdateDeployment_To_v1beta1_RollingUpdateDeployment(in *experimental.RollingUpdateDeployment, out *RollingUpdateDeployment, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.RollingUpdateDeployment))(in) } @@ -2901,7 +2901,7 @@ func autoconvert_experimental_RollingUpdateDeployment_To_v1alpha1_RollingUpdateD return nil } -func autoconvert_experimental_Scale_To_v1alpha1_Scale(in *experimental.Scale, out *Scale, s conversion.Scope) error { +func autoconvert_experimental_Scale_To_v1beta1_Scale(in *experimental.Scale, out *Scale, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.Scale))(in) } @@ -2911,20 +2911,20 @@ func autoconvert_experimental_Scale_To_v1alpha1_Scale(in *experimental.Scale, ou if err := convert_api_ObjectMeta_To_v1_ObjectMeta(&in.ObjectMeta, &out.ObjectMeta, s); err != nil { return err } - if err := convert_experimental_ScaleSpec_To_v1alpha1_ScaleSpec(&in.Spec, &out.Spec, s); err != nil { + if err := convert_experimental_ScaleSpec_To_v1beta1_ScaleSpec(&in.Spec, &out.Spec, s); err != nil { return err } - if err := convert_experimental_ScaleStatus_To_v1alpha1_ScaleStatus(&in.Status, &out.Status, s); err != nil { + if err := convert_experimental_ScaleStatus_To_v1beta1_ScaleStatus(&in.Status, &out.Status, s); err != nil { return err } return nil } -func convert_experimental_Scale_To_v1alpha1_Scale(in *experimental.Scale, out *Scale, s conversion.Scope) error { - return autoconvert_experimental_Scale_To_v1alpha1_Scale(in, out, s) +func convert_experimental_Scale_To_v1beta1_Scale(in *experimental.Scale, out *Scale, s conversion.Scope) error { + return autoconvert_experimental_Scale_To_v1beta1_Scale(in, out, s) } -func autoconvert_experimental_ScaleSpec_To_v1alpha1_ScaleSpec(in *experimental.ScaleSpec, out *ScaleSpec, s conversion.Scope) error { +func autoconvert_experimental_ScaleSpec_To_v1beta1_ScaleSpec(in *experimental.ScaleSpec, out *ScaleSpec, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.ScaleSpec))(in) } @@ -2932,11 +2932,11 @@ func autoconvert_experimental_ScaleSpec_To_v1alpha1_ScaleSpec(in *experimental.S return nil } -func convert_experimental_ScaleSpec_To_v1alpha1_ScaleSpec(in *experimental.ScaleSpec, out *ScaleSpec, s conversion.Scope) error { - return autoconvert_experimental_ScaleSpec_To_v1alpha1_ScaleSpec(in, out, s) +func convert_experimental_ScaleSpec_To_v1beta1_ScaleSpec(in *experimental.ScaleSpec, out *ScaleSpec, s conversion.Scope) error { + return autoconvert_experimental_ScaleSpec_To_v1beta1_ScaleSpec(in, out, s) } -func autoconvert_experimental_ScaleStatus_To_v1alpha1_ScaleStatus(in *experimental.ScaleStatus, out *ScaleStatus, s conversion.Scope) error { +func autoconvert_experimental_ScaleStatus_To_v1beta1_ScaleStatus(in *experimental.ScaleStatus, out *ScaleStatus, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.ScaleStatus))(in) } @@ -2952,11 +2952,11 @@ func autoconvert_experimental_ScaleStatus_To_v1alpha1_ScaleStatus(in *experiment return nil } -func convert_experimental_ScaleStatus_To_v1alpha1_ScaleStatus(in *experimental.ScaleStatus, out *ScaleStatus, s conversion.Scope) error { - return autoconvert_experimental_ScaleStatus_To_v1alpha1_ScaleStatus(in, out, s) +func convert_experimental_ScaleStatus_To_v1beta1_ScaleStatus(in *experimental.ScaleStatus, out *ScaleStatus, s conversion.Scope) error { + return autoconvert_experimental_ScaleStatus_To_v1beta1_ScaleStatus(in, out, s) } -func autoconvert_experimental_SubresourceReference_To_v1alpha1_SubresourceReference(in *experimental.SubresourceReference, out *SubresourceReference, s conversion.Scope) error { +func autoconvert_experimental_SubresourceReference_To_v1beta1_SubresourceReference(in *experimental.SubresourceReference, out *SubresourceReference, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.SubresourceReference))(in) } @@ -2968,11 +2968,11 @@ func autoconvert_experimental_SubresourceReference_To_v1alpha1_SubresourceRefere return nil } -func convert_experimental_SubresourceReference_To_v1alpha1_SubresourceReference(in *experimental.SubresourceReference, out *SubresourceReference, s conversion.Scope) error { - return autoconvert_experimental_SubresourceReference_To_v1alpha1_SubresourceReference(in, out, s) +func convert_experimental_SubresourceReference_To_v1beta1_SubresourceReference(in *experimental.SubresourceReference, out *SubresourceReference, s conversion.Scope) error { + return autoconvert_experimental_SubresourceReference_To_v1beta1_SubresourceReference(in, out, s) } -func autoconvert_experimental_ThirdPartyResource_To_v1alpha1_ThirdPartyResource(in *experimental.ThirdPartyResource, out *ThirdPartyResource, s conversion.Scope) error { +func autoconvert_experimental_ThirdPartyResource_To_v1beta1_ThirdPartyResource(in *experimental.ThirdPartyResource, out *ThirdPartyResource, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.ThirdPartyResource))(in) } @@ -2986,7 +2986,7 @@ func autoconvert_experimental_ThirdPartyResource_To_v1alpha1_ThirdPartyResource( if in.Versions != nil { out.Versions = make([]APIVersion, len(in.Versions)) for i := range in.Versions { - if err := convert_experimental_APIVersion_To_v1alpha1_APIVersion(&in.Versions[i], &out.Versions[i], s); err != nil { + if err := convert_experimental_APIVersion_To_v1beta1_APIVersion(&in.Versions[i], &out.Versions[i], s); err != nil { return err } } @@ -2996,11 +2996,11 @@ func autoconvert_experimental_ThirdPartyResource_To_v1alpha1_ThirdPartyResource( return nil } -func convert_experimental_ThirdPartyResource_To_v1alpha1_ThirdPartyResource(in *experimental.ThirdPartyResource, out *ThirdPartyResource, s conversion.Scope) error { - return autoconvert_experimental_ThirdPartyResource_To_v1alpha1_ThirdPartyResource(in, out, s) +func convert_experimental_ThirdPartyResource_To_v1beta1_ThirdPartyResource(in *experimental.ThirdPartyResource, out *ThirdPartyResource, s conversion.Scope) error { + return autoconvert_experimental_ThirdPartyResource_To_v1beta1_ThirdPartyResource(in, out, s) } -func autoconvert_experimental_ThirdPartyResourceData_To_v1alpha1_ThirdPartyResourceData(in *experimental.ThirdPartyResourceData, out *ThirdPartyResourceData, s conversion.Scope) error { +func autoconvert_experimental_ThirdPartyResourceData_To_v1beta1_ThirdPartyResourceData(in *experimental.ThirdPartyResourceData, out *ThirdPartyResourceData, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.ThirdPartyResourceData))(in) } @@ -3016,11 +3016,11 @@ func autoconvert_experimental_ThirdPartyResourceData_To_v1alpha1_ThirdPartyResou return nil } -func convert_experimental_ThirdPartyResourceData_To_v1alpha1_ThirdPartyResourceData(in *experimental.ThirdPartyResourceData, out *ThirdPartyResourceData, s conversion.Scope) error { - return autoconvert_experimental_ThirdPartyResourceData_To_v1alpha1_ThirdPartyResourceData(in, out, s) +func convert_experimental_ThirdPartyResourceData_To_v1beta1_ThirdPartyResourceData(in *experimental.ThirdPartyResourceData, out *ThirdPartyResourceData, s conversion.Scope) error { + return autoconvert_experimental_ThirdPartyResourceData_To_v1beta1_ThirdPartyResourceData(in, out, s) } -func autoconvert_experimental_ThirdPartyResourceDataList_To_v1alpha1_ThirdPartyResourceDataList(in *experimental.ThirdPartyResourceDataList, out *ThirdPartyResourceDataList, s conversion.Scope) error { +func autoconvert_experimental_ThirdPartyResourceDataList_To_v1beta1_ThirdPartyResourceDataList(in *experimental.ThirdPartyResourceDataList, out *ThirdPartyResourceDataList, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.ThirdPartyResourceDataList))(in) } @@ -3033,7 +3033,7 @@ func autoconvert_experimental_ThirdPartyResourceDataList_To_v1alpha1_ThirdPartyR if in.Items != nil { out.Items = make([]ThirdPartyResourceData, len(in.Items)) for i := range in.Items { - if err := convert_experimental_ThirdPartyResourceData_To_v1alpha1_ThirdPartyResourceData(&in.Items[i], &out.Items[i], s); err != nil { + if err := convert_experimental_ThirdPartyResourceData_To_v1beta1_ThirdPartyResourceData(&in.Items[i], &out.Items[i], s); err != nil { return err } } @@ -3043,11 +3043,11 @@ func autoconvert_experimental_ThirdPartyResourceDataList_To_v1alpha1_ThirdPartyR return nil } -func convert_experimental_ThirdPartyResourceDataList_To_v1alpha1_ThirdPartyResourceDataList(in *experimental.ThirdPartyResourceDataList, out *ThirdPartyResourceDataList, s conversion.Scope) error { - return autoconvert_experimental_ThirdPartyResourceDataList_To_v1alpha1_ThirdPartyResourceDataList(in, out, s) +func convert_experimental_ThirdPartyResourceDataList_To_v1beta1_ThirdPartyResourceDataList(in *experimental.ThirdPartyResourceDataList, out *ThirdPartyResourceDataList, s conversion.Scope) error { + return autoconvert_experimental_ThirdPartyResourceDataList_To_v1beta1_ThirdPartyResourceDataList(in, out, s) } -func autoconvert_experimental_ThirdPartyResourceList_To_v1alpha1_ThirdPartyResourceList(in *experimental.ThirdPartyResourceList, out *ThirdPartyResourceList, s conversion.Scope) error { +func autoconvert_experimental_ThirdPartyResourceList_To_v1beta1_ThirdPartyResourceList(in *experimental.ThirdPartyResourceList, out *ThirdPartyResourceList, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*experimental.ThirdPartyResourceList))(in) } @@ -3060,7 +3060,7 @@ func autoconvert_experimental_ThirdPartyResourceList_To_v1alpha1_ThirdPartyResou if in.Items != nil { out.Items = make([]ThirdPartyResource, len(in.Items)) for i := range in.Items { - if err := convert_experimental_ThirdPartyResource_To_v1alpha1_ThirdPartyResource(&in.Items[i], &out.Items[i], s); err != nil { + if err := convert_experimental_ThirdPartyResource_To_v1beta1_ThirdPartyResource(&in.Items[i], &out.Items[i], s); err != nil { return err } } @@ -3070,11 +3070,11 @@ func autoconvert_experimental_ThirdPartyResourceList_To_v1alpha1_ThirdPartyResou return nil } -func convert_experimental_ThirdPartyResourceList_To_v1alpha1_ThirdPartyResourceList(in *experimental.ThirdPartyResourceList, out *ThirdPartyResourceList, s conversion.Scope) error { - return autoconvert_experimental_ThirdPartyResourceList_To_v1alpha1_ThirdPartyResourceList(in, out, s) +func convert_experimental_ThirdPartyResourceList_To_v1beta1_ThirdPartyResourceList(in *experimental.ThirdPartyResourceList, out *ThirdPartyResourceList, s conversion.Scope) error { + return autoconvert_experimental_ThirdPartyResourceList_To_v1beta1_ThirdPartyResourceList(in, out, s) } -func autoconvert_v1alpha1_APIVersion_To_experimental_APIVersion(in *APIVersion, out *experimental.APIVersion, s conversion.Scope) error { +func autoconvert_v1beta1_APIVersion_To_experimental_APIVersion(in *APIVersion, out *experimental.APIVersion, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*APIVersion))(in) } @@ -3083,11 +3083,11 @@ func autoconvert_v1alpha1_APIVersion_To_experimental_APIVersion(in *APIVersion, return nil } -func convert_v1alpha1_APIVersion_To_experimental_APIVersion(in *APIVersion, out *experimental.APIVersion, s conversion.Scope) error { - return autoconvert_v1alpha1_APIVersion_To_experimental_APIVersion(in, out, s) +func convert_v1beta1_APIVersion_To_experimental_APIVersion(in *APIVersion, out *experimental.APIVersion, s conversion.Scope) error { + return autoconvert_v1beta1_APIVersion_To_experimental_APIVersion(in, out, s) } -func autoconvert_v1alpha1_ClusterAutoscaler_To_experimental_ClusterAutoscaler(in *ClusterAutoscaler, out *experimental.ClusterAutoscaler, s conversion.Scope) error { +func autoconvert_v1beta1_ClusterAutoscaler_To_experimental_ClusterAutoscaler(in *ClusterAutoscaler, out *experimental.ClusterAutoscaler, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*ClusterAutoscaler))(in) } @@ -3097,17 +3097,17 @@ func autoconvert_v1alpha1_ClusterAutoscaler_To_experimental_ClusterAutoscaler(in if err := convert_v1_ObjectMeta_To_api_ObjectMeta(&in.ObjectMeta, &out.ObjectMeta, s); err != nil { return err } - if err := convert_v1alpha1_ClusterAutoscalerSpec_To_experimental_ClusterAutoscalerSpec(&in.Spec, &out.Spec, s); err != nil { + if err := convert_v1beta1_ClusterAutoscalerSpec_To_experimental_ClusterAutoscalerSpec(&in.Spec, &out.Spec, s); err != nil { return err } return nil } -func convert_v1alpha1_ClusterAutoscaler_To_experimental_ClusterAutoscaler(in *ClusterAutoscaler, out *experimental.ClusterAutoscaler, s conversion.Scope) error { - return autoconvert_v1alpha1_ClusterAutoscaler_To_experimental_ClusterAutoscaler(in, out, s) +func convert_v1beta1_ClusterAutoscaler_To_experimental_ClusterAutoscaler(in *ClusterAutoscaler, out *experimental.ClusterAutoscaler, s conversion.Scope) error { + return autoconvert_v1beta1_ClusterAutoscaler_To_experimental_ClusterAutoscaler(in, out, s) } -func autoconvert_v1alpha1_ClusterAutoscalerList_To_experimental_ClusterAutoscalerList(in *ClusterAutoscalerList, out *experimental.ClusterAutoscalerList, s conversion.Scope) error { +func autoconvert_v1beta1_ClusterAutoscalerList_To_experimental_ClusterAutoscalerList(in *ClusterAutoscalerList, out *experimental.ClusterAutoscalerList, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*ClusterAutoscalerList))(in) } @@ -3120,7 +3120,7 @@ func autoconvert_v1alpha1_ClusterAutoscalerList_To_experimental_ClusterAutoscale if in.Items != nil { out.Items = make([]experimental.ClusterAutoscaler, len(in.Items)) for i := range in.Items { - if err := convert_v1alpha1_ClusterAutoscaler_To_experimental_ClusterAutoscaler(&in.Items[i], &out.Items[i], s); err != nil { + if err := convert_v1beta1_ClusterAutoscaler_To_experimental_ClusterAutoscaler(&in.Items[i], &out.Items[i], s); err != nil { return err } } @@ -3130,11 +3130,11 @@ func autoconvert_v1alpha1_ClusterAutoscalerList_To_experimental_ClusterAutoscale return nil } -func convert_v1alpha1_ClusterAutoscalerList_To_experimental_ClusterAutoscalerList(in *ClusterAutoscalerList, out *experimental.ClusterAutoscalerList, s conversion.Scope) error { - return autoconvert_v1alpha1_ClusterAutoscalerList_To_experimental_ClusterAutoscalerList(in, out, s) +func convert_v1beta1_ClusterAutoscalerList_To_experimental_ClusterAutoscalerList(in *ClusterAutoscalerList, out *experimental.ClusterAutoscalerList, s conversion.Scope) error { + return autoconvert_v1beta1_ClusterAutoscalerList_To_experimental_ClusterAutoscalerList(in, out, s) } -func autoconvert_v1alpha1_ClusterAutoscalerSpec_To_experimental_ClusterAutoscalerSpec(in *ClusterAutoscalerSpec, out *experimental.ClusterAutoscalerSpec, s conversion.Scope) error { +func autoconvert_v1beta1_ClusterAutoscalerSpec_To_experimental_ClusterAutoscalerSpec(in *ClusterAutoscalerSpec, out *experimental.ClusterAutoscalerSpec, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*ClusterAutoscalerSpec))(in) } @@ -3143,7 +3143,7 @@ func autoconvert_v1alpha1_ClusterAutoscalerSpec_To_experimental_ClusterAutoscale if in.TargetUtilization != nil { out.TargetUtilization = make([]experimental.NodeUtilization, len(in.TargetUtilization)) for i := range in.TargetUtilization { - if err := convert_v1alpha1_NodeUtilization_To_experimental_NodeUtilization(&in.TargetUtilization[i], &out.TargetUtilization[i], s); err != nil { + if err := convert_v1beta1_NodeUtilization_To_experimental_NodeUtilization(&in.TargetUtilization[i], &out.TargetUtilization[i], s); err != nil { return err } } @@ -3153,11 +3153,11 @@ func autoconvert_v1alpha1_ClusterAutoscalerSpec_To_experimental_ClusterAutoscale return nil } -func convert_v1alpha1_ClusterAutoscalerSpec_To_experimental_ClusterAutoscalerSpec(in *ClusterAutoscalerSpec, out *experimental.ClusterAutoscalerSpec, s conversion.Scope) error { - return autoconvert_v1alpha1_ClusterAutoscalerSpec_To_experimental_ClusterAutoscalerSpec(in, out, s) +func convert_v1beta1_ClusterAutoscalerSpec_To_experimental_ClusterAutoscalerSpec(in *ClusterAutoscalerSpec, out *experimental.ClusterAutoscalerSpec, s conversion.Scope) error { + return autoconvert_v1beta1_ClusterAutoscalerSpec_To_experimental_ClusterAutoscalerSpec(in, out, s) } -func autoconvert_v1alpha1_DaemonSet_To_experimental_DaemonSet(in *DaemonSet, out *experimental.DaemonSet, s conversion.Scope) error { +func autoconvert_v1beta1_DaemonSet_To_experimental_DaemonSet(in *DaemonSet, out *experimental.DaemonSet, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*DaemonSet))(in) } @@ -3167,20 +3167,20 @@ func autoconvert_v1alpha1_DaemonSet_To_experimental_DaemonSet(in *DaemonSet, out if err := convert_v1_ObjectMeta_To_api_ObjectMeta(&in.ObjectMeta, &out.ObjectMeta, s); err != nil { return err } - if err := convert_v1alpha1_DaemonSetSpec_To_experimental_DaemonSetSpec(&in.Spec, &out.Spec, s); err != nil { + if err := convert_v1beta1_DaemonSetSpec_To_experimental_DaemonSetSpec(&in.Spec, &out.Spec, s); err != nil { return err } - if err := convert_v1alpha1_DaemonSetStatus_To_experimental_DaemonSetStatus(&in.Status, &out.Status, s); err != nil { + if err := convert_v1beta1_DaemonSetStatus_To_experimental_DaemonSetStatus(&in.Status, &out.Status, s); err != nil { return err } return nil } -func convert_v1alpha1_DaemonSet_To_experimental_DaemonSet(in *DaemonSet, out *experimental.DaemonSet, s conversion.Scope) error { - return autoconvert_v1alpha1_DaemonSet_To_experimental_DaemonSet(in, out, s) +func convert_v1beta1_DaemonSet_To_experimental_DaemonSet(in *DaemonSet, out *experimental.DaemonSet, s conversion.Scope) error { + return autoconvert_v1beta1_DaemonSet_To_experimental_DaemonSet(in, out, s) } -func autoconvert_v1alpha1_DaemonSetList_To_experimental_DaemonSetList(in *DaemonSetList, out *experimental.DaemonSetList, s conversion.Scope) error { +func autoconvert_v1beta1_DaemonSetList_To_experimental_DaemonSetList(in *DaemonSetList, out *experimental.DaemonSetList, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*DaemonSetList))(in) } @@ -3193,7 +3193,7 @@ func autoconvert_v1alpha1_DaemonSetList_To_experimental_DaemonSetList(in *Daemon if in.Items != nil { out.Items = make([]experimental.DaemonSet, len(in.Items)) for i := range in.Items { - if err := convert_v1alpha1_DaemonSet_To_experimental_DaemonSet(&in.Items[i], &out.Items[i], s); err != nil { + if err := convert_v1beta1_DaemonSet_To_experimental_DaemonSet(&in.Items[i], &out.Items[i], s); err != nil { return err } } @@ -3203,11 +3203,11 @@ func autoconvert_v1alpha1_DaemonSetList_To_experimental_DaemonSetList(in *Daemon return nil } -func convert_v1alpha1_DaemonSetList_To_experimental_DaemonSetList(in *DaemonSetList, out *experimental.DaemonSetList, s conversion.Scope) error { - return autoconvert_v1alpha1_DaemonSetList_To_experimental_DaemonSetList(in, out, s) +func convert_v1beta1_DaemonSetList_To_experimental_DaemonSetList(in *DaemonSetList, out *experimental.DaemonSetList, s conversion.Scope) error { + return autoconvert_v1beta1_DaemonSetList_To_experimental_DaemonSetList(in, out, s) } -func autoconvert_v1alpha1_DaemonSetSpec_To_experimental_DaemonSetSpec(in *DaemonSetSpec, out *experimental.DaemonSetSpec, s conversion.Scope) error { +func autoconvert_v1beta1_DaemonSetSpec_To_experimental_DaemonSetSpec(in *DaemonSetSpec, out *experimental.DaemonSetSpec, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*DaemonSetSpec))(in) } @@ -3230,11 +3230,11 @@ func autoconvert_v1alpha1_DaemonSetSpec_To_experimental_DaemonSetSpec(in *Daemon return nil } -func convert_v1alpha1_DaemonSetSpec_To_experimental_DaemonSetSpec(in *DaemonSetSpec, out *experimental.DaemonSetSpec, s conversion.Scope) error { - return autoconvert_v1alpha1_DaemonSetSpec_To_experimental_DaemonSetSpec(in, out, s) +func convert_v1beta1_DaemonSetSpec_To_experimental_DaemonSetSpec(in *DaemonSetSpec, out *experimental.DaemonSetSpec, s conversion.Scope) error { + return autoconvert_v1beta1_DaemonSetSpec_To_experimental_DaemonSetSpec(in, out, s) } -func autoconvert_v1alpha1_DaemonSetStatus_To_experimental_DaemonSetStatus(in *DaemonSetStatus, out *experimental.DaemonSetStatus, s conversion.Scope) error { +func autoconvert_v1beta1_DaemonSetStatus_To_experimental_DaemonSetStatus(in *DaemonSetStatus, out *experimental.DaemonSetStatus, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*DaemonSetStatus))(in) } @@ -3244,11 +3244,11 @@ func autoconvert_v1alpha1_DaemonSetStatus_To_experimental_DaemonSetStatus(in *Da return nil } -func convert_v1alpha1_DaemonSetStatus_To_experimental_DaemonSetStatus(in *DaemonSetStatus, out *experimental.DaemonSetStatus, s conversion.Scope) error { - return autoconvert_v1alpha1_DaemonSetStatus_To_experimental_DaemonSetStatus(in, out, s) +func convert_v1beta1_DaemonSetStatus_To_experimental_DaemonSetStatus(in *DaemonSetStatus, out *experimental.DaemonSetStatus, s conversion.Scope) error { + return autoconvert_v1beta1_DaemonSetStatus_To_experimental_DaemonSetStatus(in, out, s) } -func autoconvert_v1alpha1_Deployment_To_experimental_Deployment(in *Deployment, out *experimental.Deployment, s conversion.Scope) error { +func autoconvert_v1beta1_Deployment_To_experimental_Deployment(in *Deployment, out *experimental.Deployment, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*Deployment))(in) } @@ -3258,20 +3258,20 @@ func autoconvert_v1alpha1_Deployment_To_experimental_Deployment(in *Deployment, if err := convert_v1_ObjectMeta_To_api_ObjectMeta(&in.ObjectMeta, &out.ObjectMeta, s); err != nil { return err } - if err := convert_v1alpha1_DeploymentSpec_To_experimental_DeploymentSpec(&in.Spec, &out.Spec, s); err != nil { + if err := convert_v1beta1_DeploymentSpec_To_experimental_DeploymentSpec(&in.Spec, &out.Spec, s); err != nil { return err } - if err := convert_v1alpha1_DeploymentStatus_To_experimental_DeploymentStatus(&in.Status, &out.Status, s); err != nil { + if err := convert_v1beta1_DeploymentStatus_To_experimental_DeploymentStatus(&in.Status, &out.Status, s); err != nil { return err } return nil } -func convert_v1alpha1_Deployment_To_experimental_Deployment(in *Deployment, out *experimental.Deployment, s conversion.Scope) error { - return autoconvert_v1alpha1_Deployment_To_experimental_Deployment(in, out, s) +func convert_v1beta1_Deployment_To_experimental_Deployment(in *Deployment, out *experimental.Deployment, s conversion.Scope) error { + return autoconvert_v1beta1_Deployment_To_experimental_Deployment(in, out, s) } -func autoconvert_v1alpha1_DeploymentList_To_experimental_DeploymentList(in *DeploymentList, out *experimental.DeploymentList, s conversion.Scope) error { +func autoconvert_v1beta1_DeploymentList_To_experimental_DeploymentList(in *DeploymentList, out *experimental.DeploymentList, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*DeploymentList))(in) } @@ -3284,7 +3284,7 @@ func autoconvert_v1alpha1_DeploymentList_To_experimental_DeploymentList(in *Depl if in.Items != nil { out.Items = make([]experimental.Deployment, len(in.Items)) for i := range in.Items { - if err := convert_v1alpha1_Deployment_To_experimental_Deployment(&in.Items[i], &out.Items[i], s); err != nil { + if err := convert_v1beta1_Deployment_To_experimental_Deployment(&in.Items[i], &out.Items[i], s); err != nil { return err } } @@ -3294,11 +3294,11 @@ func autoconvert_v1alpha1_DeploymentList_To_experimental_DeploymentList(in *Depl return nil } -func convert_v1alpha1_DeploymentList_To_experimental_DeploymentList(in *DeploymentList, out *experimental.DeploymentList, s conversion.Scope) error { - return autoconvert_v1alpha1_DeploymentList_To_experimental_DeploymentList(in, out, s) +func convert_v1beta1_DeploymentList_To_experimental_DeploymentList(in *DeploymentList, out *experimental.DeploymentList, s conversion.Scope) error { + return autoconvert_v1beta1_DeploymentList_To_experimental_DeploymentList(in, out, s) } -func autoconvert_v1alpha1_DeploymentSpec_To_experimental_DeploymentSpec(in *DeploymentSpec, out *experimental.DeploymentSpec, s conversion.Scope) error { +func autoconvert_v1beta1_DeploymentSpec_To_experimental_DeploymentSpec(in *DeploymentSpec, out *experimental.DeploymentSpec, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*DeploymentSpec))(in) } @@ -3319,14 +3319,14 @@ func autoconvert_v1alpha1_DeploymentSpec_To_experimental_DeploymentSpec(in *Depl } else { out.Template = nil } - if err := convert_v1alpha1_DeploymentStrategy_To_experimental_DeploymentStrategy(&in.Strategy, &out.Strategy, s); err != nil { + if err := convert_v1beta1_DeploymentStrategy_To_experimental_DeploymentStrategy(&in.Strategy, &out.Strategy, s); err != nil { return err } // in.UniqueLabelKey has no peer in out return nil } -func autoconvert_v1alpha1_DeploymentStatus_To_experimental_DeploymentStatus(in *DeploymentStatus, out *experimental.DeploymentStatus, s conversion.Scope) error { +func autoconvert_v1beta1_DeploymentStatus_To_experimental_DeploymentStatus(in *DeploymentStatus, out *experimental.DeploymentStatus, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*DeploymentStatus))(in) } @@ -3335,33 +3335,33 @@ func autoconvert_v1alpha1_DeploymentStatus_To_experimental_DeploymentStatus(in * return nil } -func convert_v1alpha1_DeploymentStatus_To_experimental_DeploymentStatus(in *DeploymentStatus, out *experimental.DeploymentStatus, s conversion.Scope) error { - return autoconvert_v1alpha1_DeploymentStatus_To_experimental_DeploymentStatus(in, out, s) +func convert_v1beta1_DeploymentStatus_To_experimental_DeploymentStatus(in *DeploymentStatus, out *experimental.DeploymentStatus, s conversion.Scope) error { + return autoconvert_v1beta1_DeploymentStatus_To_experimental_DeploymentStatus(in, out, s) } -func autoconvert_v1alpha1_HTTPIngressPath_To_experimental_HTTPIngressPath(in *HTTPIngressPath, out *experimental.HTTPIngressPath, s conversion.Scope) error { +func autoconvert_v1beta1_HTTPIngressPath_To_experimental_HTTPIngressPath(in *HTTPIngressPath, out *experimental.HTTPIngressPath, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*HTTPIngressPath))(in) } out.Path = in.Path - if err := convert_v1alpha1_IngressBackend_To_experimental_IngressBackend(&in.Backend, &out.Backend, s); err != nil { + if err := convert_v1beta1_IngressBackend_To_experimental_IngressBackend(&in.Backend, &out.Backend, s); err != nil { return err } return nil } -func convert_v1alpha1_HTTPIngressPath_To_experimental_HTTPIngressPath(in *HTTPIngressPath, out *experimental.HTTPIngressPath, s conversion.Scope) error { - return autoconvert_v1alpha1_HTTPIngressPath_To_experimental_HTTPIngressPath(in, out, s) +func convert_v1beta1_HTTPIngressPath_To_experimental_HTTPIngressPath(in *HTTPIngressPath, out *experimental.HTTPIngressPath, s conversion.Scope) error { + return autoconvert_v1beta1_HTTPIngressPath_To_experimental_HTTPIngressPath(in, out, s) } -func autoconvert_v1alpha1_HTTPIngressRuleValue_To_experimental_HTTPIngressRuleValue(in *HTTPIngressRuleValue, out *experimental.HTTPIngressRuleValue, s conversion.Scope) error { +func autoconvert_v1beta1_HTTPIngressRuleValue_To_experimental_HTTPIngressRuleValue(in *HTTPIngressRuleValue, out *experimental.HTTPIngressRuleValue, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*HTTPIngressRuleValue))(in) } if in.Paths != nil { out.Paths = make([]experimental.HTTPIngressPath, len(in.Paths)) for i := range in.Paths { - if err := convert_v1alpha1_HTTPIngressPath_To_experimental_HTTPIngressPath(&in.Paths[i], &out.Paths[i], s); err != nil { + if err := convert_v1beta1_HTTPIngressPath_To_experimental_HTTPIngressPath(&in.Paths[i], &out.Paths[i], s); err != nil { return err } } @@ -3371,11 +3371,11 @@ func autoconvert_v1alpha1_HTTPIngressRuleValue_To_experimental_HTTPIngressRuleVa return nil } -func convert_v1alpha1_HTTPIngressRuleValue_To_experimental_HTTPIngressRuleValue(in *HTTPIngressRuleValue, out *experimental.HTTPIngressRuleValue, s conversion.Scope) error { - return autoconvert_v1alpha1_HTTPIngressRuleValue_To_experimental_HTTPIngressRuleValue(in, out, s) +func convert_v1beta1_HTTPIngressRuleValue_To_experimental_HTTPIngressRuleValue(in *HTTPIngressRuleValue, out *experimental.HTTPIngressRuleValue, s conversion.Scope) error { + return autoconvert_v1beta1_HTTPIngressRuleValue_To_experimental_HTTPIngressRuleValue(in, out, s) } -func autoconvert_v1alpha1_HorizontalPodAutoscaler_To_experimental_HorizontalPodAutoscaler(in *HorizontalPodAutoscaler, out *experimental.HorizontalPodAutoscaler, s conversion.Scope) error { +func autoconvert_v1beta1_HorizontalPodAutoscaler_To_experimental_HorizontalPodAutoscaler(in *HorizontalPodAutoscaler, out *experimental.HorizontalPodAutoscaler, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*HorizontalPodAutoscaler))(in) } @@ -3385,20 +3385,20 @@ func autoconvert_v1alpha1_HorizontalPodAutoscaler_To_experimental_HorizontalPodA if err := convert_v1_ObjectMeta_To_api_ObjectMeta(&in.ObjectMeta, &out.ObjectMeta, s); err != nil { return err } - if err := convert_v1alpha1_HorizontalPodAutoscalerSpec_To_experimental_HorizontalPodAutoscalerSpec(&in.Spec, &out.Spec, s); err != nil { + if err := convert_v1beta1_HorizontalPodAutoscalerSpec_To_experimental_HorizontalPodAutoscalerSpec(&in.Spec, &out.Spec, s); err != nil { return err } - if err := convert_v1alpha1_HorizontalPodAutoscalerStatus_To_experimental_HorizontalPodAutoscalerStatus(&in.Status, &out.Status, s); err != nil { + if err := convert_v1beta1_HorizontalPodAutoscalerStatus_To_experimental_HorizontalPodAutoscalerStatus(&in.Status, &out.Status, s); err != nil { return err } return nil } -func convert_v1alpha1_HorizontalPodAutoscaler_To_experimental_HorizontalPodAutoscaler(in *HorizontalPodAutoscaler, out *experimental.HorizontalPodAutoscaler, s conversion.Scope) error { - return autoconvert_v1alpha1_HorizontalPodAutoscaler_To_experimental_HorizontalPodAutoscaler(in, out, s) +func convert_v1beta1_HorizontalPodAutoscaler_To_experimental_HorizontalPodAutoscaler(in *HorizontalPodAutoscaler, out *experimental.HorizontalPodAutoscaler, s conversion.Scope) error { + return autoconvert_v1beta1_HorizontalPodAutoscaler_To_experimental_HorizontalPodAutoscaler(in, out, s) } -func autoconvert_v1alpha1_HorizontalPodAutoscalerList_To_experimental_HorizontalPodAutoscalerList(in *HorizontalPodAutoscalerList, out *experimental.HorizontalPodAutoscalerList, s conversion.Scope) error { +func autoconvert_v1beta1_HorizontalPodAutoscalerList_To_experimental_HorizontalPodAutoscalerList(in *HorizontalPodAutoscalerList, out *experimental.HorizontalPodAutoscalerList, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*HorizontalPodAutoscalerList))(in) } @@ -3411,7 +3411,7 @@ func autoconvert_v1alpha1_HorizontalPodAutoscalerList_To_experimental_Horizontal if in.Items != nil { out.Items = make([]experimental.HorizontalPodAutoscaler, len(in.Items)) for i := range in.Items { - if err := convert_v1alpha1_HorizontalPodAutoscaler_To_experimental_HorizontalPodAutoscaler(&in.Items[i], &out.Items[i], s); err != nil { + if err := convert_v1beta1_HorizontalPodAutoscaler_To_experimental_HorizontalPodAutoscaler(&in.Items[i], &out.Items[i], s); err != nil { return err } } @@ -3421,17 +3421,17 @@ func autoconvert_v1alpha1_HorizontalPodAutoscalerList_To_experimental_Horizontal return nil } -func convert_v1alpha1_HorizontalPodAutoscalerList_To_experimental_HorizontalPodAutoscalerList(in *HorizontalPodAutoscalerList, out *experimental.HorizontalPodAutoscalerList, s conversion.Scope) error { - return autoconvert_v1alpha1_HorizontalPodAutoscalerList_To_experimental_HorizontalPodAutoscalerList(in, out, s) +func convert_v1beta1_HorizontalPodAutoscalerList_To_experimental_HorizontalPodAutoscalerList(in *HorizontalPodAutoscalerList, out *experimental.HorizontalPodAutoscalerList, s conversion.Scope) error { + return autoconvert_v1beta1_HorizontalPodAutoscalerList_To_experimental_HorizontalPodAutoscalerList(in, out, s) } -func autoconvert_v1alpha1_HorizontalPodAutoscalerSpec_To_experimental_HorizontalPodAutoscalerSpec(in *HorizontalPodAutoscalerSpec, out *experimental.HorizontalPodAutoscalerSpec, s conversion.Scope) error { +func autoconvert_v1beta1_HorizontalPodAutoscalerSpec_To_experimental_HorizontalPodAutoscalerSpec(in *HorizontalPodAutoscalerSpec, out *experimental.HorizontalPodAutoscalerSpec, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*HorizontalPodAutoscalerSpec))(in) } if in.ScaleRef != nil { out.ScaleRef = new(experimental.SubresourceReference) - if err := convert_v1alpha1_SubresourceReference_To_experimental_SubresourceReference(in.ScaleRef, out.ScaleRef, s); err != nil { + if err := convert_v1beta1_SubresourceReference_To_experimental_SubresourceReference(in.ScaleRef, out.ScaleRef, s); err != nil { return err } } else { @@ -3439,17 +3439,17 @@ func autoconvert_v1alpha1_HorizontalPodAutoscalerSpec_To_experimental_Horizontal } out.MinReplicas = in.MinReplicas out.MaxReplicas = in.MaxReplicas - if err := convert_v1alpha1_ResourceConsumption_To_experimental_ResourceConsumption(&in.Target, &out.Target, s); err != nil { + if err := convert_v1beta1_ResourceConsumption_To_experimental_ResourceConsumption(&in.Target, &out.Target, s); err != nil { return err } return nil } -func convert_v1alpha1_HorizontalPodAutoscalerSpec_To_experimental_HorizontalPodAutoscalerSpec(in *HorizontalPodAutoscalerSpec, out *experimental.HorizontalPodAutoscalerSpec, s conversion.Scope) error { - return autoconvert_v1alpha1_HorizontalPodAutoscalerSpec_To_experimental_HorizontalPodAutoscalerSpec(in, out, s) +func convert_v1beta1_HorizontalPodAutoscalerSpec_To_experimental_HorizontalPodAutoscalerSpec(in *HorizontalPodAutoscalerSpec, out *experimental.HorizontalPodAutoscalerSpec, s conversion.Scope) error { + return autoconvert_v1beta1_HorizontalPodAutoscalerSpec_To_experimental_HorizontalPodAutoscalerSpec(in, out, s) } -func autoconvert_v1alpha1_HorizontalPodAutoscalerStatus_To_experimental_HorizontalPodAutoscalerStatus(in *HorizontalPodAutoscalerStatus, out *experimental.HorizontalPodAutoscalerStatus, s conversion.Scope) error { +func autoconvert_v1beta1_HorizontalPodAutoscalerStatus_To_experimental_HorizontalPodAutoscalerStatus(in *HorizontalPodAutoscalerStatus, out *experimental.HorizontalPodAutoscalerStatus, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*HorizontalPodAutoscalerStatus))(in) } @@ -3457,7 +3457,7 @@ func autoconvert_v1alpha1_HorizontalPodAutoscalerStatus_To_experimental_Horizont out.DesiredReplicas = in.DesiredReplicas if in.CurrentConsumption != nil { out.CurrentConsumption = new(experimental.ResourceConsumption) - if err := convert_v1alpha1_ResourceConsumption_To_experimental_ResourceConsumption(in.CurrentConsumption, out.CurrentConsumption, s); err != nil { + if err := convert_v1beta1_ResourceConsumption_To_experimental_ResourceConsumption(in.CurrentConsumption, out.CurrentConsumption, s); err != nil { return err } } else { @@ -3473,11 +3473,11 @@ func autoconvert_v1alpha1_HorizontalPodAutoscalerStatus_To_experimental_Horizont return nil } -func convert_v1alpha1_HorizontalPodAutoscalerStatus_To_experimental_HorizontalPodAutoscalerStatus(in *HorizontalPodAutoscalerStatus, out *experimental.HorizontalPodAutoscalerStatus, s conversion.Scope) error { - return autoconvert_v1alpha1_HorizontalPodAutoscalerStatus_To_experimental_HorizontalPodAutoscalerStatus(in, out, s) +func convert_v1beta1_HorizontalPodAutoscalerStatus_To_experimental_HorizontalPodAutoscalerStatus(in *HorizontalPodAutoscalerStatus, out *experimental.HorizontalPodAutoscalerStatus, s conversion.Scope) error { + return autoconvert_v1beta1_HorizontalPodAutoscalerStatus_To_experimental_HorizontalPodAutoscalerStatus(in, out, s) } -func autoconvert_v1alpha1_Ingress_To_experimental_Ingress(in *Ingress, out *experimental.Ingress, s conversion.Scope) error { +func autoconvert_v1beta1_Ingress_To_experimental_Ingress(in *Ingress, out *experimental.Ingress, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*Ingress))(in) } @@ -3487,20 +3487,20 @@ func autoconvert_v1alpha1_Ingress_To_experimental_Ingress(in *Ingress, out *expe if err := convert_v1_ObjectMeta_To_api_ObjectMeta(&in.ObjectMeta, &out.ObjectMeta, s); err != nil { return err } - if err := convert_v1alpha1_IngressSpec_To_experimental_IngressSpec(&in.Spec, &out.Spec, s); err != nil { + if err := convert_v1beta1_IngressSpec_To_experimental_IngressSpec(&in.Spec, &out.Spec, s); err != nil { return err } - if err := convert_v1alpha1_IngressStatus_To_experimental_IngressStatus(&in.Status, &out.Status, s); err != nil { + if err := convert_v1beta1_IngressStatus_To_experimental_IngressStatus(&in.Status, &out.Status, s); err != nil { return err } return nil } -func convert_v1alpha1_Ingress_To_experimental_Ingress(in *Ingress, out *experimental.Ingress, s conversion.Scope) error { - return autoconvert_v1alpha1_Ingress_To_experimental_Ingress(in, out, s) +func convert_v1beta1_Ingress_To_experimental_Ingress(in *Ingress, out *experimental.Ingress, s conversion.Scope) error { + return autoconvert_v1beta1_Ingress_To_experimental_Ingress(in, out, s) } -func autoconvert_v1alpha1_IngressBackend_To_experimental_IngressBackend(in *IngressBackend, out *experimental.IngressBackend, s conversion.Scope) error { +func autoconvert_v1beta1_IngressBackend_To_experimental_IngressBackend(in *IngressBackend, out *experimental.IngressBackend, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*IngressBackend))(in) } @@ -3511,11 +3511,11 @@ func autoconvert_v1alpha1_IngressBackend_To_experimental_IngressBackend(in *Ingr return nil } -func convert_v1alpha1_IngressBackend_To_experimental_IngressBackend(in *IngressBackend, out *experimental.IngressBackend, s conversion.Scope) error { - return autoconvert_v1alpha1_IngressBackend_To_experimental_IngressBackend(in, out, s) +func convert_v1beta1_IngressBackend_To_experimental_IngressBackend(in *IngressBackend, out *experimental.IngressBackend, s conversion.Scope) error { + return autoconvert_v1beta1_IngressBackend_To_experimental_IngressBackend(in, out, s) } -func autoconvert_v1alpha1_IngressList_To_experimental_IngressList(in *IngressList, out *experimental.IngressList, s conversion.Scope) error { +func autoconvert_v1beta1_IngressList_To_experimental_IngressList(in *IngressList, out *experimental.IngressList, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*IngressList))(in) } @@ -3528,7 +3528,7 @@ func autoconvert_v1alpha1_IngressList_To_experimental_IngressList(in *IngressLis if in.Items != nil { out.Items = make([]experimental.Ingress, len(in.Items)) for i := range in.Items { - if err := convert_v1alpha1_Ingress_To_experimental_Ingress(&in.Items[i], &out.Items[i], s); err != nil { + if err := convert_v1beta1_Ingress_To_experimental_Ingress(&in.Items[i], &out.Items[i], s); err != nil { return err } } @@ -3538,32 +3538,32 @@ func autoconvert_v1alpha1_IngressList_To_experimental_IngressList(in *IngressLis return nil } -func convert_v1alpha1_IngressList_To_experimental_IngressList(in *IngressList, out *experimental.IngressList, s conversion.Scope) error { - return autoconvert_v1alpha1_IngressList_To_experimental_IngressList(in, out, s) +func convert_v1beta1_IngressList_To_experimental_IngressList(in *IngressList, out *experimental.IngressList, s conversion.Scope) error { + return autoconvert_v1beta1_IngressList_To_experimental_IngressList(in, out, s) } -func autoconvert_v1alpha1_IngressRule_To_experimental_IngressRule(in *IngressRule, out *experimental.IngressRule, s conversion.Scope) error { +func autoconvert_v1beta1_IngressRule_To_experimental_IngressRule(in *IngressRule, out *experimental.IngressRule, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*IngressRule))(in) } out.Host = in.Host - if err := convert_v1alpha1_IngressRuleValue_To_experimental_IngressRuleValue(&in.IngressRuleValue, &out.IngressRuleValue, s); err != nil { + if err := convert_v1beta1_IngressRuleValue_To_experimental_IngressRuleValue(&in.IngressRuleValue, &out.IngressRuleValue, s); err != nil { return err } return nil } -func convert_v1alpha1_IngressRule_To_experimental_IngressRule(in *IngressRule, out *experimental.IngressRule, s conversion.Scope) error { - return autoconvert_v1alpha1_IngressRule_To_experimental_IngressRule(in, out, s) +func convert_v1beta1_IngressRule_To_experimental_IngressRule(in *IngressRule, out *experimental.IngressRule, s conversion.Scope) error { + return autoconvert_v1beta1_IngressRule_To_experimental_IngressRule(in, out, s) } -func autoconvert_v1alpha1_IngressRuleValue_To_experimental_IngressRuleValue(in *IngressRuleValue, out *experimental.IngressRuleValue, s conversion.Scope) error { +func autoconvert_v1beta1_IngressRuleValue_To_experimental_IngressRuleValue(in *IngressRuleValue, out *experimental.IngressRuleValue, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*IngressRuleValue))(in) } if in.HTTP != nil { out.HTTP = new(experimental.HTTPIngressRuleValue) - if err := convert_v1alpha1_HTTPIngressRuleValue_To_experimental_HTTPIngressRuleValue(in.HTTP, out.HTTP, s); err != nil { + if err := convert_v1beta1_HTTPIngressRuleValue_To_experimental_HTTPIngressRuleValue(in.HTTP, out.HTTP, s); err != nil { return err } } else { @@ -3572,17 +3572,17 @@ func autoconvert_v1alpha1_IngressRuleValue_To_experimental_IngressRuleValue(in * return nil } -func convert_v1alpha1_IngressRuleValue_To_experimental_IngressRuleValue(in *IngressRuleValue, out *experimental.IngressRuleValue, s conversion.Scope) error { - return autoconvert_v1alpha1_IngressRuleValue_To_experimental_IngressRuleValue(in, out, s) +func convert_v1beta1_IngressRuleValue_To_experimental_IngressRuleValue(in *IngressRuleValue, out *experimental.IngressRuleValue, s conversion.Scope) error { + return autoconvert_v1beta1_IngressRuleValue_To_experimental_IngressRuleValue(in, out, s) } -func autoconvert_v1alpha1_IngressSpec_To_experimental_IngressSpec(in *IngressSpec, out *experimental.IngressSpec, s conversion.Scope) error { +func autoconvert_v1beta1_IngressSpec_To_experimental_IngressSpec(in *IngressSpec, out *experimental.IngressSpec, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*IngressSpec))(in) } if in.Backend != nil { out.Backend = new(experimental.IngressBackend) - if err := convert_v1alpha1_IngressBackend_To_experimental_IngressBackend(in.Backend, out.Backend, s); err != nil { + if err := convert_v1beta1_IngressBackend_To_experimental_IngressBackend(in.Backend, out.Backend, s); err != nil { return err } } else { @@ -3591,7 +3591,7 @@ func autoconvert_v1alpha1_IngressSpec_To_experimental_IngressSpec(in *IngressSpe if in.Rules != nil { out.Rules = make([]experimental.IngressRule, len(in.Rules)) for i := range in.Rules { - if err := convert_v1alpha1_IngressRule_To_experimental_IngressRule(&in.Rules[i], &out.Rules[i], s); err != nil { + if err := convert_v1beta1_IngressRule_To_experimental_IngressRule(&in.Rules[i], &out.Rules[i], s); err != nil { return err } } @@ -3601,11 +3601,11 @@ func autoconvert_v1alpha1_IngressSpec_To_experimental_IngressSpec(in *IngressSpe return nil } -func convert_v1alpha1_IngressSpec_To_experimental_IngressSpec(in *IngressSpec, out *experimental.IngressSpec, s conversion.Scope) error { - return autoconvert_v1alpha1_IngressSpec_To_experimental_IngressSpec(in, out, s) +func convert_v1beta1_IngressSpec_To_experimental_IngressSpec(in *IngressSpec, out *experimental.IngressSpec, s conversion.Scope) error { + return autoconvert_v1beta1_IngressSpec_To_experimental_IngressSpec(in, out, s) } -func autoconvert_v1alpha1_IngressStatus_To_experimental_IngressStatus(in *IngressStatus, out *experimental.IngressStatus, s conversion.Scope) error { +func autoconvert_v1beta1_IngressStatus_To_experimental_IngressStatus(in *IngressStatus, out *experimental.IngressStatus, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*IngressStatus))(in) } @@ -3615,11 +3615,11 @@ func autoconvert_v1alpha1_IngressStatus_To_experimental_IngressStatus(in *Ingres return nil } -func convert_v1alpha1_IngressStatus_To_experimental_IngressStatus(in *IngressStatus, out *experimental.IngressStatus, s conversion.Scope) error { - return autoconvert_v1alpha1_IngressStatus_To_experimental_IngressStatus(in, out, s) +func convert_v1beta1_IngressStatus_To_experimental_IngressStatus(in *IngressStatus, out *experimental.IngressStatus, s conversion.Scope) error { + return autoconvert_v1beta1_IngressStatus_To_experimental_IngressStatus(in, out, s) } -func autoconvert_v1alpha1_Job_To_experimental_Job(in *Job, out *experimental.Job, s conversion.Scope) error { +func autoconvert_v1beta1_Job_To_experimental_Job(in *Job, out *experimental.Job, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*Job))(in) } @@ -3629,20 +3629,20 @@ func autoconvert_v1alpha1_Job_To_experimental_Job(in *Job, out *experimental.Job if err := convert_v1_ObjectMeta_To_api_ObjectMeta(&in.ObjectMeta, &out.ObjectMeta, s); err != nil { return err } - if err := convert_v1alpha1_JobSpec_To_experimental_JobSpec(&in.Spec, &out.Spec, s); err != nil { + if err := convert_v1beta1_JobSpec_To_experimental_JobSpec(&in.Spec, &out.Spec, s); err != nil { return err } - if err := convert_v1alpha1_JobStatus_To_experimental_JobStatus(&in.Status, &out.Status, s); err != nil { + if err := convert_v1beta1_JobStatus_To_experimental_JobStatus(&in.Status, &out.Status, s); err != nil { return err } return nil } -func convert_v1alpha1_Job_To_experimental_Job(in *Job, out *experimental.Job, s conversion.Scope) error { - return autoconvert_v1alpha1_Job_To_experimental_Job(in, out, s) +func convert_v1beta1_Job_To_experimental_Job(in *Job, out *experimental.Job, s conversion.Scope) error { + return autoconvert_v1beta1_Job_To_experimental_Job(in, out, s) } -func autoconvert_v1alpha1_JobCondition_To_experimental_JobCondition(in *JobCondition, out *experimental.JobCondition, s conversion.Scope) error { +func autoconvert_v1beta1_JobCondition_To_experimental_JobCondition(in *JobCondition, out *experimental.JobCondition, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*JobCondition))(in) } @@ -3659,11 +3659,11 @@ func autoconvert_v1alpha1_JobCondition_To_experimental_JobCondition(in *JobCondi return nil } -func convert_v1alpha1_JobCondition_To_experimental_JobCondition(in *JobCondition, out *experimental.JobCondition, s conversion.Scope) error { - return autoconvert_v1alpha1_JobCondition_To_experimental_JobCondition(in, out, s) +func convert_v1beta1_JobCondition_To_experimental_JobCondition(in *JobCondition, out *experimental.JobCondition, s conversion.Scope) error { + return autoconvert_v1beta1_JobCondition_To_experimental_JobCondition(in, out, s) } -func autoconvert_v1alpha1_JobList_To_experimental_JobList(in *JobList, out *experimental.JobList, s conversion.Scope) error { +func autoconvert_v1beta1_JobList_To_experimental_JobList(in *JobList, out *experimental.JobList, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*JobList))(in) } @@ -3676,7 +3676,7 @@ func autoconvert_v1alpha1_JobList_To_experimental_JobList(in *JobList, out *expe if in.Items != nil { out.Items = make([]experimental.Job, len(in.Items)) for i := range in.Items { - if err := convert_v1alpha1_Job_To_experimental_Job(&in.Items[i], &out.Items[i], s); err != nil { + if err := convert_v1beta1_Job_To_experimental_Job(&in.Items[i], &out.Items[i], s); err != nil { return err } } @@ -3686,11 +3686,11 @@ func autoconvert_v1alpha1_JobList_To_experimental_JobList(in *JobList, out *expe return nil } -func convert_v1alpha1_JobList_To_experimental_JobList(in *JobList, out *experimental.JobList, s conversion.Scope) error { - return autoconvert_v1alpha1_JobList_To_experimental_JobList(in, out, s) +func convert_v1beta1_JobList_To_experimental_JobList(in *JobList, out *experimental.JobList, s conversion.Scope) error { + return autoconvert_v1beta1_JobList_To_experimental_JobList(in, out, s) } -func autoconvert_v1alpha1_JobSpec_To_experimental_JobSpec(in *JobSpec, out *experimental.JobSpec, s conversion.Scope) error { +func autoconvert_v1beta1_JobSpec_To_experimental_JobSpec(in *JobSpec, out *experimental.JobSpec, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*JobSpec))(in) } @@ -3725,18 +3725,18 @@ func autoconvert_v1alpha1_JobSpec_To_experimental_JobSpec(in *JobSpec, out *expe return nil } -func convert_v1alpha1_JobSpec_To_experimental_JobSpec(in *JobSpec, out *experimental.JobSpec, s conversion.Scope) error { - return autoconvert_v1alpha1_JobSpec_To_experimental_JobSpec(in, out, s) +func convert_v1beta1_JobSpec_To_experimental_JobSpec(in *JobSpec, out *experimental.JobSpec, s conversion.Scope) error { + return autoconvert_v1beta1_JobSpec_To_experimental_JobSpec(in, out, s) } -func autoconvert_v1alpha1_JobStatus_To_experimental_JobStatus(in *JobStatus, out *experimental.JobStatus, s conversion.Scope) error { +func autoconvert_v1beta1_JobStatus_To_experimental_JobStatus(in *JobStatus, out *experimental.JobStatus, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*JobStatus))(in) } if in.Conditions != nil { out.Conditions = make([]experimental.JobCondition, len(in.Conditions)) for i := range in.Conditions { - if err := convert_v1alpha1_JobCondition_To_experimental_JobCondition(&in.Conditions[i], &out.Conditions[i], s); err != nil { + if err := convert_v1beta1_JobCondition_To_experimental_JobCondition(&in.Conditions[i], &out.Conditions[i], s); err != nil { return err } } @@ -3763,11 +3763,11 @@ func autoconvert_v1alpha1_JobStatus_To_experimental_JobStatus(in *JobStatus, out return nil } -func convert_v1alpha1_JobStatus_To_experimental_JobStatus(in *JobStatus, out *experimental.JobStatus, s conversion.Scope) error { - return autoconvert_v1alpha1_JobStatus_To_experimental_JobStatus(in, out, s) +func convert_v1beta1_JobStatus_To_experimental_JobStatus(in *JobStatus, out *experimental.JobStatus, s conversion.Scope) error { + return autoconvert_v1beta1_JobStatus_To_experimental_JobStatus(in, out, s) } -func autoconvert_v1alpha1_NodeUtilization_To_experimental_NodeUtilization(in *NodeUtilization, out *experimental.NodeUtilization, s conversion.Scope) error { +func autoconvert_v1beta1_NodeUtilization_To_experimental_NodeUtilization(in *NodeUtilization, out *experimental.NodeUtilization, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*NodeUtilization))(in) } @@ -3776,11 +3776,11 @@ func autoconvert_v1alpha1_NodeUtilization_To_experimental_NodeUtilization(in *No return nil } -func convert_v1alpha1_NodeUtilization_To_experimental_NodeUtilization(in *NodeUtilization, out *experimental.NodeUtilization, s conversion.Scope) error { - return autoconvert_v1alpha1_NodeUtilization_To_experimental_NodeUtilization(in, out, s) +func convert_v1beta1_NodeUtilization_To_experimental_NodeUtilization(in *NodeUtilization, out *experimental.NodeUtilization, s conversion.Scope) error { + return autoconvert_v1beta1_NodeUtilization_To_experimental_NodeUtilization(in, out, s) } -func autoconvert_v1alpha1_ReplicationControllerDummy_To_experimental_ReplicationControllerDummy(in *ReplicationControllerDummy, out *experimental.ReplicationControllerDummy, s conversion.Scope) error { +func autoconvert_v1beta1_ReplicationControllerDummy_To_experimental_ReplicationControllerDummy(in *ReplicationControllerDummy, out *experimental.ReplicationControllerDummy, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*ReplicationControllerDummy))(in) } @@ -3790,11 +3790,11 @@ func autoconvert_v1alpha1_ReplicationControllerDummy_To_experimental_Replication return nil } -func convert_v1alpha1_ReplicationControllerDummy_To_experimental_ReplicationControllerDummy(in *ReplicationControllerDummy, out *experimental.ReplicationControllerDummy, s conversion.Scope) error { - return autoconvert_v1alpha1_ReplicationControllerDummy_To_experimental_ReplicationControllerDummy(in, out, s) +func convert_v1beta1_ReplicationControllerDummy_To_experimental_ReplicationControllerDummy(in *ReplicationControllerDummy, out *experimental.ReplicationControllerDummy, s conversion.Scope) error { + return autoconvert_v1beta1_ReplicationControllerDummy_To_experimental_ReplicationControllerDummy(in, out, s) } -func autoconvert_v1alpha1_ResourceConsumption_To_experimental_ResourceConsumption(in *ResourceConsumption, out *experimental.ResourceConsumption, s conversion.Scope) error { +func autoconvert_v1beta1_ResourceConsumption_To_experimental_ResourceConsumption(in *ResourceConsumption, out *experimental.ResourceConsumption, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*ResourceConsumption))(in) } @@ -3805,11 +3805,11 @@ func autoconvert_v1alpha1_ResourceConsumption_To_experimental_ResourceConsumptio return nil } -func convert_v1alpha1_ResourceConsumption_To_experimental_ResourceConsumption(in *ResourceConsumption, out *experimental.ResourceConsumption, s conversion.Scope) error { - return autoconvert_v1alpha1_ResourceConsumption_To_experimental_ResourceConsumption(in, out, s) +func convert_v1beta1_ResourceConsumption_To_experimental_ResourceConsumption(in *ResourceConsumption, out *experimental.ResourceConsumption, s conversion.Scope) error { + return autoconvert_v1beta1_ResourceConsumption_To_experimental_ResourceConsumption(in, out, s) } -func autoconvert_v1alpha1_RollingUpdateDeployment_To_experimental_RollingUpdateDeployment(in *RollingUpdateDeployment, out *experimental.RollingUpdateDeployment, s conversion.Scope) error { +func autoconvert_v1beta1_RollingUpdateDeployment_To_experimental_RollingUpdateDeployment(in *RollingUpdateDeployment, out *experimental.RollingUpdateDeployment, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*RollingUpdateDeployment))(in) } @@ -3819,7 +3819,7 @@ func autoconvert_v1alpha1_RollingUpdateDeployment_To_experimental_RollingUpdateD return nil } -func autoconvert_v1alpha1_Scale_To_experimental_Scale(in *Scale, out *experimental.Scale, s conversion.Scope) error { +func autoconvert_v1beta1_Scale_To_experimental_Scale(in *Scale, out *experimental.Scale, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*Scale))(in) } @@ -3829,20 +3829,20 @@ func autoconvert_v1alpha1_Scale_To_experimental_Scale(in *Scale, out *experiment if err := convert_v1_ObjectMeta_To_api_ObjectMeta(&in.ObjectMeta, &out.ObjectMeta, s); err != nil { return err } - if err := convert_v1alpha1_ScaleSpec_To_experimental_ScaleSpec(&in.Spec, &out.Spec, s); err != nil { + if err := convert_v1beta1_ScaleSpec_To_experimental_ScaleSpec(&in.Spec, &out.Spec, s); err != nil { return err } - if err := convert_v1alpha1_ScaleStatus_To_experimental_ScaleStatus(&in.Status, &out.Status, s); err != nil { + if err := convert_v1beta1_ScaleStatus_To_experimental_ScaleStatus(&in.Status, &out.Status, s); err != nil { return err } return nil } -func convert_v1alpha1_Scale_To_experimental_Scale(in *Scale, out *experimental.Scale, s conversion.Scope) error { - return autoconvert_v1alpha1_Scale_To_experimental_Scale(in, out, s) +func convert_v1beta1_Scale_To_experimental_Scale(in *Scale, out *experimental.Scale, s conversion.Scope) error { + return autoconvert_v1beta1_Scale_To_experimental_Scale(in, out, s) } -func autoconvert_v1alpha1_ScaleSpec_To_experimental_ScaleSpec(in *ScaleSpec, out *experimental.ScaleSpec, s conversion.Scope) error { +func autoconvert_v1beta1_ScaleSpec_To_experimental_ScaleSpec(in *ScaleSpec, out *experimental.ScaleSpec, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*ScaleSpec))(in) } @@ -3850,11 +3850,11 @@ func autoconvert_v1alpha1_ScaleSpec_To_experimental_ScaleSpec(in *ScaleSpec, out return nil } -func convert_v1alpha1_ScaleSpec_To_experimental_ScaleSpec(in *ScaleSpec, out *experimental.ScaleSpec, s conversion.Scope) error { - return autoconvert_v1alpha1_ScaleSpec_To_experimental_ScaleSpec(in, out, s) +func convert_v1beta1_ScaleSpec_To_experimental_ScaleSpec(in *ScaleSpec, out *experimental.ScaleSpec, s conversion.Scope) error { + return autoconvert_v1beta1_ScaleSpec_To_experimental_ScaleSpec(in, out, s) } -func autoconvert_v1alpha1_ScaleStatus_To_experimental_ScaleStatus(in *ScaleStatus, out *experimental.ScaleStatus, s conversion.Scope) error { +func autoconvert_v1beta1_ScaleStatus_To_experimental_ScaleStatus(in *ScaleStatus, out *experimental.ScaleStatus, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*ScaleStatus))(in) } @@ -3870,11 +3870,11 @@ func autoconvert_v1alpha1_ScaleStatus_To_experimental_ScaleStatus(in *ScaleStatu return nil } -func convert_v1alpha1_ScaleStatus_To_experimental_ScaleStatus(in *ScaleStatus, out *experimental.ScaleStatus, s conversion.Scope) error { - return autoconvert_v1alpha1_ScaleStatus_To_experimental_ScaleStatus(in, out, s) +func convert_v1beta1_ScaleStatus_To_experimental_ScaleStatus(in *ScaleStatus, out *experimental.ScaleStatus, s conversion.Scope) error { + return autoconvert_v1beta1_ScaleStatus_To_experimental_ScaleStatus(in, out, s) } -func autoconvert_v1alpha1_SubresourceReference_To_experimental_SubresourceReference(in *SubresourceReference, out *experimental.SubresourceReference, s conversion.Scope) error { +func autoconvert_v1beta1_SubresourceReference_To_experimental_SubresourceReference(in *SubresourceReference, out *experimental.SubresourceReference, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*SubresourceReference))(in) } @@ -3886,11 +3886,11 @@ func autoconvert_v1alpha1_SubresourceReference_To_experimental_SubresourceRefere return nil } -func convert_v1alpha1_SubresourceReference_To_experimental_SubresourceReference(in *SubresourceReference, out *experimental.SubresourceReference, s conversion.Scope) error { - return autoconvert_v1alpha1_SubresourceReference_To_experimental_SubresourceReference(in, out, s) +func convert_v1beta1_SubresourceReference_To_experimental_SubresourceReference(in *SubresourceReference, out *experimental.SubresourceReference, s conversion.Scope) error { + return autoconvert_v1beta1_SubresourceReference_To_experimental_SubresourceReference(in, out, s) } -func autoconvert_v1alpha1_ThirdPartyResource_To_experimental_ThirdPartyResource(in *ThirdPartyResource, out *experimental.ThirdPartyResource, s conversion.Scope) error { +func autoconvert_v1beta1_ThirdPartyResource_To_experimental_ThirdPartyResource(in *ThirdPartyResource, out *experimental.ThirdPartyResource, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*ThirdPartyResource))(in) } @@ -3904,7 +3904,7 @@ func autoconvert_v1alpha1_ThirdPartyResource_To_experimental_ThirdPartyResource( if in.Versions != nil { out.Versions = make([]experimental.APIVersion, len(in.Versions)) for i := range in.Versions { - if err := convert_v1alpha1_APIVersion_To_experimental_APIVersion(&in.Versions[i], &out.Versions[i], s); err != nil { + if err := convert_v1beta1_APIVersion_To_experimental_APIVersion(&in.Versions[i], &out.Versions[i], s); err != nil { return err } } @@ -3914,11 +3914,11 @@ func autoconvert_v1alpha1_ThirdPartyResource_To_experimental_ThirdPartyResource( return nil } -func convert_v1alpha1_ThirdPartyResource_To_experimental_ThirdPartyResource(in *ThirdPartyResource, out *experimental.ThirdPartyResource, s conversion.Scope) error { - return autoconvert_v1alpha1_ThirdPartyResource_To_experimental_ThirdPartyResource(in, out, s) +func convert_v1beta1_ThirdPartyResource_To_experimental_ThirdPartyResource(in *ThirdPartyResource, out *experimental.ThirdPartyResource, s conversion.Scope) error { + return autoconvert_v1beta1_ThirdPartyResource_To_experimental_ThirdPartyResource(in, out, s) } -func autoconvert_v1alpha1_ThirdPartyResourceData_To_experimental_ThirdPartyResourceData(in *ThirdPartyResourceData, out *experimental.ThirdPartyResourceData, s conversion.Scope) error { +func autoconvert_v1beta1_ThirdPartyResourceData_To_experimental_ThirdPartyResourceData(in *ThirdPartyResourceData, out *experimental.ThirdPartyResourceData, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*ThirdPartyResourceData))(in) } @@ -3934,11 +3934,11 @@ func autoconvert_v1alpha1_ThirdPartyResourceData_To_experimental_ThirdPartyResou return nil } -func convert_v1alpha1_ThirdPartyResourceData_To_experimental_ThirdPartyResourceData(in *ThirdPartyResourceData, out *experimental.ThirdPartyResourceData, s conversion.Scope) error { - return autoconvert_v1alpha1_ThirdPartyResourceData_To_experimental_ThirdPartyResourceData(in, out, s) +func convert_v1beta1_ThirdPartyResourceData_To_experimental_ThirdPartyResourceData(in *ThirdPartyResourceData, out *experimental.ThirdPartyResourceData, s conversion.Scope) error { + return autoconvert_v1beta1_ThirdPartyResourceData_To_experimental_ThirdPartyResourceData(in, out, s) } -func autoconvert_v1alpha1_ThirdPartyResourceDataList_To_experimental_ThirdPartyResourceDataList(in *ThirdPartyResourceDataList, out *experimental.ThirdPartyResourceDataList, s conversion.Scope) error { +func autoconvert_v1beta1_ThirdPartyResourceDataList_To_experimental_ThirdPartyResourceDataList(in *ThirdPartyResourceDataList, out *experimental.ThirdPartyResourceDataList, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*ThirdPartyResourceDataList))(in) } @@ -3951,7 +3951,7 @@ func autoconvert_v1alpha1_ThirdPartyResourceDataList_To_experimental_ThirdPartyR if in.Items != nil { out.Items = make([]experimental.ThirdPartyResourceData, len(in.Items)) for i := range in.Items { - if err := convert_v1alpha1_ThirdPartyResourceData_To_experimental_ThirdPartyResourceData(&in.Items[i], &out.Items[i], s); err != nil { + if err := convert_v1beta1_ThirdPartyResourceData_To_experimental_ThirdPartyResourceData(&in.Items[i], &out.Items[i], s); err != nil { return err } } @@ -3961,11 +3961,11 @@ func autoconvert_v1alpha1_ThirdPartyResourceDataList_To_experimental_ThirdPartyR return nil } -func convert_v1alpha1_ThirdPartyResourceDataList_To_experimental_ThirdPartyResourceDataList(in *ThirdPartyResourceDataList, out *experimental.ThirdPartyResourceDataList, s conversion.Scope) error { - return autoconvert_v1alpha1_ThirdPartyResourceDataList_To_experimental_ThirdPartyResourceDataList(in, out, s) +func convert_v1beta1_ThirdPartyResourceDataList_To_experimental_ThirdPartyResourceDataList(in *ThirdPartyResourceDataList, out *experimental.ThirdPartyResourceDataList, s conversion.Scope) error { + return autoconvert_v1beta1_ThirdPartyResourceDataList_To_experimental_ThirdPartyResourceDataList(in, out, s) } -func autoconvert_v1alpha1_ThirdPartyResourceList_To_experimental_ThirdPartyResourceList(in *ThirdPartyResourceList, out *experimental.ThirdPartyResourceList, s conversion.Scope) error { +func autoconvert_v1beta1_ThirdPartyResourceList_To_experimental_ThirdPartyResourceList(in *ThirdPartyResourceList, out *experimental.ThirdPartyResourceList, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*ThirdPartyResourceList))(in) } @@ -3978,7 +3978,7 @@ func autoconvert_v1alpha1_ThirdPartyResourceList_To_experimental_ThirdPartyResou if in.Items != nil { out.Items = make([]experimental.ThirdPartyResource, len(in.Items)) for i := range in.Items { - if err := convert_v1alpha1_ThirdPartyResource_To_experimental_ThirdPartyResource(&in.Items[i], &out.Items[i], s); err != nil { + if err := convert_v1beta1_ThirdPartyResource_To_experimental_ThirdPartyResource(&in.Items[i], &out.Items[i], s); err != nil { return err } } @@ -3988,8 +3988,8 @@ func autoconvert_v1alpha1_ThirdPartyResourceList_To_experimental_ThirdPartyResou return nil } -func convert_v1alpha1_ThirdPartyResourceList_To_experimental_ThirdPartyResourceList(in *ThirdPartyResourceList, out *experimental.ThirdPartyResourceList, s conversion.Scope) error { - return autoconvert_v1alpha1_ThirdPartyResourceList_To_experimental_ThirdPartyResourceList(in, out, s) +func convert_v1beta1_ThirdPartyResourceList_To_experimental_ThirdPartyResourceList(in *ThirdPartyResourceList, out *experimental.ThirdPartyResourceList, s conversion.Scope) error { + return autoconvert_v1beta1_ThirdPartyResourceList_To_experimental_ThirdPartyResourceList(in, out, s) } func init() { @@ -4035,49 +4035,49 @@ func init() { autoconvert_api_VolumeMount_To_v1_VolumeMount, autoconvert_api_VolumeSource_To_v1_VolumeSource, autoconvert_api_Volume_To_v1_Volume, - autoconvert_experimental_APIVersion_To_v1alpha1_APIVersion, - autoconvert_experimental_ClusterAutoscalerList_To_v1alpha1_ClusterAutoscalerList, - autoconvert_experimental_ClusterAutoscalerSpec_To_v1alpha1_ClusterAutoscalerSpec, - autoconvert_experimental_ClusterAutoscaler_To_v1alpha1_ClusterAutoscaler, - autoconvert_experimental_DaemonSetList_To_v1alpha1_DaemonSetList, - autoconvert_experimental_DaemonSetSpec_To_v1alpha1_DaemonSetSpec, - autoconvert_experimental_DaemonSetStatus_To_v1alpha1_DaemonSetStatus, - autoconvert_experimental_DaemonSet_To_v1alpha1_DaemonSet, - autoconvert_experimental_DeploymentList_To_v1alpha1_DeploymentList, - autoconvert_experimental_DeploymentSpec_To_v1alpha1_DeploymentSpec, - autoconvert_experimental_DeploymentStatus_To_v1alpha1_DeploymentStatus, - autoconvert_experimental_DeploymentStrategy_To_v1alpha1_DeploymentStrategy, - autoconvert_experimental_Deployment_To_v1alpha1_Deployment, - autoconvert_experimental_HTTPIngressPath_To_v1alpha1_HTTPIngressPath, - autoconvert_experimental_HTTPIngressRuleValue_To_v1alpha1_HTTPIngressRuleValue, - autoconvert_experimental_HorizontalPodAutoscalerList_To_v1alpha1_HorizontalPodAutoscalerList, - autoconvert_experimental_HorizontalPodAutoscalerSpec_To_v1alpha1_HorizontalPodAutoscalerSpec, - autoconvert_experimental_HorizontalPodAutoscalerStatus_To_v1alpha1_HorizontalPodAutoscalerStatus, - autoconvert_experimental_HorizontalPodAutoscaler_To_v1alpha1_HorizontalPodAutoscaler, - autoconvert_experimental_IngressBackend_To_v1alpha1_IngressBackend, - autoconvert_experimental_IngressList_To_v1alpha1_IngressList, - autoconvert_experimental_IngressRuleValue_To_v1alpha1_IngressRuleValue, - autoconvert_experimental_IngressRule_To_v1alpha1_IngressRule, - autoconvert_experimental_IngressSpec_To_v1alpha1_IngressSpec, - autoconvert_experimental_IngressStatus_To_v1alpha1_IngressStatus, - autoconvert_experimental_Ingress_To_v1alpha1_Ingress, - autoconvert_experimental_JobCondition_To_v1alpha1_JobCondition, - autoconvert_experimental_JobList_To_v1alpha1_JobList, - autoconvert_experimental_JobSpec_To_v1alpha1_JobSpec, - autoconvert_experimental_JobStatus_To_v1alpha1_JobStatus, - autoconvert_experimental_Job_To_v1alpha1_Job, - autoconvert_experimental_NodeUtilization_To_v1alpha1_NodeUtilization, - autoconvert_experimental_ReplicationControllerDummy_To_v1alpha1_ReplicationControllerDummy, - autoconvert_experimental_ResourceConsumption_To_v1alpha1_ResourceConsumption, - autoconvert_experimental_RollingUpdateDeployment_To_v1alpha1_RollingUpdateDeployment, - autoconvert_experimental_ScaleSpec_To_v1alpha1_ScaleSpec, - autoconvert_experimental_ScaleStatus_To_v1alpha1_ScaleStatus, - autoconvert_experimental_Scale_To_v1alpha1_Scale, - autoconvert_experimental_SubresourceReference_To_v1alpha1_SubresourceReference, - autoconvert_experimental_ThirdPartyResourceDataList_To_v1alpha1_ThirdPartyResourceDataList, - autoconvert_experimental_ThirdPartyResourceData_To_v1alpha1_ThirdPartyResourceData, - autoconvert_experimental_ThirdPartyResourceList_To_v1alpha1_ThirdPartyResourceList, - autoconvert_experimental_ThirdPartyResource_To_v1alpha1_ThirdPartyResource, + autoconvert_experimental_APIVersion_To_v1beta1_APIVersion, + autoconvert_experimental_ClusterAutoscalerList_To_v1beta1_ClusterAutoscalerList, + autoconvert_experimental_ClusterAutoscalerSpec_To_v1beta1_ClusterAutoscalerSpec, + autoconvert_experimental_ClusterAutoscaler_To_v1beta1_ClusterAutoscaler, + autoconvert_experimental_DaemonSetList_To_v1beta1_DaemonSetList, + autoconvert_experimental_DaemonSetSpec_To_v1beta1_DaemonSetSpec, + autoconvert_experimental_DaemonSetStatus_To_v1beta1_DaemonSetStatus, + autoconvert_experimental_DaemonSet_To_v1beta1_DaemonSet, + autoconvert_experimental_DeploymentList_To_v1beta1_DeploymentList, + autoconvert_experimental_DeploymentSpec_To_v1beta1_DeploymentSpec, + autoconvert_experimental_DeploymentStatus_To_v1beta1_DeploymentStatus, + autoconvert_experimental_DeploymentStrategy_To_v1beta1_DeploymentStrategy, + autoconvert_experimental_Deployment_To_v1beta1_Deployment, + autoconvert_experimental_HTTPIngressPath_To_v1beta1_HTTPIngressPath, + autoconvert_experimental_HTTPIngressRuleValue_To_v1beta1_HTTPIngressRuleValue, + autoconvert_experimental_HorizontalPodAutoscalerList_To_v1beta1_HorizontalPodAutoscalerList, + autoconvert_experimental_HorizontalPodAutoscalerSpec_To_v1beta1_HorizontalPodAutoscalerSpec, + autoconvert_experimental_HorizontalPodAutoscalerStatus_To_v1beta1_HorizontalPodAutoscalerStatus, + autoconvert_experimental_HorizontalPodAutoscaler_To_v1beta1_HorizontalPodAutoscaler, + autoconvert_experimental_IngressBackend_To_v1beta1_IngressBackend, + autoconvert_experimental_IngressList_To_v1beta1_IngressList, + autoconvert_experimental_IngressRuleValue_To_v1beta1_IngressRuleValue, + autoconvert_experimental_IngressRule_To_v1beta1_IngressRule, + autoconvert_experimental_IngressSpec_To_v1beta1_IngressSpec, + autoconvert_experimental_IngressStatus_To_v1beta1_IngressStatus, + autoconvert_experimental_Ingress_To_v1beta1_Ingress, + autoconvert_experimental_JobCondition_To_v1beta1_JobCondition, + autoconvert_experimental_JobList_To_v1beta1_JobList, + autoconvert_experimental_JobSpec_To_v1beta1_JobSpec, + autoconvert_experimental_JobStatus_To_v1beta1_JobStatus, + autoconvert_experimental_Job_To_v1beta1_Job, + autoconvert_experimental_NodeUtilization_To_v1beta1_NodeUtilization, + autoconvert_experimental_ReplicationControllerDummy_To_v1beta1_ReplicationControllerDummy, + autoconvert_experimental_ResourceConsumption_To_v1beta1_ResourceConsumption, + autoconvert_experimental_RollingUpdateDeployment_To_v1beta1_RollingUpdateDeployment, + autoconvert_experimental_ScaleSpec_To_v1beta1_ScaleSpec, + autoconvert_experimental_ScaleStatus_To_v1beta1_ScaleStatus, + autoconvert_experimental_Scale_To_v1beta1_Scale, + autoconvert_experimental_SubresourceReference_To_v1beta1_SubresourceReference, + autoconvert_experimental_ThirdPartyResourceDataList_To_v1beta1_ThirdPartyResourceDataList, + autoconvert_experimental_ThirdPartyResourceData_To_v1beta1_ThirdPartyResourceData, + autoconvert_experimental_ThirdPartyResourceList_To_v1beta1_ThirdPartyResourceList, + autoconvert_experimental_ThirdPartyResource_To_v1beta1_ThirdPartyResource, autoconvert_v1_AWSElasticBlockStoreVolumeSource_To_api_AWSElasticBlockStoreVolumeSource, autoconvert_v1_Capabilities_To_api_Capabilities, autoconvert_v1_CephFSVolumeSource_To_api_CephFSVolumeSource, @@ -4119,48 +4119,48 @@ func init() { autoconvert_v1_VolumeMount_To_api_VolumeMount, autoconvert_v1_VolumeSource_To_api_VolumeSource, autoconvert_v1_Volume_To_api_Volume, - autoconvert_v1alpha1_APIVersion_To_experimental_APIVersion, - autoconvert_v1alpha1_ClusterAutoscalerList_To_experimental_ClusterAutoscalerList, - autoconvert_v1alpha1_ClusterAutoscalerSpec_To_experimental_ClusterAutoscalerSpec, - autoconvert_v1alpha1_ClusterAutoscaler_To_experimental_ClusterAutoscaler, - autoconvert_v1alpha1_DaemonSetList_To_experimental_DaemonSetList, - autoconvert_v1alpha1_DaemonSetSpec_To_experimental_DaemonSetSpec, - autoconvert_v1alpha1_DaemonSetStatus_To_experimental_DaemonSetStatus, - autoconvert_v1alpha1_DaemonSet_To_experimental_DaemonSet, - autoconvert_v1alpha1_DeploymentList_To_experimental_DeploymentList, - autoconvert_v1alpha1_DeploymentSpec_To_experimental_DeploymentSpec, - autoconvert_v1alpha1_DeploymentStatus_To_experimental_DeploymentStatus, - autoconvert_v1alpha1_Deployment_To_experimental_Deployment, - autoconvert_v1alpha1_HTTPIngressPath_To_experimental_HTTPIngressPath, - autoconvert_v1alpha1_HTTPIngressRuleValue_To_experimental_HTTPIngressRuleValue, - autoconvert_v1alpha1_HorizontalPodAutoscalerList_To_experimental_HorizontalPodAutoscalerList, - autoconvert_v1alpha1_HorizontalPodAutoscalerSpec_To_experimental_HorizontalPodAutoscalerSpec, - autoconvert_v1alpha1_HorizontalPodAutoscalerStatus_To_experimental_HorizontalPodAutoscalerStatus, - autoconvert_v1alpha1_HorizontalPodAutoscaler_To_experimental_HorizontalPodAutoscaler, - autoconvert_v1alpha1_IngressBackend_To_experimental_IngressBackend, - autoconvert_v1alpha1_IngressList_To_experimental_IngressList, - autoconvert_v1alpha1_IngressRuleValue_To_experimental_IngressRuleValue, - autoconvert_v1alpha1_IngressRule_To_experimental_IngressRule, - autoconvert_v1alpha1_IngressSpec_To_experimental_IngressSpec, - autoconvert_v1alpha1_IngressStatus_To_experimental_IngressStatus, - autoconvert_v1alpha1_Ingress_To_experimental_Ingress, - autoconvert_v1alpha1_JobCondition_To_experimental_JobCondition, - autoconvert_v1alpha1_JobList_To_experimental_JobList, - autoconvert_v1alpha1_JobSpec_To_experimental_JobSpec, - autoconvert_v1alpha1_JobStatus_To_experimental_JobStatus, - autoconvert_v1alpha1_Job_To_experimental_Job, - autoconvert_v1alpha1_NodeUtilization_To_experimental_NodeUtilization, - autoconvert_v1alpha1_ReplicationControllerDummy_To_experimental_ReplicationControllerDummy, - autoconvert_v1alpha1_ResourceConsumption_To_experimental_ResourceConsumption, - autoconvert_v1alpha1_RollingUpdateDeployment_To_experimental_RollingUpdateDeployment, - autoconvert_v1alpha1_ScaleSpec_To_experimental_ScaleSpec, - autoconvert_v1alpha1_ScaleStatus_To_experimental_ScaleStatus, - autoconvert_v1alpha1_Scale_To_experimental_Scale, - autoconvert_v1alpha1_SubresourceReference_To_experimental_SubresourceReference, - autoconvert_v1alpha1_ThirdPartyResourceDataList_To_experimental_ThirdPartyResourceDataList, - autoconvert_v1alpha1_ThirdPartyResourceData_To_experimental_ThirdPartyResourceData, - autoconvert_v1alpha1_ThirdPartyResourceList_To_experimental_ThirdPartyResourceList, - autoconvert_v1alpha1_ThirdPartyResource_To_experimental_ThirdPartyResource, + autoconvert_v1beta1_APIVersion_To_experimental_APIVersion, + autoconvert_v1beta1_ClusterAutoscalerList_To_experimental_ClusterAutoscalerList, + autoconvert_v1beta1_ClusterAutoscalerSpec_To_experimental_ClusterAutoscalerSpec, + autoconvert_v1beta1_ClusterAutoscaler_To_experimental_ClusterAutoscaler, + autoconvert_v1beta1_DaemonSetList_To_experimental_DaemonSetList, + autoconvert_v1beta1_DaemonSetSpec_To_experimental_DaemonSetSpec, + autoconvert_v1beta1_DaemonSetStatus_To_experimental_DaemonSetStatus, + autoconvert_v1beta1_DaemonSet_To_experimental_DaemonSet, + autoconvert_v1beta1_DeploymentList_To_experimental_DeploymentList, + autoconvert_v1beta1_DeploymentSpec_To_experimental_DeploymentSpec, + autoconvert_v1beta1_DeploymentStatus_To_experimental_DeploymentStatus, + autoconvert_v1beta1_Deployment_To_experimental_Deployment, + autoconvert_v1beta1_HTTPIngressPath_To_experimental_HTTPIngressPath, + autoconvert_v1beta1_HTTPIngressRuleValue_To_experimental_HTTPIngressRuleValue, + autoconvert_v1beta1_HorizontalPodAutoscalerList_To_experimental_HorizontalPodAutoscalerList, + autoconvert_v1beta1_HorizontalPodAutoscalerSpec_To_experimental_HorizontalPodAutoscalerSpec, + autoconvert_v1beta1_HorizontalPodAutoscalerStatus_To_experimental_HorizontalPodAutoscalerStatus, + autoconvert_v1beta1_HorizontalPodAutoscaler_To_experimental_HorizontalPodAutoscaler, + autoconvert_v1beta1_IngressBackend_To_experimental_IngressBackend, + autoconvert_v1beta1_IngressList_To_experimental_IngressList, + autoconvert_v1beta1_IngressRuleValue_To_experimental_IngressRuleValue, + autoconvert_v1beta1_IngressRule_To_experimental_IngressRule, + autoconvert_v1beta1_IngressSpec_To_experimental_IngressSpec, + autoconvert_v1beta1_IngressStatus_To_experimental_IngressStatus, + autoconvert_v1beta1_Ingress_To_experimental_Ingress, + autoconvert_v1beta1_JobCondition_To_experimental_JobCondition, + autoconvert_v1beta1_JobList_To_experimental_JobList, + autoconvert_v1beta1_JobSpec_To_experimental_JobSpec, + autoconvert_v1beta1_JobStatus_To_experimental_JobStatus, + autoconvert_v1beta1_Job_To_experimental_Job, + autoconvert_v1beta1_NodeUtilization_To_experimental_NodeUtilization, + autoconvert_v1beta1_ReplicationControllerDummy_To_experimental_ReplicationControllerDummy, + autoconvert_v1beta1_ResourceConsumption_To_experimental_ResourceConsumption, + autoconvert_v1beta1_RollingUpdateDeployment_To_experimental_RollingUpdateDeployment, + autoconvert_v1beta1_ScaleSpec_To_experimental_ScaleSpec, + autoconvert_v1beta1_ScaleStatus_To_experimental_ScaleStatus, + autoconvert_v1beta1_Scale_To_experimental_Scale, + autoconvert_v1beta1_SubresourceReference_To_experimental_SubresourceReference, + autoconvert_v1beta1_ThirdPartyResourceDataList_To_experimental_ThirdPartyResourceDataList, + autoconvert_v1beta1_ThirdPartyResourceData_To_experimental_ThirdPartyResourceData, + autoconvert_v1beta1_ThirdPartyResourceList_To_experimental_ThirdPartyResourceList, + autoconvert_v1beta1_ThirdPartyResource_To_experimental_ThirdPartyResource, ) if err != nil { // If one of the conversion functions is malformed, detect it immediately. diff --git a/pkg/apis/extensions/v1beta1/deep_copy_generated.go b/pkg/apis/extensions/v1beta1/deep_copy_generated.go index 3727dba3cf3..90e7cec003a 100644 --- a/pkg/apis/extensions/v1beta1/deep_copy_generated.go +++ b/pkg/apis/extensions/v1beta1/deep_copy_generated.go @@ -844,26 +844,26 @@ func deepCopy_v1_VolumeSource(in v1.VolumeSource, out *v1.VolumeSource, c *conve return nil } -func deepCopy_v1alpha1_APIVersion(in APIVersion, out *APIVersion, c *conversion.Cloner) error { +func deepCopy_v1beta1_APIVersion(in APIVersion, out *APIVersion, c *conversion.Cloner) error { out.Name = in.Name out.APIGroup = in.APIGroup return nil } -func deepCopy_v1alpha1_ClusterAutoscaler(in ClusterAutoscaler, out *ClusterAutoscaler, c *conversion.Cloner) error { +func deepCopy_v1beta1_ClusterAutoscaler(in ClusterAutoscaler, out *ClusterAutoscaler, c *conversion.Cloner) error { if err := deepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil { return err } if err := deepCopy_v1_ObjectMeta(in.ObjectMeta, &out.ObjectMeta, c); err != nil { return err } - if err := deepCopy_v1alpha1_ClusterAutoscalerSpec(in.Spec, &out.Spec, c); err != nil { + if err := deepCopy_v1beta1_ClusterAutoscalerSpec(in.Spec, &out.Spec, c); err != nil { return err } return nil } -func deepCopy_v1alpha1_ClusterAutoscalerList(in ClusterAutoscalerList, out *ClusterAutoscalerList, c *conversion.Cloner) error { +func deepCopy_v1beta1_ClusterAutoscalerList(in ClusterAutoscalerList, out *ClusterAutoscalerList, c *conversion.Cloner) error { if err := deepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil { return err } @@ -873,7 +873,7 @@ func deepCopy_v1alpha1_ClusterAutoscalerList(in ClusterAutoscalerList, out *Clus if in.Items != nil { out.Items = make([]ClusterAutoscaler, len(in.Items)) for i := range in.Items { - if err := deepCopy_v1alpha1_ClusterAutoscaler(in.Items[i], &out.Items[i], c); err != nil { + if err := deepCopy_v1beta1_ClusterAutoscaler(in.Items[i], &out.Items[i], c); err != nil { return err } } @@ -883,13 +883,13 @@ func deepCopy_v1alpha1_ClusterAutoscalerList(in ClusterAutoscalerList, out *Clus return nil } -func deepCopy_v1alpha1_ClusterAutoscalerSpec(in ClusterAutoscalerSpec, out *ClusterAutoscalerSpec, c *conversion.Cloner) error { +func deepCopy_v1beta1_ClusterAutoscalerSpec(in ClusterAutoscalerSpec, out *ClusterAutoscalerSpec, c *conversion.Cloner) error { out.MinNodes = in.MinNodes out.MaxNodes = in.MaxNodes if in.TargetUtilization != nil { out.TargetUtilization = make([]NodeUtilization, len(in.TargetUtilization)) for i := range in.TargetUtilization { - if err := deepCopy_v1alpha1_NodeUtilization(in.TargetUtilization[i], &out.TargetUtilization[i], c); err != nil { + if err := deepCopy_v1beta1_NodeUtilization(in.TargetUtilization[i], &out.TargetUtilization[i], c); err != nil { return err } } @@ -899,23 +899,23 @@ func deepCopy_v1alpha1_ClusterAutoscalerSpec(in ClusterAutoscalerSpec, out *Clus return nil } -func deepCopy_v1alpha1_DaemonSet(in DaemonSet, out *DaemonSet, c *conversion.Cloner) error { +func deepCopy_v1beta1_DaemonSet(in DaemonSet, out *DaemonSet, c *conversion.Cloner) error { if err := deepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil { return err } if err := deepCopy_v1_ObjectMeta(in.ObjectMeta, &out.ObjectMeta, c); err != nil { return err } - if err := deepCopy_v1alpha1_DaemonSetSpec(in.Spec, &out.Spec, c); err != nil { + if err := deepCopy_v1beta1_DaemonSetSpec(in.Spec, &out.Spec, c); err != nil { return err } - if err := deepCopy_v1alpha1_DaemonSetStatus(in.Status, &out.Status, c); err != nil { + if err := deepCopy_v1beta1_DaemonSetStatus(in.Status, &out.Status, c); err != nil { return err } return nil } -func deepCopy_v1alpha1_DaemonSetList(in DaemonSetList, out *DaemonSetList, c *conversion.Cloner) error { +func deepCopy_v1beta1_DaemonSetList(in DaemonSetList, out *DaemonSetList, c *conversion.Cloner) error { if err := deepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil { return err } @@ -925,7 +925,7 @@ func deepCopy_v1alpha1_DaemonSetList(in DaemonSetList, out *DaemonSetList, c *co if in.Items != nil { out.Items = make([]DaemonSet, len(in.Items)) for i := range in.Items { - if err := deepCopy_v1alpha1_DaemonSet(in.Items[i], &out.Items[i], c); err != nil { + if err := deepCopy_v1beta1_DaemonSet(in.Items[i], &out.Items[i], c); err != nil { return err } } @@ -935,7 +935,7 @@ func deepCopy_v1alpha1_DaemonSetList(in DaemonSetList, out *DaemonSetList, c *co return nil } -func deepCopy_v1alpha1_DaemonSetSpec(in DaemonSetSpec, out *DaemonSetSpec, c *conversion.Cloner) error { +func deepCopy_v1beta1_DaemonSetSpec(in DaemonSetSpec, out *DaemonSetSpec, c *conversion.Cloner) error { if in.Selector != nil { out.Selector = make(map[string]string) for key, val := range in.Selector { @@ -955,30 +955,30 @@ func deepCopy_v1alpha1_DaemonSetSpec(in DaemonSetSpec, out *DaemonSetSpec, c *co return nil } -func deepCopy_v1alpha1_DaemonSetStatus(in DaemonSetStatus, out *DaemonSetStatus, c *conversion.Cloner) error { +func deepCopy_v1beta1_DaemonSetStatus(in DaemonSetStatus, out *DaemonSetStatus, c *conversion.Cloner) error { out.CurrentNumberScheduled = in.CurrentNumberScheduled out.NumberMisscheduled = in.NumberMisscheduled out.DesiredNumberScheduled = in.DesiredNumberScheduled return nil } -func deepCopy_v1alpha1_Deployment(in Deployment, out *Deployment, c *conversion.Cloner) error { +func deepCopy_v1beta1_Deployment(in Deployment, out *Deployment, c *conversion.Cloner) error { if err := deepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil { return err } if err := deepCopy_v1_ObjectMeta(in.ObjectMeta, &out.ObjectMeta, c); err != nil { return err } - if err := deepCopy_v1alpha1_DeploymentSpec(in.Spec, &out.Spec, c); err != nil { + if err := deepCopy_v1beta1_DeploymentSpec(in.Spec, &out.Spec, c); err != nil { return err } - if err := deepCopy_v1alpha1_DeploymentStatus(in.Status, &out.Status, c); err != nil { + if err := deepCopy_v1beta1_DeploymentStatus(in.Status, &out.Status, c); err != nil { return err } return nil } -func deepCopy_v1alpha1_DeploymentList(in DeploymentList, out *DeploymentList, c *conversion.Cloner) error { +func deepCopy_v1beta1_DeploymentList(in DeploymentList, out *DeploymentList, c *conversion.Cloner) error { if err := deepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil { return err } @@ -988,7 +988,7 @@ func deepCopy_v1alpha1_DeploymentList(in DeploymentList, out *DeploymentList, c if in.Items != nil { out.Items = make([]Deployment, len(in.Items)) for i := range in.Items { - if err := deepCopy_v1alpha1_Deployment(in.Items[i], &out.Items[i], c); err != nil { + if err := deepCopy_v1beta1_Deployment(in.Items[i], &out.Items[i], c); err != nil { return err } } @@ -998,7 +998,7 @@ func deepCopy_v1alpha1_DeploymentList(in DeploymentList, out *DeploymentList, c return nil } -func deepCopy_v1alpha1_DeploymentSpec(in DeploymentSpec, out *DeploymentSpec, c *conversion.Cloner) error { +func deepCopy_v1beta1_DeploymentSpec(in DeploymentSpec, out *DeploymentSpec, c *conversion.Cloner) error { if in.Replicas != nil { out.Replicas = new(int) *out.Replicas = *in.Replicas @@ -1021,7 +1021,7 @@ func deepCopy_v1alpha1_DeploymentSpec(in DeploymentSpec, out *DeploymentSpec, c } else { out.Template = nil } - if err := deepCopy_v1alpha1_DeploymentStrategy(in.Strategy, &out.Strategy, c); err != nil { + if err := deepCopy_v1beta1_DeploymentStrategy(in.Strategy, &out.Strategy, c); err != nil { return err } if in.UniqueLabelKey != nil { @@ -1033,17 +1033,17 @@ func deepCopy_v1alpha1_DeploymentSpec(in DeploymentSpec, out *DeploymentSpec, c return nil } -func deepCopy_v1alpha1_DeploymentStatus(in DeploymentStatus, out *DeploymentStatus, c *conversion.Cloner) error { +func deepCopy_v1beta1_DeploymentStatus(in DeploymentStatus, out *DeploymentStatus, c *conversion.Cloner) error { out.Replicas = in.Replicas out.UpdatedReplicas = in.UpdatedReplicas return nil } -func deepCopy_v1alpha1_DeploymentStrategy(in DeploymentStrategy, out *DeploymentStrategy, c *conversion.Cloner) error { +func deepCopy_v1beta1_DeploymentStrategy(in DeploymentStrategy, out *DeploymentStrategy, c *conversion.Cloner) error { out.Type = in.Type if in.RollingUpdate != nil { out.RollingUpdate = new(RollingUpdateDeployment) - if err := deepCopy_v1alpha1_RollingUpdateDeployment(*in.RollingUpdate, out.RollingUpdate, c); err != nil { + if err := deepCopy_v1beta1_RollingUpdateDeployment(*in.RollingUpdate, out.RollingUpdate, c); err != nil { return err } } else { @@ -1052,19 +1052,19 @@ func deepCopy_v1alpha1_DeploymentStrategy(in DeploymentStrategy, out *Deployment return nil } -func deepCopy_v1alpha1_HTTPIngressPath(in HTTPIngressPath, out *HTTPIngressPath, c *conversion.Cloner) error { +func deepCopy_v1beta1_HTTPIngressPath(in HTTPIngressPath, out *HTTPIngressPath, c *conversion.Cloner) error { out.Path = in.Path - if err := deepCopy_v1alpha1_IngressBackend(in.Backend, &out.Backend, c); err != nil { + if err := deepCopy_v1beta1_IngressBackend(in.Backend, &out.Backend, c); err != nil { return err } return nil } -func deepCopy_v1alpha1_HTTPIngressRuleValue(in HTTPIngressRuleValue, out *HTTPIngressRuleValue, c *conversion.Cloner) error { +func deepCopy_v1beta1_HTTPIngressRuleValue(in HTTPIngressRuleValue, out *HTTPIngressRuleValue, c *conversion.Cloner) error { if in.Paths != nil { out.Paths = make([]HTTPIngressPath, len(in.Paths)) for i := range in.Paths { - if err := deepCopy_v1alpha1_HTTPIngressPath(in.Paths[i], &out.Paths[i], c); err != nil { + if err := deepCopy_v1beta1_HTTPIngressPath(in.Paths[i], &out.Paths[i], c); err != nil { return err } } @@ -1074,23 +1074,23 @@ func deepCopy_v1alpha1_HTTPIngressRuleValue(in HTTPIngressRuleValue, out *HTTPIn return nil } -func deepCopy_v1alpha1_HorizontalPodAutoscaler(in HorizontalPodAutoscaler, out *HorizontalPodAutoscaler, c *conversion.Cloner) error { +func deepCopy_v1beta1_HorizontalPodAutoscaler(in HorizontalPodAutoscaler, out *HorizontalPodAutoscaler, c *conversion.Cloner) error { if err := deepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil { return err } if err := deepCopy_v1_ObjectMeta(in.ObjectMeta, &out.ObjectMeta, c); err != nil { return err } - if err := deepCopy_v1alpha1_HorizontalPodAutoscalerSpec(in.Spec, &out.Spec, c); err != nil { + if err := deepCopy_v1beta1_HorizontalPodAutoscalerSpec(in.Spec, &out.Spec, c); err != nil { return err } - if err := deepCopy_v1alpha1_HorizontalPodAutoscalerStatus(in.Status, &out.Status, c); err != nil { + if err := deepCopy_v1beta1_HorizontalPodAutoscalerStatus(in.Status, &out.Status, c); err != nil { return err } return nil } -func deepCopy_v1alpha1_HorizontalPodAutoscalerList(in HorizontalPodAutoscalerList, out *HorizontalPodAutoscalerList, c *conversion.Cloner) error { +func deepCopy_v1beta1_HorizontalPodAutoscalerList(in HorizontalPodAutoscalerList, out *HorizontalPodAutoscalerList, c *conversion.Cloner) error { if err := deepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil { return err } @@ -1100,7 +1100,7 @@ func deepCopy_v1alpha1_HorizontalPodAutoscalerList(in HorizontalPodAutoscalerLis if in.Items != nil { out.Items = make([]HorizontalPodAutoscaler, len(in.Items)) for i := range in.Items { - if err := deepCopy_v1alpha1_HorizontalPodAutoscaler(in.Items[i], &out.Items[i], c); err != nil { + if err := deepCopy_v1beta1_HorizontalPodAutoscaler(in.Items[i], &out.Items[i], c); err != nil { return err } } @@ -1110,10 +1110,10 @@ func deepCopy_v1alpha1_HorizontalPodAutoscalerList(in HorizontalPodAutoscalerLis return nil } -func deepCopy_v1alpha1_HorizontalPodAutoscalerSpec(in HorizontalPodAutoscalerSpec, out *HorizontalPodAutoscalerSpec, c *conversion.Cloner) error { +func deepCopy_v1beta1_HorizontalPodAutoscalerSpec(in HorizontalPodAutoscalerSpec, out *HorizontalPodAutoscalerSpec, c *conversion.Cloner) error { if in.ScaleRef != nil { out.ScaleRef = new(SubresourceReference) - if err := deepCopy_v1alpha1_SubresourceReference(*in.ScaleRef, out.ScaleRef, c); err != nil { + if err := deepCopy_v1beta1_SubresourceReference(*in.ScaleRef, out.ScaleRef, c); err != nil { return err } } else { @@ -1121,18 +1121,18 @@ func deepCopy_v1alpha1_HorizontalPodAutoscalerSpec(in HorizontalPodAutoscalerSpe } out.MinReplicas = in.MinReplicas out.MaxReplicas = in.MaxReplicas - if err := deepCopy_v1alpha1_ResourceConsumption(in.Target, &out.Target, c); err != nil { + if err := deepCopy_v1beta1_ResourceConsumption(in.Target, &out.Target, c); err != nil { return err } return nil } -func deepCopy_v1alpha1_HorizontalPodAutoscalerStatus(in HorizontalPodAutoscalerStatus, out *HorizontalPodAutoscalerStatus, c *conversion.Cloner) error { +func deepCopy_v1beta1_HorizontalPodAutoscalerStatus(in HorizontalPodAutoscalerStatus, out *HorizontalPodAutoscalerStatus, c *conversion.Cloner) error { out.CurrentReplicas = in.CurrentReplicas out.DesiredReplicas = in.DesiredReplicas if in.CurrentConsumption != nil { out.CurrentConsumption = new(ResourceConsumption) - if err := deepCopy_v1alpha1_ResourceConsumption(*in.CurrentConsumption, out.CurrentConsumption, c); err != nil { + if err := deepCopy_v1beta1_ResourceConsumption(*in.CurrentConsumption, out.CurrentConsumption, c); err != nil { return err } } else { @@ -1149,23 +1149,23 @@ func deepCopy_v1alpha1_HorizontalPodAutoscalerStatus(in HorizontalPodAutoscalerS return nil } -func deepCopy_v1alpha1_Ingress(in Ingress, out *Ingress, c *conversion.Cloner) error { +func deepCopy_v1beta1_Ingress(in Ingress, out *Ingress, c *conversion.Cloner) error { if err := deepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil { return err } if err := deepCopy_v1_ObjectMeta(in.ObjectMeta, &out.ObjectMeta, c); err != nil { return err } - if err := deepCopy_v1alpha1_IngressSpec(in.Spec, &out.Spec, c); err != nil { + if err := deepCopy_v1beta1_IngressSpec(in.Spec, &out.Spec, c); err != nil { return err } - if err := deepCopy_v1alpha1_IngressStatus(in.Status, &out.Status, c); err != nil { + if err := deepCopy_v1beta1_IngressStatus(in.Status, &out.Status, c); err != nil { return err } return nil } -func deepCopy_v1alpha1_IngressBackend(in IngressBackend, out *IngressBackend, c *conversion.Cloner) error { +func deepCopy_v1beta1_IngressBackend(in IngressBackend, out *IngressBackend, c *conversion.Cloner) error { out.ServiceName = in.ServiceName if err := deepCopy_util_IntOrString(in.ServicePort, &out.ServicePort, c); err != nil { return err @@ -1173,7 +1173,7 @@ func deepCopy_v1alpha1_IngressBackend(in IngressBackend, out *IngressBackend, c return nil } -func deepCopy_v1alpha1_IngressList(in IngressList, out *IngressList, c *conversion.Cloner) error { +func deepCopy_v1beta1_IngressList(in IngressList, out *IngressList, c *conversion.Cloner) error { if err := deepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil { return err } @@ -1183,7 +1183,7 @@ func deepCopy_v1alpha1_IngressList(in IngressList, out *IngressList, c *conversi if in.Items != nil { out.Items = make([]Ingress, len(in.Items)) for i := range in.Items { - if err := deepCopy_v1alpha1_Ingress(in.Items[i], &out.Items[i], c); err != nil { + if err := deepCopy_v1beta1_Ingress(in.Items[i], &out.Items[i], c); err != nil { return err } } @@ -1193,18 +1193,18 @@ func deepCopy_v1alpha1_IngressList(in IngressList, out *IngressList, c *conversi return nil } -func deepCopy_v1alpha1_IngressRule(in IngressRule, out *IngressRule, c *conversion.Cloner) error { +func deepCopy_v1beta1_IngressRule(in IngressRule, out *IngressRule, c *conversion.Cloner) error { out.Host = in.Host - if err := deepCopy_v1alpha1_IngressRuleValue(in.IngressRuleValue, &out.IngressRuleValue, c); err != nil { + if err := deepCopy_v1beta1_IngressRuleValue(in.IngressRuleValue, &out.IngressRuleValue, c); err != nil { return err } return nil } -func deepCopy_v1alpha1_IngressRuleValue(in IngressRuleValue, out *IngressRuleValue, c *conversion.Cloner) error { +func deepCopy_v1beta1_IngressRuleValue(in IngressRuleValue, out *IngressRuleValue, c *conversion.Cloner) error { if in.HTTP != nil { out.HTTP = new(HTTPIngressRuleValue) - if err := deepCopy_v1alpha1_HTTPIngressRuleValue(*in.HTTP, out.HTTP, c); err != nil { + if err := deepCopy_v1beta1_HTTPIngressRuleValue(*in.HTTP, out.HTTP, c); err != nil { return err } } else { @@ -1213,10 +1213,10 @@ func deepCopy_v1alpha1_IngressRuleValue(in IngressRuleValue, out *IngressRuleVal return nil } -func deepCopy_v1alpha1_IngressSpec(in IngressSpec, out *IngressSpec, c *conversion.Cloner) error { +func deepCopy_v1beta1_IngressSpec(in IngressSpec, out *IngressSpec, c *conversion.Cloner) error { if in.Backend != nil { out.Backend = new(IngressBackend) - if err := deepCopy_v1alpha1_IngressBackend(*in.Backend, out.Backend, c); err != nil { + if err := deepCopy_v1beta1_IngressBackend(*in.Backend, out.Backend, c); err != nil { return err } } else { @@ -1225,7 +1225,7 @@ func deepCopy_v1alpha1_IngressSpec(in IngressSpec, out *IngressSpec, c *conversi if in.Rules != nil { out.Rules = make([]IngressRule, len(in.Rules)) for i := range in.Rules { - if err := deepCopy_v1alpha1_IngressRule(in.Rules[i], &out.Rules[i], c); err != nil { + if err := deepCopy_v1beta1_IngressRule(in.Rules[i], &out.Rules[i], c); err != nil { return err } } @@ -1235,30 +1235,30 @@ func deepCopy_v1alpha1_IngressSpec(in IngressSpec, out *IngressSpec, c *conversi return nil } -func deepCopy_v1alpha1_IngressStatus(in IngressStatus, out *IngressStatus, c *conversion.Cloner) error { +func deepCopy_v1beta1_IngressStatus(in IngressStatus, out *IngressStatus, c *conversion.Cloner) error { if err := deepCopy_v1_LoadBalancerStatus(in.LoadBalancer, &out.LoadBalancer, c); err != nil { return err } return nil } -func deepCopy_v1alpha1_Job(in Job, out *Job, c *conversion.Cloner) error { +func deepCopy_v1beta1_Job(in Job, out *Job, c *conversion.Cloner) error { if err := deepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil { return err } if err := deepCopy_v1_ObjectMeta(in.ObjectMeta, &out.ObjectMeta, c); err != nil { return err } - if err := deepCopy_v1alpha1_JobSpec(in.Spec, &out.Spec, c); err != nil { + if err := deepCopy_v1beta1_JobSpec(in.Spec, &out.Spec, c); err != nil { return err } - if err := deepCopy_v1alpha1_JobStatus(in.Status, &out.Status, c); err != nil { + if err := deepCopy_v1beta1_JobStatus(in.Status, &out.Status, c); err != nil { return err } return nil } -func deepCopy_v1alpha1_JobCondition(in JobCondition, out *JobCondition, c *conversion.Cloner) error { +func deepCopy_v1beta1_JobCondition(in JobCondition, out *JobCondition, c *conversion.Cloner) error { out.Type = in.Type out.Status = in.Status if err := deepCopy_unversioned_Time(in.LastProbeTime, &out.LastProbeTime, c); err != nil { @@ -1272,7 +1272,7 @@ func deepCopy_v1alpha1_JobCondition(in JobCondition, out *JobCondition, c *conve return nil } -func deepCopy_v1alpha1_JobList(in JobList, out *JobList, c *conversion.Cloner) error { +func deepCopy_v1beta1_JobList(in JobList, out *JobList, c *conversion.Cloner) error { if err := deepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil { return err } @@ -1282,7 +1282,7 @@ func deepCopy_v1alpha1_JobList(in JobList, out *JobList, c *conversion.Cloner) e if in.Items != nil { out.Items = make([]Job, len(in.Items)) for i := range in.Items { - if err := deepCopy_v1alpha1_Job(in.Items[i], &out.Items[i], c); err != nil { + if err := deepCopy_v1beta1_Job(in.Items[i], &out.Items[i], c); err != nil { return err } } @@ -1292,7 +1292,7 @@ func deepCopy_v1alpha1_JobList(in JobList, out *JobList, c *conversion.Cloner) e return nil } -func deepCopy_v1alpha1_JobSpec(in JobSpec, out *JobSpec, c *conversion.Cloner) error { +func deepCopy_v1beta1_JobSpec(in JobSpec, out *JobSpec, c *conversion.Cloner) error { if in.Parallelism != nil { out.Parallelism = new(int) *out.Parallelism = *in.Parallelism @@ -1324,11 +1324,11 @@ func deepCopy_v1alpha1_JobSpec(in JobSpec, out *JobSpec, c *conversion.Cloner) e return nil } -func deepCopy_v1alpha1_JobStatus(in JobStatus, out *JobStatus, c *conversion.Cloner) error { +func deepCopy_v1beta1_JobStatus(in JobStatus, out *JobStatus, c *conversion.Cloner) error { if in.Conditions != nil { out.Conditions = make([]JobCondition, len(in.Conditions)) for i := range in.Conditions { - if err := deepCopy_v1alpha1_JobCondition(in.Conditions[i], &out.Conditions[i], c); err != nil { + if err := deepCopy_v1beta1_JobCondition(in.Conditions[i], &out.Conditions[i], c); err != nil { return err } } @@ -1357,20 +1357,20 @@ func deepCopy_v1alpha1_JobStatus(in JobStatus, out *JobStatus, c *conversion.Clo return nil } -func deepCopy_v1alpha1_NodeUtilization(in NodeUtilization, out *NodeUtilization, c *conversion.Cloner) error { +func deepCopy_v1beta1_NodeUtilization(in NodeUtilization, out *NodeUtilization, c *conversion.Cloner) error { out.Resource = in.Resource out.Value = in.Value return nil } -func deepCopy_v1alpha1_ReplicationControllerDummy(in ReplicationControllerDummy, out *ReplicationControllerDummy, c *conversion.Cloner) error { +func deepCopy_v1beta1_ReplicationControllerDummy(in ReplicationControllerDummy, out *ReplicationControllerDummy, c *conversion.Cloner) error { if err := deepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil { return err } return nil } -func deepCopy_v1alpha1_ResourceConsumption(in ResourceConsumption, out *ResourceConsumption, c *conversion.Cloner) error { +func deepCopy_v1beta1_ResourceConsumption(in ResourceConsumption, out *ResourceConsumption, c *conversion.Cloner) error { out.Resource = in.Resource if err := deepCopy_resource_Quantity(in.Quantity, &out.Quantity, c); err != nil { return err @@ -1378,7 +1378,7 @@ func deepCopy_v1alpha1_ResourceConsumption(in ResourceConsumption, out *Resource return nil } -func deepCopy_v1alpha1_RollingUpdateDeployment(in RollingUpdateDeployment, out *RollingUpdateDeployment, c *conversion.Cloner) error { +func deepCopy_v1beta1_RollingUpdateDeployment(in RollingUpdateDeployment, out *RollingUpdateDeployment, c *conversion.Cloner) error { if in.MaxUnavailable != nil { out.MaxUnavailable = new(util.IntOrString) if err := deepCopy_util_IntOrString(*in.MaxUnavailable, out.MaxUnavailable, c); err != nil { @@ -1399,28 +1399,28 @@ func deepCopy_v1alpha1_RollingUpdateDeployment(in RollingUpdateDeployment, out * return nil } -func deepCopy_v1alpha1_Scale(in Scale, out *Scale, c *conversion.Cloner) error { +func deepCopy_v1beta1_Scale(in Scale, out *Scale, c *conversion.Cloner) error { if err := deepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil { return err } if err := deepCopy_v1_ObjectMeta(in.ObjectMeta, &out.ObjectMeta, c); err != nil { return err } - if err := deepCopy_v1alpha1_ScaleSpec(in.Spec, &out.Spec, c); err != nil { + if err := deepCopy_v1beta1_ScaleSpec(in.Spec, &out.Spec, c); err != nil { return err } - if err := deepCopy_v1alpha1_ScaleStatus(in.Status, &out.Status, c); err != nil { + if err := deepCopy_v1beta1_ScaleStatus(in.Status, &out.Status, c); err != nil { return err } return nil } -func deepCopy_v1alpha1_ScaleSpec(in ScaleSpec, out *ScaleSpec, c *conversion.Cloner) error { +func deepCopy_v1beta1_ScaleSpec(in ScaleSpec, out *ScaleSpec, c *conversion.Cloner) error { out.Replicas = in.Replicas return nil } -func deepCopy_v1alpha1_ScaleStatus(in ScaleStatus, out *ScaleStatus, c *conversion.Cloner) error { +func deepCopy_v1beta1_ScaleStatus(in ScaleStatus, out *ScaleStatus, c *conversion.Cloner) error { out.Replicas = in.Replicas if in.Selector != nil { out.Selector = make(map[string]string) @@ -1433,7 +1433,7 @@ func deepCopy_v1alpha1_ScaleStatus(in ScaleStatus, out *ScaleStatus, c *conversi return nil } -func deepCopy_v1alpha1_SubresourceReference(in SubresourceReference, out *SubresourceReference, c *conversion.Cloner) error { +func deepCopy_v1beta1_SubresourceReference(in SubresourceReference, out *SubresourceReference, c *conversion.Cloner) error { out.Kind = in.Kind out.Namespace = in.Namespace out.Name = in.Name @@ -1442,7 +1442,7 @@ func deepCopy_v1alpha1_SubresourceReference(in SubresourceReference, out *Subres return nil } -func deepCopy_v1alpha1_ThirdPartyResource(in ThirdPartyResource, out *ThirdPartyResource, c *conversion.Cloner) error { +func deepCopy_v1beta1_ThirdPartyResource(in ThirdPartyResource, out *ThirdPartyResource, c *conversion.Cloner) error { if err := deepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil { return err } @@ -1453,7 +1453,7 @@ func deepCopy_v1alpha1_ThirdPartyResource(in ThirdPartyResource, out *ThirdParty if in.Versions != nil { out.Versions = make([]APIVersion, len(in.Versions)) for i := range in.Versions { - if err := deepCopy_v1alpha1_APIVersion(in.Versions[i], &out.Versions[i], c); err != nil { + if err := deepCopy_v1beta1_APIVersion(in.Versions[i], &out.Versions[i], c); err != nil { return err } } @@ -1463,7 +1463,7 @@ func deepCopy_v1alpha1_ThirdPartyResource(in ThirdPartyResource, out *ThirdParty return nil } -func deepCopy_v1alpha1_ThirdPartyResourceData(in ThirdPartyResourceData, out *ThirdPartyResourceData, c *conversion.Cloner) error { +func deepCopy_v1beta1_ThirdPartyResourceData(in ThirdPartyResourceData, out *ThirdPartyResourceData, c *conversion.Cloner) error { if err := deepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil { return err } @@ -1481,7 +1481,7 @@ func deepCopy_v1alpha1_ThirdPartyResourceData(in ThirdPartyResourceData, out *Th return nil } -func deepCopy_v1alpha1_ThirdPartyResourceDataList(in ThirdPartyResourceDataList, out *ThirdPartyResourceDataList, c *conversion.Cloner) error { +func deepCopy_v1beta1_ThirdPartyResourceDataList(in ThirdPartyResourceDataList, out *ThirdPartyResourceDataList, c *conversion.Cloner) error { if err := deepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil { return err } @@ -1491,7 +1491,7 @@ func deepCopy_v1alpha1_ThirdPartyResourceDataList(in ThirdPartyResourceDataList, if in.Items != nil { out.Items = make([]ThirdPartyResourceData, len(in.Items)) for i := range in.Items { - if err := deepCopy_v1alpha1_ThirdPartyResourceData(in.Items[i], &out.Items[i], c); err != nil { + if err := deepCopy_v1beta1_ThirdPartyResourceData(in.Items[i], &out.Items[i], c); err != nil { return err } } @@ -1501,7 +1501,7 @@ func deepCopy_v1alpha1_ThirdPartyResourceDataList(in ThirdPartyResourceDataList, return nil } -func deepCopy_v1alpha1_ThirdPartyResourceList(in ThirdPartyResourceList, out *ThirdPartyResourceList, c *conversion.Cloner) error { +func deepCopy_v1beta1_ThirdPartyResourceList(in ThirdPartyResourceList, out *ThirdPartyResourceList, c *conversion.Cloner) error { if err := deepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil { return err } @@ -1511,7 +1511,7 @@ func deepCopy_v1alpha1_ThirdPartyResourceList(in ThirdPartyResourceList, out *Th if in.Items != nil { out.Items = make([]ThirdPartyResource, len(in.Items)) for i := range in.Items { - if err := deepCopy_v1alpha1_ThirdPartyResource(in.Items[i], &out.Items[i], c); err != nil { + if err := deepCopy_v1beta1_ThirdPartyResource(in.Items[i], &out.Items[i], c); err != nil { return err } } @@ -1576,49 +1576,49 @@ func init() { deepCopy_v1_Volume, deepCopy_v1_VolumeMount, deepCopy_v1_VolumeSource, - deepCopy_v1alpha1_APIVersion, - deepCopy_v1alpha1_ClusterAutoscaler, - deepCopy_v1alpha1_ClusterAutoscalerList, - deepCopy_v1alpha1_ClusterAutoscalerSpec, - deepCopy_v1alpha1_DaemonSet, - deepCopy_v1alpha1_DaemonSetList, - deepCopy_v1alpha1_DaemonSetSpec, - deepCopy_v1alpha1_DaemonSetStatus, - deepCopy_v1alpha1_Deployment, - deepCopy_v1alpha1_DeploymentList, - deepCopy_v1alpha1_DeploymentSpec, - deepCopy_v1alpha1_DeploymentStatus, - deepCopy_v1alpha1_DeploymentStrategy, - deepCopy_v1alpha1_HTTPIngressPath, - deepCopy_v1alpha1_HTTPIngressRuleValue, - deepCopy_v1alpha1_HorizontalPodAutoscaler, - deepCopy_v1alpha1_HorizontalPodAutoscalerList, - deepCopy_v1alpha1_HorizontalPodAutoscalerSpec, - deepCopy_v1alpha1_HorizontalPodAutoscalerStatus, - deepCopy_v1alpha1_Ingress, - deepCopy_v1alpha1_IngressBackend, - deepCopy_v1alpha1_IngressList, - deepCopy_v1alpha1_IngressRule, - deepCopy_v1alpha1_IngressRuleValue, - deepCopy_v1alpha1_IngressSpec, - deepCopy_v1alpha1_IngressStatus, - deepCopy_v1alpha1_Job, - deepCopy_v1alpha1_JobCondition, - deepCopy_v1alpha1_JobList, - deepCopy_v1alpha1_JobSpec, - deepCopy_v1alpha1_JobStatus, - deepCopy_v1alpha1_NodeUtilization, - deepCopy_v1alpha1_ReplicationControllerDummy, - deepCopy_v1alpha1_ResourceConsumption, - deepCopy_v1alpha1_RollingUpdateDeployment, - deepCopy_v1alpha1_Scale, - deepCopy_v1alpha1_ScaleSpec, - deepCopy_v1alpha1_ScaleStatus, - deepCopy_v1alpha1_SubresourceReference, - deepCopy_v1alpha1_ThirdPartyResource, - deepCopy_v1alpha1_ThirdPartyResourceData, - deepCopy_v1alpha1_ThirdPartyResourceDataList, - deepCopy_v1alpha1_ThirdPartyResourceList, + deepCopy_v1beta1_APIVersion, + deepCopy_v1beta1_ClusterAutoscaler, + deepCopy_v1beta1_ClusterAutoscalerList, + deepCopy_v1beta1_ClusterAutoscalerSpec, + deepCopy_v1beta1_DaemonSet, + deepCopy_v1beta1_DaemonSetList, + deepCopy_v1beta1_DaemonSetSpec, + deepCopy_v1beta1_DaemonSetStatus, + deepCopy_v1beta1_Deployment, + deepCopy_v1beta1_DeploymentList, + deepCopy_v1beta1_DeploymentSpec, + deepCopy_v1beta1_DeploymentStatus, + deepCopy_v1beta1_DeploymentStrategy, + deepCopy_v1beta1_HTTPIngressPath, + deepCopy_v1beta1_HTTPIngressRuleValue, + deepCopy_v1beta1_HorizontalPodAutoscaler, + deepCopy_v1beta1_HorizontalPodAutoscalerList, + deepCopy_v1beta1_HorizontalPodAutoscalerSpec, + deepCopy_v1beta1_HorizontalPodAutoscalerStatus, + deepCopy_v1beta1_Ingress, + deepCopy_v1beta1_IngressBackend, + deepCopy_v1beta1_IngressList, + deepCopy_v1beta1_IngressRule, + deepCopy_v1beta1_IngressRuleValue, + deepCopy_v1beta1_IngressSpec, + deepCopy_v1beta1_IngressStatus, + deepCopy_v1beta1_Job, + deepCopy_v1beta1_JobCondition, + deepCopy_v1beta1_JobList, + deepCopy_v1beta1_JobSpec, + deepCopy_v1beta1_JobStatus, + deepCopy_v1beta1_NodeUtilization, + deepCopy_v1beta1_ReplicationControllerDummy, + deepCopy_v1beta1_ResourceConsumption, + deepCopy_v1beta1_RollingUpdateDeployment, + deepCopy_v1beta1_Scale, + deepCopy_v1beta1_ScaleSpec, + deepCopy_v1beta1_ScaleStatus, + deepCopy_v1beta1_SubresourceReference, + deepCopy_v1beta1_ThirdPartyResource, + deepCopy_v1beta1_ThirdPartyResourceData, + deepCopy_v1beta1_ThirdPartyResourceDataList, + deepCopy_v1beta1_ThirdPartyResourceList, deepCopy_util_IntOrString, ) if err != nil {