Documentation ¶
Index ¶
Constants ¶
View Source
const ( // FinalizerName is the bastion controller finalizer. FinalizerName = "extensions.gardener.cloud/bastion" // ControllerName is the name of the controller ControllerName = "bastion_controller" )
Variables ¶
This section is empty.
Functions ¶
func Add ¶
Add creates a new Bastion Controller and adds it to the Manager. and Start it when the Manager is Started.
func DefaultPredicates ¶
DefaultPredicates returns the default predicates for a bastion reconciler.
func NewReconciler ¶
func NewReconciler(actuator Actuator) reconcile.Reconciler
NewReconciler creates a new reconcile.Reconciler that reconciles bastion resources of Gardener's `extensions.gardener.cloud` API group.
Types ¶
type Actuator ¶
type Actuator interface { // Reconcile reconciles the Bastion. Reconcile(context.Context, *extensionsv1alpha1.Bastion, *extensionscontroller.Cluster) error // Delete deletes the Bastion. Delete(context.Context, *extensionsv1alpha1.Bastion, *extensionscontroller.Cluster) error }
Actuator acts upon Bastion resources.
type AddArgs ¶
type AddArgs struct { // Actuator is a Bastion actuator. Actuator Actuator // ControllerOptions are the controller options used for creating a controller. // The options.Reconciler is always overridden with a reconciler created from the // given actuator. ControllerOptions controller.Options // Predicates are the predicates to use. // If unset, GenerationChangedPredicate will be used. Predicates []predicate.Predicate // Type is the type of the resource considered for reconciliation. Type string }
AddArgs are arguments for adding a Bastion controller to a manager.
Click to show internal directories.
Click to hide internal directories.