mirror of
https://github.com/rancher/types.git
synced 2025-09-01 21:32:10 +00:00
generated changes
This commit is contained in:
committed by
Darren Shepherd
parent
8a402f4698
commit
f999bb990d
@@ -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"`
|
||||
}
|
||||
|
Reference in New Issue
Block a user