Skip to content

Commit

Permalink
Update Taints field comment in machine spec
Browse files Browse the repository at this point in the history
  • Loading branch information
vikaschoudhary16 committed Mar 21, 2019
1 parent b37e61d commit 8f022b1
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pkg/apis/cluster/v1alpha1/machine_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,12 @@ type MachineSpec struct {
// +optional
metav1.ObjectMeta `json:"metadata,omitempty"`

// Taints is the full, authoritative list of taints to apply to the corresponding
// Node. This list will overwrite any modifications made to the Node on
// an ongoing basis.
// The list of the taints to be applied to the corresponding Node in additive
// manner. This list will not overwrite any other taints added to the Node on
// an ongoing basis by other entities. These taints should be actively reconciled
// e.g. if you ask the machine controller to apply a taint and then manually remove
// the taint the machine controller will put it back) but not have the machine controller
// remove any taints
// +optional
Taints []corev1.Taint `json:"taints,omitempty"`

Expand Down

0 comments on commit 8f022b1

Please sign in to comment.