update genrated code
This commit is contained in:
parent
9163d52e56
commit
d3992e8904
|
|
@ -75,6 +75,11 @@ func (in *KubernetesMetaConfiguration) DeepCopyInto(out *KubernetesMetaConfigura
|
||||||
(*out)[key] = val
|
(*out)[key] = val
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if in.InheritedLabels != nil {
|
||||||
|
in, out := &in.InheritedLabels, &out.InheritedLabels
|
||||||
|
*out = make([]string, len(*in))
|
||||||
|
copy(*out, *in)
|
||||||
|
}
|
||||||
if in.NodeReadinessLabel != nil {
|
if in.NodeReadinessLabel != nil {
|
||||||
in, out := &in.NodeReadinessLabel, &out.NodeReadinessLabel
|
in, out := &in.NodeReadinessLabel, &out.NodeReadinessLabel
|
||||||
*out = make(map[string]string, len(*in))
|
*out = make(map[string]string, len(*in))
|
||||||
|
|
@ -105,6 +110,13 @@ func (in *KubernetesMetaConfiguration) DeepCopy() *KubernetesMetaConfiguration {
|
||||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||||
func (in *LoadBalancerConfiguration) DeepCopyInto(out *LoadBalancerConfiguration) {
|
func (in *LoadBalancerConfiguration) DeepCopyInto(out *LoadBalancerConfiguration) {
|
||||||
*out = *in
|
*out = *in
|
||||||
|
if in.CustomServiceAnnotations != nil {
|
||||||
|
in, out := &in.CustomServiceAnnotations, &out.CustomServiceAnnotations
|
||||||
|
*out = make(map[string]string, len(*in))
|
||||||
|
for key, val := range *in {
|
||||||
|
(*out)[key] = val
|
||||||
|
}
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -193,7 +205,7 @@ func (in *OperatorConfigurationData) DeepCopyInto(out *OperatorConfigurationData
|
||||||
in.Kubernetes.DeepCopyInto(&out.Kubernetes)
|
in.Kubernetes.DeepCopyInto(&out.Kubernetes)
|
||||||
out.PostgresPodResources = in.PostgresPodResources
|
out.PostgresPodResources = in.PostgresPodResources
|
||||||
out.Timeouts = in.Timeouts
|
out.Timeouts = in.Timeouts
|
||||||
out.LoadBalancer = in.LoadBalancer
|
in.LoadBalancer.DeepCopyInto(&out.LoadBalancer)
|
||||||
out.AWSGCP = in.AWSGCP
|
out.AWSGCP = in.AWSGCP
|
||||||
out.OperatorDebug = in.OperatorDebug
|
out.OperatorDebug = in.OperatorDebug
|
||||||
in.TeamsAPI.DeepCopyInto(&out.TeamsAPI)
|
in.TeamsAPI.DeepCopyInto(&out.TeamsAPI)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue