update generated code
This commit is contained in:
parent
b037bc3777
commit
8c950cfcbf
|
|
@ -213,11 +213,6 @@ func (in *KubernetesMetaConfiguration) DeepCopyInto(out *KubernetesMetaConfigura
|
||||||
(*out)[key] = val
|
(*out)[key] = val
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if in.IgnoredAnnotations != nil {
|
|
||||||
in, out := &in.IgnoredAnnotations, &out.IgnoredAnnotations
|
|
||||||
*out = make([]string, len(*in))
|
|
||||||
copy(*out, *in)
|
|
||||||
}
|
|
||||||
if in.InheritedLabels != nil {
|
if in.InheritedLabels != nil {
|
||||||
in, out := &in.InheritedLabels, &out.InheritedLabels
|
in, out := &in.InheritedLabels, &out.InheritedLabels
|
||||||
*out = make([]string, len(*in))
|
*out = make([]string, len(*in))
|
||||||
|
|
@ -233,6 +228,11 @@ func (in *KubernetesMetaConfiguration) DeepCopyInto(out *KubernetesMetaConfigura
|
||||||
*out = make([]string, len(*in))
|
*out = make([]string, len(*in))
|
||||||
copy(*out, *in)
|
copy(*out, *in)
|
||||||
}
|
}
|
||||||
|
if in.IgnoredAnnotations != nil {
|
||||||
|
in, out := &in.IgnoredAnnotations, &out.IgnoredAnnotations
|
||||||
|
*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))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue