1
0
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:
Chris Kim 2020-09-14 16:47:56 -07:00
parent da02d52bd6
commit 19d25dee46
3 changed files with 210 additions and 6 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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
}