1
0
mirror of https://github.com/rancher/types.git synced 2025-09-25 12:21:24 +00:00

Generate code

This commit is contained in:
Darren Shepherd
2018-02-14 22:34:37 -07:00
parent 1623cca1ee
commit 1815a97836
3 changed files with 6 additions and 2 deletions

View File

@@ -3308,6 +3308,7 @@ func (in *NodeStatus) DeepCopy() *NodeStatus {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *NodeTemplate) DeepCopyInto(out *NodeTemplate) {
*out = *in
out.Namespaced = in.Namespaced
out.TypeMeta = in.TypeMeta
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
in.Spec.DeepCopyInto(&out.Spec)

View File

@@ -23,8 +23,9 @@ var (
NodeTemplateResource = metav1.APIResource{
Name: "nodetemplates",
SingularName: "nodetemplate",
Namespaced: false,
Kind: NodeTemplateGroupVersionKind.Kind,
Namespaced: true,
Kind: NodeTemplateGroupVersionKind.Kind,
}
)