mirror of https://github.com/kubernetes/kops.git
generated code by apimachinery
This commit is contained in:
parent
4c19801021
commit
fa2a69dc08
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue