Versions in this module Expand all Collapse all v0 v0.1.4 Jun 27, 2019 Changes in this version + const NodeNameEnvVar + func AddWithActuator(mgr manager.Manager, actuator Actuator) error + type Actuator interface + Create func(context.Context, *clusterv1.Cluster, *clusterv1.Machine) error + Delete func(context.Context, *clusterv1.Cluster, *clusterv1.Machine) error + Exists func(context.Context, *clusterv1.Cluster, *clusterv1.Machine) (bool, error) + Update func(context.Context, *clusterv1.Cluster, *clusterv1.Machine) error + var DefaultActuator Actuator + type ReconcileMachine struct + func (r *ReconcileMachine) Reconcile(request reconcile.Request) (reconcile.Result, error) + type TestActuator struct + BlockOnCreate bool + BlockOnDelete bool + BlockOnExists bool + BlockOnUpdate bool + CreateCallCount int64 + DeleteCallCount int64 + ExistsCallCount int64 + ExistsValue bool + Lock sync.Mutex + UpdateCallCount int64 + func (a *TestActuator) Create(context.Context, *v1alpha1.Cluster, *v1alpha1.Machine) error + func (a *TestActuator) Delete(context.Context, *v1alpha1.Cluster, *v1alpha1.Machine) error + func (a *TestActuator) Exists(context.Context, *v1alpha1.Cluster, *v1alpha1.Machine) (bool, error) + func (a *TestActuator) Unblock() + func (a *TestActuator) Update(ctx context.Context, c *v1alpha1.Cluster, machine *v1alpha1.Machine) error