mirror of
https://github.com/rancher/types.git
synced 2025-08-31 12:48:45 +00:00
Generated changes
This commit is contained in:
committed by
Alena Prokharchyk
parent
f7d1f26d6e
commit
083953864c
@@ -4513,6 +4513,21 @@ func (in *MultiClusterAppSpec) DeepCopyInto(out *MultiClusterAppSpec) {
|
||||
copy(*out, *in)
|
||||
}
|
||||
in.UpgradeStrategy.DeepCopyInto(&out.UpgradeStrategy)
|
||||
if in.TargetToRole != nil {
|
||||
in, out := &in.TargetToRole, &out.TargetToRole
|
||||
*out = make(map[string][]string, len(*in))
|
||||
for key, val := range *in {
|
||||
var outVal []string
|
||||
if val == nil {
|
||||
(*out)[key] = nil
|
||||
} else {
|
||||
in, out := &val, &outVal
|
||||
*out = make([]string, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
(*out)[key] = outVal
|
||||
}
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user