mirror of
https://github.com/rancher/types.git
synced 2025-06-24 04:37:03 +00:00
generated changes
This commit is contained in:
parent
8a402f4698
commit
f999bb990d
@ -2204,6 +2204,13 @@ func (in *MachineStatus) DeepCopyInto(out *MachineStatus) {
|
||||
(*out)[key] = val
|
||||
}
|
||||
}
|
||||
if in.NodeTaints != nil {
|
||||
in, out := &in.NodeTaints, &out.NodeTaints
|
||||
*out = make([]v1.Taint, len(*in))
|
||||
for i := range *in {
|
||||
(*in)[i].DeepCopyInto(&(*out)[i])
|
||||
}
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -25,6 +25,7 @@ const (
|
||||
MachineFieldNodeAnnotations = "nodeAnnotations"
|
||||
MachineFieldNodeLabels = "nodeLabels"
|
||||
MachineFieldNodeName = "nodeName"
|
||||
MachineFieldNodeTaints = "nodeTaints"
|
||||
MachineFieldOwnerReferences = "ownerReferences"
|
||||
MachineFieldPodCidr = "podCidr"
|
||||
MachineFieldProviderId = "providerId"
|
||||
@ -65,6 +66,7 @@ type Machine struct {
|
||||
NodeAnnotations map[string]string `json:"nodeAnnotations,omitempty"`
|
||||
NodeLabels map[string]string `json:"nodeLabels,omitempty"`
|
||||
NodeName string `json:"nodeName,omitempty"`
|
||||
NodeTaints []Taint `json:"nodeTaints,omitempty"`
|
||||
OwnerReferences []OwnerReference `json:"ownerReferences,omitempty"`
|
||||
PodCidr string `json:"podCidr,omitempty"`
|
||||
ProviderId string `json:"providerId,omitempty"`
|
||||
|
@ -12,6 +12,7 @@ const (
|
||||
MachineStatusFieldNodeAnnotations = "nodeAnnotations"
|
||||
MachineStatusFieldNodeLabels = "nodeLabels"
|
||||
MachineStatusFieldNodeName = "nodeName"
|
||||
MachineStatusFieldNodeTaints = "nodeTaints"
|
||||
MachineStatusFieldRequested = "requested"
|
||||
MachineStatusFieldSSHUser = "sshUser"
|
||||
MachineStatusFieldVolumesAttached = "volumesAttached"
|
||||
@ -29,6 +30,7 @@ type MachineStatus struct {
|
||||
NodeAnnotations map[string]string `json:"nodeAnnotations,omitempty"`
|
||||
NodeLabels map[string]string `json:"nodeLabels,omitempty"`
|
||||
NodeName string `json:"nodeName,omitempty"`
|
||||
NodeTaints []Taint `json:"nodeTaints,omitempty"`
|
||||
Requested map[string]string `json:"requested,omitempty"`
|
||||
SSHUser string `json:"sshUser,omitempty"`
|
||||
VolumesAttached map[string]AttachedVolume `json:"volumesAttached,omitempty"`
|
||||
|
@ -3,12 +3,12 @@ package client
|
||||
const (
|
||||
DeploymentParallelConfigType = "deploymentParallelConfig"
|
||||
DeploymentParallelConfigFieldMinReadySeconds = "minReadySeconds"
|
||||
DeploymentParallelConfigFieldProgressDeadlineSeconds = "progressDeadlineSeconds"
|
||||
DeploymentParallelConfigFieldProgressDeadlineSeconds = "processDeadlineSeconds"
|
||||
DeploymentParallelConfigFieldStartFirst = "startFirst"
|
||||
)
|
||||
|
||||
type DeploymentParallelConfig struct {
|
||||
MinReadySeconds *int64 `json:"minReadySeconds,omitempty"`
|
||||
ProgressDeadlineSeconds *int64 `json:"progressDeadlineSeconds,omitempty"`
|
||||
ProgressDeadlineSeconds *int64 `json:"processDeadlineSeconds,omitempty"`
|
||||
StartFirst *bool `json:"startFirst,omitempty"`
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user