1
0
mirror of https://github.com/rancher/types.git synced 2025-07-31 04:49:37 +00:00

generated changes

This commit is contained in:
Alena Prokharchyk 2018-03-22 16:16:45 -07:00 committed by Darren Shepherd
parent 86b94d252a
commit a9178824cd
2 changed files with 10 additions and 21 deletions

View File

@ -679,10 +679,6 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error {
in.(*RancherKubernetesEngineConfig).DeepCopyInto(out.(*RancherKubernetesEngineConfig))
return nil
}, InType: reflect.TypeOf(&RancherKubernetesEngineConfig{})},
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
in.(*RancherSystemImages).DeepCopyInto(out.(*RancherSystemImages))
return nil
}, InType: reflect.TypeOf(&RancherSystemImages{})},
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
in.(*Recipient).DeepCopyInto(out.(*Recipient))
return nil
@ -5321,23 +5317,6 @@ func (in *RancherKubernetesEngineConfig) DeepCopy() *RancherKubernetesEngineConf
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RancherSystemImages) DeepCopyInto(out *RancherSystemImages) {
*out = *in
out.RKESystemImages = in.RKESystemImages
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RancherSystemImages.
func (in *RancherSystemImages) DeepCopy() *RancherSystemImages {
if in == nil {
return nil
}
out := new(RancherSystemImages)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Recipient) DeepCopyInto(out *Recipient) {
*out = *in

View File

@ -12,9 +12,13 @@ const (
RKESystemImagesFieldCanalNode = "canalNode"
RKESystemImagesFieldCertDownloader = "certDownloader"
RKESystemImagesFieldDNSmasq = "dnsmasq"
RKESystemImagesFieldDashboard = "dashboard"
RKESystemImagesFieldEtcd = "etcd"
RKESystemImagesFieldFlannel = "flannel"
RKESystemImagesFieldFlannelCNI = "flannelCni"
RKESystemImagesFieldGrafana = "grafana"
RKESystemImagesFieldHeapster = "heapster"
RKESystemImagesFieldInfluxdb = "influxdb"
RKESystemImagesFieldIngress = "ingress"
RKESystemImagesFieldIngressBackend = "ingressBackend"
RKESystemImagesFieldKubeDNS = "kubedns"
@ -24,6 +28,7 @@ const (
RKESystemImagesFieldKubernetesServicesSidecar = "kubernetesServicesSidecar"
RKESystemImagesFieldNginxProxy = "nginxProxy"
RKESystemImagesFieldPodInfraContainer = "podInfraContainer"
RKESystemImagesFieldTiller = "tiller"
RKESystemImagesFieldWeaveCNI = "weaveCni"
RKESystemImagesFieldWeaveNode = "weaveNode"
)
@ -39,9 +44,13 @@ type RKESystemImages struct {
CanalNode string `json:"canalNode,omitempty" yaml:"canalNode,omitempty"`
CertDownloader string `json:"certDownloader,omitempty" yaml:"certDownloader,omitempty"`
DNSmasq string `json:"dnsmasq,omitempty" yaml:"dnsmasq,omitempty"`
Dashboard string `json:"dashboard,omitempty" yaml:"dashboard,omitempty"`
Etcd string `json:"etcd,omitempty" yaml:"etcd,omitempty"`
Flannel string `json:"flannel,omitempty" yaml:"flannel,omitempty"`
FlannelCNI string `json:"flannelCni,omitempty" yaml:"flannelCni,omitempty"`
Grafana string `json:"grafana,omitempty" yaml:"grafana,omitempty"`
Heapster string `json:"heapster,omitempty" yaml:"heapster,omitempty"`
Influxdb string `json:"influxdb,omitempty" yaml:"influxdb,omitempty"`
Ingress string `json:"ingress,omitempty" yaml:"ingress,omitempty"`
IngressBackend string `json:"ingressBackend,omitempty" yaml:"ingressBackend,omitempty"`
KubeDNS string `json:"kubedns,omitempty" yaml:"kubedns,omitempty"`
@ -51,6 +60,7 @@ type RKESystemImages struct {
KubernetesServicesSidecar string `json:"kubernetesServicesSidecar,omitempty" yaml:"kubernetesServicesSidecar,omitempty"`
NginxProxy string `json:"nginxProxy,omitempty" yaml:"nginxProxy,omitempty"`
PodInfraContainer string `json:"podInfraContainer,omitempty" yaml:"podInfraContainer,omitempty"`
Tiller string `json:"tiller,omitempty" yaml:"tiller,omitempty"`
WeaveCNI string `json:"weaveCni,omitempty" yaml:"weaveCni,omitempty"`
WeaveNode string `json:"weaveNode,omitempty" yaml:"weaveNode,omitempty"`
}