1
0
mirror of https://github.com/rancher/types.git synced 2025-09-25 12:21:24 +00:00

go generate

This commit is contained in:
kinarashah
2018-11-19 11:04:32 -08:00
committed by Alena Prokharchyk
parent 639b6ba634
commit ad1986f384
2 changed files with 18 additions and 0 deletions

View File

@@ -3479,6 +3479,20 @@ func (in *NodeSpec) DeepCopyInto(out *NodeSpec) {
(*out)[key] = val
}
}
if in.CurrentNodeLabels != nil {
in, out := &in.CurrentNodeLabels, &out.CurrentNodeLabels
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
if in.CurrentNodeAnnotations != nil {
in, out := &in.CurrentNodeAnnotations, &out.CurrentNodeAnnotations
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
if in.NodeDrainInput != nil {
in, out := &in.NodeDrainInput, &out.NodeDrainInput
if *in == nil {