Documentation
¶
Index ¶
- Constants
- type NodeSetReconciler
- func (r *NodeSetReconciler) EnqueueNodeSetAfter(nodeset *slinkyv1beta1.NodeSet, after time.Duration)
- func (r *NodeSetReconciler) NodeShouldRunDaemonPod(ctx context.Context, node *corev1.Node, nodeset *slinkyv1beta1.NodeSet) (bool, bool)
- func (r *NodeSetReconciler) Reconcile(ctx context.Context, req ctrl.Request) (res ctrl.Result, retErr error)
- func (r *NodeSetReconciler) SetupWithManager(mgr ctrl.Manager) error
- func (r *NodeSetReconciler) Sync(ctx context.Context, req reconcile.Request) error
Constants ¶
View Source
const ( ControllerName = "nodeset-controller" // BackoffGCInterval is the time that has to pass before next iteration of backoff GC is run BackoffGCInterval = 1 * time.Minute )
View Source
const ( // SelectingAllReason is added to an event when a NodeSet selects all Pods. SelectingAllReason = "SelectingAll" // FailedPlacementReason is added to an event when a NodeSet cannot schedule a Pod to a specified node. FailedPlacementReason = "FailedPlacement" // FailedNodeSetPodReason is added to an event when the status of a Pod of a NodeSet is 'Failed'. FailedNodeSetPodReason = "FailedNodeSetPod" )
Reasons for NodeSet events
View Source
const ( // FailedDaemonPodReason is added to an event when the status of a Pod of a DaemonSet is 'Failed'. FailedDaemonPodReason = "FailedDaemonPod" // SucceededDaemonPodReason is added to an event when the status of a Pod of a DaemonSet is 'Succeeded'. SucceededDaemonPodReason = "SucceededDaemonPod" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type NodeSetReconciler ¶
type NodeSetReconciler struct {
client.Client
Scheme *runtime.Scheme
ClientMap *clientmap.ClientMap
// contains filtered or unexported fields
}
NodeSetReconciler reconciles a NodeSet object
func NewReconciler ¶
func NewReconciler(c client.Client, cm *clientmap.ClientMap) *NodeSetReconciler
func (*NodeSetReconciler) EnqueueNodeSetAfter ¶
func (r *NodeSetReconciler) EnqueueNodeSetAfter(nodeset *slinkyv1beta1.NodeSet, after time.Duration)
EnqueueNodeSetAfter schedules a reconcile of the NodeSet after the given delay. It uses the shared durationStore so that the next Reconcile result will have RequeueAfter set.
func (*NodeSetReconciler) NodeShouldRunDaemonPod ¶
func (r *NodeSetReconciler) NodeShouldRunDaemonPod(ctx context.Context, node *corev1.Node, nodeset *slinkyv1beta1.NodeSet) (bool, bool)
NodeShouldRunDaemonPod checks a set of preconditions against a (node,daemonset) and returns a summary. Returned booleans are:
- shouldRun: Returns true when a daemonset should run on the node if a daemonset pod is not already running on that node.
- shouldContinueRunning: Returns true when a daemonset should continue running on a node if a daemonset pod is already running on that node.
func (*NodeSetReconciler) Reconcile ¶
func (r *NodeSetReconciler) Reconcile(ctx context.Context, req ctrl.Request) (res ctrl.Result, retErr error)
Reconcile is part of the main kubernetes reconciliation loop which aims to move the current state of the cluster closer to the desired state.
func (*NodeSetReconciler) SetupWithManager ¶
func (r *NodeSetReconciler) SetupWithManager(mgr ctrl.Manager) error
SetupWithManager sets up the controller with the Manager.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.