Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions machineconfiguration/v1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -811,6 +811,11 @@ type KubeletConfigCondition struct {
type KubeletConfigStatusConditionType string

const (
// KubeletConfigAccepted designates whether a KubeletConfig CR has been accepted.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

// When the condition status is True, the KubeletConfig has been accepted successfully.
// When the condition status is False, the KubeletConfig has not been accepted.
KubeletConfigAccepted KubeletConfigStatusConditionType = "KubeletConfig has been accepted"

// KubeletConfigSuccess designates a successful application of a KubeletConfig CR.
KubeletConfigSuccess KubeletConfigStatusConditionType = "Success"

Expand Down