mirror of
https://github.com/rancher/rke.git
synced 2025-07-19 17:50:16 +00:00
Vendor KDM which has 1.19
Signed-off-by: Chris Kim <oats87g@gmail.com>
This commit is contained in:
parent
da02d52bd6
commit
19d25dee46
File diff suppressed because one or more lines are too long
195
data/data.json
195
data/data.json
File diff suppressed because one or more lines are too long
@ -226,6 +226,23 @@ func (in *BaseService) DeepCopyInto(out *BaseService) {
|
||||
*out = make([]string, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
if in.WindowsExtraArgs != nil {
|
||||
in, out := &in.WindowsExtraArgs, &out.WindowsExtraArgs
|
||||
*out = make(map[string]string, len(*in))
|
||||
for key, val := range *in {
|
||||
(*out)[key] = val
|
||||
}
|
||||
}
|
||||
if in.WindowsExtraBinds != nil {
|
||||
in, out := &in.WindowsExtraBinds, &out.WindowsExtraBinds
|
||||
*out = make([]string, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
if in.WindowsExtraEnv != nil {
|
||||
in, out := &in.WindowsExtraEnv, &out.WindowsExtraEnv
|
||||
*out = make([]string, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user