mirror of
https://github.com/rancher/types.git
synced 2025-09-08 16:39:00 +00:00
go generate
This commit is contained in:
committed by
Alena Prokharchyk
parent
4372075f56
commit
fae0ec5411
@@ -1,7 +1,7 @@
|
||||
package v1
|
||||
|
||||
import (
|
||||
batch_v1 "k8s.io/api/batch/v1"
|
||||
batchv1 "k8s.io/api/batch/v1"
|
||||
runtime "k8s.io/apimachinery/pkg/runtime"
|
||||
)
|
||||
|
||||
@@ -12,7 +12,7 @@ func (in *JobList) DeepCopyInto(out *JobList) {
|
||||
out.ListMeta = in.ListMeta
|
||||
if in.Items != nil {
|
||||
in, out := &in.Items, &out.Items
|
||||
*out = make([]batch_v1.Job, len(*in))
|
||||
*out = make([]batchv1.Job, len(*in))
|
||||
for i := range *in {
|
||||
(*in)[i].DeepCopyInto(&(*out)[i])
|
||||
}
|
||||
|
Reference in New Issue
Block a user