1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-04 00:14:49 +00:00

vendor types

This commit is contained in:
Sebastiaan van Steenis
2020-06-09 19:22:02 +02:00
parent 80d7dcc6e9
commit 091043de9a
5 changed files with 54 additions and 15 deletions

View File

@@ -106,7 +106,9 @@ type DockerInfo struct {
OSType string
Architecture string
IndexServerAddress string
InitBinary string
DockerRootDir string
SecurityOptions []string
HTTPProxy string
HTTPSProxy string
NoProxy string

View File

@@ -3048,6 +3048,11 @@ func (in *DiskVsphereOpts) DeepCopy() *DiskVsphereOpts {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DockerInfo) DeepCopyInto(out *DockerInfo) {
*out = *in
if in.SecurityOptions != nil {
in, out := &in.SecurityOptions, &out.SecurityOptions
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.Labels != nil {
in, out := &in.Labels, &out.Labels
*out = make([]string, len(*in))