
This touches cases where FromInt() is used on numeric constants, or values which are already int32s, or int variables which are defined close by and can be changed to int32s with little impact. Signed-off-by: Stephen Kitt <skitt@redhat.com>
78 lines
2.8 KiB
Go
78 lines
2.8 KiB
Go
/*
|
|
Copyright 2020 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package v1beta1
|
|
|
|
import (
|
|
v1beta1 "k8s.io/api/networking/v1beta1"
|
|
conversion "k8s.io/apimachinery/pkg/conversion"
|
|
"k8s.io/apimachinery/pkg/util/intstr"
|
|
networking "k8s.io/kubernetes/pkg/apis/networking"
|
|
)
|
|
|
|
func Convert_v1beta1_IngressBackend_To_networking_IngressBackend(in *v1beta1.IngressBackend, out *networking.IngressBackend, s conversion.Scope) error {
|
|
if err := autoConvert_v1beta1_IngressBackend_To_networking_IngressBackend(in, out, s); err != nil {
|
|
return err
|
|
}
|
|
if len(in.ServiceName) > 0 || in.ServicePort.IntVal != 0 || in.ServicePort.StrVal != "" || in.ServicePort.Type == intstr.String {
|
|
out.Service = &networking.IngressServiceBackend{}
|
|
out.Service.Name = in.ServiceName
|
|
out.Service.Port.Name = in.ServicePort.StrVal
|
|
out.Service.Port.Number = in.ServicePort.IntVal
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func Convert_networking_IngressBackend_To_v1beta1_IngressBackend(in *networking.IngressBackend, out *v1beta1.IngressBackend, s conversion.Scope) error {
|
|
if err := autoConvert_networking_IngressBackend_To_v1beta1_IngressBackend(in, out, s); err != nil {
|
|
return err
|
|
}
|
|
if in.Service != nil {
|
|
out.ServiceName = in.Service.Name
|
|
if len(in.Service.Port.Name) > 0 {
|
|
out.ServicePort = intstr.FromString(in.Service.Port.Name)
|
|
} else {
|
|
out.ServicePort = intstr.FromInt32(in.Service.Port.Number)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
func Convert_v1beta1_IngressSpec_To_networking_IngressSpec(in *v1beta1.IngressSpec, out *networking.IngressSpec, s conversion.Scope) error {
|
|
if err := autoConvert_v1beta1_IngressSpec_To_networking_IngressSpec(in, out, s); err != nil {
|
|
return err
|
|
}
|
|
if in.Backend != nil {
|
|
out.DefaultBackend = &networking.IngressBackend{}
|
|
if err := Convert_v1beta1_IngressBackend_To_networking_IngressBackend(in.Backend, out.DefaultBackend, s); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func Convert_networking_IngressSpec_To_v1beta1_IngressSpec(in *networking.IngressSpec, out *v1beta1.IngressSpec, s conversion.Scope) error {
|
|
if err := autoConvert_networking_IngressSpec_To_v1beta1_IngressSpec(in, out, s); err != nil {
|
|
return err
|
|
}
|
|
if in.DefaultBackend != nil {
|
|
out.Backend = &v1beta1.IngressBackend{}
|
|
if err := Convert_networking_IngressBackend_To_v1beta1_IngressBackend(in.DefaultBackend, out.Backend, s); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|