generated code by apimachinery

This commit is contained in:
Marcio Rodrigues 2018-02-05 17:42:19 -02:00
parent 4c19801021
commit fa2a69dc08
5 changed files with 31 additions and 0 deletions

View File

@ -1145,6 +1145,7 @@ func autoConvert_v1alpha1_DockerConfig_To_kops_DockerConfig(in *DockerConfig, ou
out.Storage = in.Storage
out.StorageOpts = in.StorageOpts
out.Version = in.Version
out.LiveRestore = in.LiveRestore
return nil
}
@ -1171,6 +1172,7 @@ func autoConvert_kops_DockerConfig_To_v1alpha1_DockerConfig(in *kops.DockerConfi
out.Storage = in.Storage
out.StorageOpts = in.StorageOpts
out.Version = in.Version
out.LiveRestore = in.LiveRestore
return nil
}

View File

@ -984,6 +984,15 @@ func (in *DockerConfig) DeepCopyInto(out *DockerConfig) {
**out = **in
}
}
if in.LiveRestore != nil {
in, out := &in.LiveRestore, &out.LiveRestore
if *in == nil {
*out = nil
} else {
*out = new(bool)
**out = **in
}
}
return
}

View File

@ -1244,6 +1244,7 @@ func autoConvert_v1alpha2_DockerConfig_To_kops_DockerConfig(in *DockerConfig, ou
out.Storage = in.Storage
out.StorageOpts = in.StorageOpts
out.Version = in.Version
out.LiveRestore = in.LiveRestore
return nil
}
@ -1270,6 +1271,7 @@ func autoConvert_kops_DockerConfig_To_v1alpha2_DockerConfig(in *kops.DockerConfi
out.Storage = in.Storage
out.StorageOpts = in.StorageOpts
out.Version = in.Version
out.LiveRestore = in.LiveRestore
return nil
}

View File

@ -978,6 +978,15 @@ func (in *DockerConfig) DeepCopyInto(out *DockerConfig) {
**out = **in
}
}
if in.LiveRestore != nil {
in, out := &in.LiveRestore, &out.LiveRestore
if *in == nil {
*out = nil
} else {
*out = new(bool)
**out = **in
}
}
return
}

View File

@ -1097,6 +1097,15 @@ func (in *DockerConfig) DeepCopyInto(out *DockerConfig) {
**out = **in
}
}
if in.LiveRestore != nil {
in, out := &in.LiveRestore, &out.LiveRestore
if *in == nil {
*out = nil
} else {
*out = new(bool)
**out = **in
}
}
return
}