mirror of
https://github.com/rancher/rke.git
synced 2025-08-16 22:06:59 +00:00
generated data/types
This commit is contained in:
parent
4e31add8fe
commit
467f59ff90
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -22,6 +22,7 @@ package types
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
appsv1 "k8s.io/api/apps/v1"
|
appsv1 "k8s.io/api/apps/v1"
|
||||||
|
corev1 "k8s.io/api/core/v1"
|
||||||
runtime "k8s.io/apimachinery/pkg/runtime"
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
||||||
v1alpha1 "k8s.io/apiserver/pkg/apis/apiserver/v1alpha1"
|
v1alpha1 "k8s.io/apiserver/pkg/apis/apiserver/v1alpha1"
|
||||||
v1 "k8s.io/apiserver/pkg/apis/audit/v1"
|
v1 "k8s.io/apiserver/pkg/apis/audit/v1"
|
||||||
@ -468,6 +469,13 @@ func (in *DNSConfig) DeepCopyInto(out *DNSConfig) {
|
|||||||
*out = new(LinearAutoscalerParams)
|
*out = new(LinearAutoscalerParams)
|
||||||
**out = **in
|
**out = **in
|
||||||
}
|
}
|
||||||
|
if in.Tolerations != nil {
|
||||||
|
in, out := &in.Tolerations, &out.Tolerations
|
||||||
|
*out = make([]corev1.Toleration, len(*in))
|
||||||
|
for i := range *in {
|
||||||
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
||||||
|
}
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -843,6 +851,13 @@ func (in *IngressConfig) DeepCopyInto(out *IngressConfig) {
|
|||||||
*out = new(DaemonSetUpdateStrategy)
|
*out = new(DaemonSetUpdateStrategy)
|
||||||
(*in).DeepCopyInto(*out)
|
(*in).DeepCopyInto(*out)
|
||||||
}
|
}
|
||||||
|
if in.Tolerations != nil {
|
||||||
|
in, out := &in.Tolerations, &out.Tolerations
|
||||||
|
*out = make([]corev1.Toleration, len(*in))
|
||||||
|
for i := range *in {
|
||||||
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
||||||
|
}
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1109,6 +1124,13 @@ func (in *MonitoringConfig) DeepCopyInto(out *MonitoringConfig) {
|
|||||||
*out = new(int32)
|
*out = new(int32)
|
||||||
**out = **in
|
**out = **in
|
||||||
}
|
}
|
||||||
|
if in.Tolerations != nil {
|
||||||
|
in, out := &in.Tolerations, &out.Tolerations
|
||||||
|
*out = make([]corev1.Toleration, len(*in))
|
||||||
|
for i := range *in {
|
||||||
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
||||||
|
}
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1169,6 +1191,13 @@ func (in *NetworkConfig) DeepCopyInto(out *NetworkConfig) {
|
|||||||
*out = new(DaemonSetUpdateStrategy)
|
*out = new(DaemonSetUpdateStrategy)
|
||||||
(*in).DeepCopyInto(*out)
|
(*in).DeepCopyInto(*out)
|
||||||
}
|
}
|
||||||
|
if in.Tolerations != nil {
|
||||||
|
in, out := &in.Tolerations, &out.Tolerations
|
||||||
|
*out = make([]corev1.Toleration, len(*in))
|
||||||
|
for i := range *in {
|
||||||
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
||||||
|
}
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user