Implement Runner resource

This commit is contained in:
Moto Ishizawa
2020-01-28 21:56:09 +09:00
parent 04a8e562c0
commit 6b392aedda
3 changed files with 135 additions and 10 deletions

View File

@@ -30,7 +30,7 @@ func (in *Runner) DeepCopyInto(out *Runner) {
out.TypeMeta = in.TypeMeta
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
out.Spec = in.Spec
out.Status = in.Status
in.Status.DeepCopyInto(&out.Status)
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Runner.
@@ -101,6 +101,7 @@ func (in *RunnerSpec) DeepCopy() *RunnerSpec {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RunnerStatus) DeepCopyInto(out *RunnerStatus) {
*out = *in
in.Registration.DeepCopyInto(&out.Registration)
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RunnerStatus.
@@ -112,3 +113,19 @@ func (in *RunnerStatus) DeepCopy() *RunnerStatus {
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RunnerStatusRegistration) DeepCopyInto(out *RunnerStatusRegistration) {
*out = *in
in.ExpiresAt.DeepCopyInto(&out.ExpiresAt)
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RunnerStatusRegistration.
func (in *RunnerStatusRegistration) DeepCopy() *RunnerStatusRegistration {
if in == nil {
return nil
}
out := new(RunnerStatusRegistration)
in.DeepCopyInto(out)
return out
}