[scheduling] Auto-generated file updates from moving node affinity from

annotations to api fields. #35518
This commit is contained in:
Robert Rati
2016-11-30 11:51:44 -05:00
parent 91931c138e
commit 11c577f092
29 changed files with 19056 additions and 15234 deletions

View File

@@ -2699,6 +2699,15 @@ func DeepCopy_api_PodSpec(in interface{}, out interface{}, c *conversion.Cloner)
}
out.Hostname = in.Hostname
out.Subdomain = in.Subdomain
if in.Affinity != nil {
in, out := &in.Affinity, &out.Affinity
*out = new(Affinity)
if err := DeepCopy_api_Affinity(*in, *out, c); err != nil {
return err
}
} else {
out.Affinity = nil
}
return nil
}
}