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

Generated changes

This commit is contained in:
Alena Prokharchyk 2018-02-12 15:23:41 -08:00
parent d69fd88002
commit 7502f36afc
2 changed files with 4 additions and 2 deletions

View File

@ -958,6 +958,7 @@ func (in *ServiceAccountTokenList) DeepCopyObject() runtime.Object {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Workload) DeepCopyInto(out *Workload) {
*out = *in
out.Namespaced = in.Namespaced
out.TypeMeta = in.TypeMeta
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
return

View File

@ -23,8 +23,9 @@ var (
WorkloadResource = metav1.APIResource{
Name: "workloads",
SingularName: "workload",
Namespaced: false,
Kind: WorkloadGroupVersionKind.Kind,
Namespaced: true,
Kind: WorkloadGroupVersionKind.Kind,
}
)