mirror of
https://github.com/rancher/types.git
synced 2025-09-25 12:21:24 +00:00
go generate
This commit is contained in:
committed by
Alena Prokharchyk
parent
639b6ba634
commit
ad1986f384
@@ -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 {
|
||||
|
Reference in New Issue
Block a user