mirror of
https://github.com/rancher/types.git
synced 2025-04-27 10:20:48 +00:00
Generated changes
This commit is contained in:
parent
131b470971
commit
888c728bb0
@ -2966,7 +2966,7 @@ func (in *DNSConfig) DeepCopyInto(out *DNSConfig) {
|
||||
}
|
||||
if in.UpdateStrategy != nil {
|
||||
in, out := &in.UpdateStrategy, &out.UpdateStrategy
|
||||
*out = new(appsv1.DeploymentStrategy)
|
||||
*out = new(DeploymentStrategy)
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
if in.LinearAutoscalerParams != nil {
|
||||
@ -2987,6 +2987,48 @@ func (in *DNSConfig) DeepCopy() *DNSConfig {
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *DaemonSetUpdateStrategy) DeepCopyInto(out *DaemonSetUpdateStrategy) {
|
||||
*out = *in
|
||||
if in.RollingUpdate != nil {
|
||||
in, out := &in.RollingUpdate, &out.RollingUpdate
|
||||
*out = new(appsv1.RollingUpdateDaemonSet)
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DaemonSetUpdateStrategy.
|
||||
func (in *DaemonSetUpdateStrategy) DeepCopy() *DaemonSetUpdateStrategy {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(DaemonSetUpdateStrategy)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *DeploymentStrategy) DeepCopyInto(out *DeploymentStrategy) {
|
||||
*out = *in
|
||||
if in.RollingUpdate != nil {
|
||||
in, out := &in.RollingUpdate, &out.RollingUpdate
|
||||
*out = new(appsv1.RollingUpdateDeployment)
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeploymentStrategy.
|
||||
func (in *DeploymentStrategy) DeepCopy() *DeploymentStrategy {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(DeploymentStrategy)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *DiskVsphereOpts) DeepCopyInto(out *DiskVsphereOpts) {
|
||||
*out = *in
|
||||
@ -4505,7 +4547,7 @@ func (in *IngressConfig) DeepCopyInto(out *IngressConfig) {
|
||||
}
|
||||
if in.UpdateStrategy != nil {
|
||||
in, out := &in.UpdateStrategy, &out.UpdateStrategy
|
||||
*out = new(appsv1.DaemonSetUpdateStrategy)
|
||||
*out = new(DaemonSetUpdateStrategy)
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
return
|
||||
@ -5436,7 +5478,7 @@ func (in *MonitoringConfig) DeepCopyInto(out *MonitoringConfig) {
|
||||
}
|
||||
if in.UpdateStrategy != nil {
|
||||
in, out := &in.UpdateStrategy, &out.UpdateStrategy
|
||||
*out = new(appsv1.DeploymentStrategy)
|
||||
*out = new(DeploymentStrategy)
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
if in.Replicas != nil {
|
||||
@ -5785,7 +5827,7 @@ func (in *NetworkConfig) DeepCopyInto(out *NetworkConfig) {
|
||||
}
|
||||
if in.UpdateStrategy != nil {
|
||||
in, out := &in.UpdateStrategy, &out.UpdateStrategy
|
||||
*out = new(appsv1.DaemonSetUpdateStrategy)
|
||||
*out = new(DaemonSetUpdateStrategy)
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
return
|
||||
@ -6491,7 +6533,7 @@ func (in *Nodelocal) DeepCopyInto(out *Nodelocal) {
|
||||
*out = *in
|
||||
if in.UpdateStrategy != nil {
|
||||
in, out := &in.UpdateStrategy, &out.UpdateStrategy
|
||||
*out = new(appsv1.DaemonSetUpdateStrategy)
|
||||
*out = new(DaemonSetUpdateStrategy)
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
if in.NodeSelector != nil {
|
||||
|
@ -3,10 +3,10 @@ package client
|
||||
const (
|
||||
DaemonSetUpdateStrategyType = "daemonSetUpdateStrategy"
|
||||
DaemonSetUpdateStrategyFieldRollingUpdate = "rollingUpdate"
|
||||
DaemonSetUpdateStrategyFieldType = "type"
|
||||
DaemonSetUpdateStrategyFieldStrategy = "strategy"
|
||||
)
|
||||
|
||||
type DaemonSetUpdateStrategy struct {
|
||||
RollingUpdate *RollingUpdateDaemonSet `json:"rollingUpdate,omitempty" yaml:"rollingUpdate,omitempty"`
|
||||
Type string `json:"type,omitempty" yaml:"type,omitempty"`
|
||||
Strategy string `json:"strategy,omitempty" yaml:"strategy,omitempty"`
|
||||
}
|
||||
|
@ -3,10 +3,10 @@ package client
|
||||
const (
|
||||
DeploymentStrategyType = "deploymentStrategy"
|
||||
DeploymentStrategyFieldRollingUpdate = "rollingUpdate"
|
||||
DeploymentStrategyFieldType = "type"
|
||||
DeploymentStrategyFieldStrategy = "strategy"
|
||||
)
|
||||
|
||||
type DeploymentStrategy struct {
|
||||
RollingUpdate *RollingUpdateDeployment `json:"rollingUpdate,omitempty" yaml:"rollingUpdate,omitempty"`
|
||||
Type string `json:"type,omitempty" yaml:"type,omitempty"`
|
||||
Strategy string `json:"strategy,omitempty" yaml:"strategy,omitempty"`
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user