Documentation
¶
Index ¶
- func DefaultScheme() *runtime.Scheme
- func NewManager(cfg *rest.Config, opts ctrl.Options, powerCheckInterval time.Duration, ...) (ctrl.Manager, error)
- func TaskOwnerIndexFunc(obj client.Object) []string
- type BMCOptions
- type ClientFunc
- type JobReconciler
- type MachineReconciler
- type Reconciler
- type TaskReconciler
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DefaultScheme ¶
DefaultScheme returns a scheme with all the types necessary for the Rufio controller.
func NewManager ¶
func TaskOwnerIndexFunc ¶
TaskOwnerIndexFunc is Indexer func which returns the owner name for obj.
Types ¶
type BMCOptions ¶
type BMCOptions struct {
*bmc.ProviderOptions
// contains filtered or unexported fields
}
type ClientFunc ¶
type ClientFunc func(ctx context.Context, log logr.Logger, hostIP, username, password string, opts *BMCOptions) (*bmclib.Client, error)
ClientFunc defines a func that returns a bmclib.Client.
func NewClientFunc ¶
func NewClientFunc(timeout time.Duration) ClientFunc
NewClientFunc returns a new BMCClientFactoryFunc. The timeout parameter determines the maximum time to probe for compatible interfaces.
type JobReconciler ¶
type JobReconciler struct {
// contains filtered or unexported fields
}
JobReconciler reconciles a Job object.
func NewJobReconciler ¶
func NewJobReconciler(c client.Client) *JobReconciler
NewJobReconciler returns a new JobReconciler.
func (*JobReconciler) Reconcile ¶
Reconcile runs a Job. Creates the individual Tasks on the cluster. Watches for Task and creates next Job Task based on conditions.
func (*JobReconciler) SetupWithManager ¶
func (r *JobReconciler) SetupWithManager(ctx context.Context, mgr ctrl.Manager, opts ctrlcontroller.Options) error
SetupWithManager sets up the controller with the Manager.
type MachineReconciler ¶
type MachineReconciler struct {
// contains filtered or unexported fields
}
MachineReconciler reconciles a Machine object.
func NewMachineReconciler ¶
func NewMachineReconciler(c client.Client, recorder record.EventRecorder, bmcClient ClientFunc, powerCheckInterval time.Duration) *MachineReconciler
NewMachineReconciler returns a new MachineReconciler.
func (*MachineReconciler) Reconcile ¶
Reconcile reports on the state of a Machine. It does not change the state of the Machine in any way. Updates the Power status and conditions accordingly.
func (*MachineReconciler) SetupWithManager ¶
func (r *MachineReconciler) SetupWithManager(mgr ctrl.Manager, opts ctrlcontroller.Options) error
SetupWithManager sets up the controller with the Manager.
type Reconciler ¶
type Reconciler struct {
// contains filtered or unexported fields
}
Reconciler is a type for managing Workflows.
func NewReconciler ¶
func NewReconciler(c client.Client) *Reconciler
TODO(jacobweinstock): add functional arguments to the signature. TODO(jacobweinstock): write functional argument for customizing the backoff.
func (*Reconciler) SetupWithManager ¶
func (r *Reconciler) SetupWithManager(ctx context.Context, mgr ctrl.Manager, bmcClient ClientFunc, powerCheckInterval time.Duration, opts ctrlcontroller.Options) error
type TaskReconciler ¶
type TaskReconciler struct {
// contains filtered or unexported fields
}
TaskReconciler reconciles a Task object.
func NewTaskReconciler ¶
func NewTaskReconciler(c client.Client, bmcClientFactory ClientFunc) *TaskReconciler
NewTaskReconciler returns a new TaskReconciler.
func (*TaskReconciler) Reconcile ¶
Reconcile runs a Task. Establishes a connection to the BMC. Runs the specified action in the Task.
func (*TaskReconciler) SetupWithManager ¶
func (r *TaskReconciler) SetupWithManager(mgr ctrl.Manager, opts ctrlcontroller.Options) error
SetupWithManager sets up the controller with the Manager.