alpha ver. of deployments resource controller
This commit is contained in:
@@ -114,6 +114,11 @@ func (in *NodeTainterConfigSpec) DeepCopyInto(out *NodeTainterConfigSpec) {
|
||||
(*out)[key] = val
|
||||
}
|
||||
}
|
||||
if in.ResourceDefaults != nil {
|
||||
in, out := &in.ResourceDefaults, &out.ResourceDefaults
|
||||
*out = new(ResourceDefaults)
|
||||
**out = **in
|
||||
}
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeTainterConfigSpec.
|
||||
@@ -154,3 +159,18 @@ func (in *NodeTainterConfigStatus) DeepCopy() *NodeTainterConfigStatus {
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *ResourceDefaults) DeepCopyInto(out *ResourceDefaults) {
|
||||
*out = *in
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceDefaults.
|
||||
func (in *ResourceDefaults) DeepCopy() *ResourceDefaults {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(ResourceDefaults)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
Reference in New Issue
Block a user