Documentation ¶
Index ¶
Constants ¶
const ResourceQuotaName = "gardener"
ResourceQuotaName is the name of the default ResourceQuota resource that is created by Gardener in the project namespace.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ControlInterface ¶
type ControlInterface interface { // ReconcileProject implements the control logic for Project creation, update, and deletion. // If an implementation returns a non-nil error, the invocation will be retried using a rate-limited strategy. // Implementors should sink any errors that they do not wish to trigger a retry, and they may feel free to // exit exceptionally at any point provided they wish the update to be re-run at a later point in time. ReconcileProject(project *gardencorev1beta1.Project) (bool, error) }
ControlInterface implements the control logic for updating Projects. It is implemented as an interface to allow for extensions that provide different semantics. Currently, there is only one implementation.
func NewDefaultControl ¶
func NewDefaultControl(clientMap clientmap.ClientMap, config *config.ControllerManagerConfiguration, k8sGardenCoreInformers gardencoreinformers.SharedInformerFactory, recorder record.EventRecorder, namespaceLister kubecorev1listers.NamespaceLister) ControlInterface
NewDefaultControl returns a new instance of the default implementation ControlInterface that implements the documented semantics for Projects. updater is the UpdaterInterface used to update the status of Projects. You should use an instance returned from NewDefaultControl() for any scenario other than testing.
type Controller ¶
type Controller struct {
// contains filtered or unexported fields
}
Controller controls Projects.
func NewProjectController ¶
func NewProjectController(clientMap clientmap.ClientMap, gardenCoreInformerFactory gardencoreinformers.SharedInformerFactory, kubeInformerFactory kubeinformers.SharedInformerFactory, config *config.ControllerManagerConfiguration, recorder record.EventRecorder) *Controller
NewProjectController takes a Kubernetes client for the Garden clusters <k8sGardenClient>, a struct holding information about the acting Gardener, a <projectInformer>, and a <recorder> for event recording. It creates a new Gardener controller.
func (*Controller) CollectMetrics ¶ added in v0.33.0
func (c *Controller) CollectMetrics(ch chan<- prometheus.Metric)
CollectMetrics implements gardenmetrics.ControllerMetricsCollector interface
func (*Controller) Run ¶
func (c *Controller) Run(ctx context.Context, workers int)
Run runs the Controller until the given stop channel can be read from.
func (*Controller) RunningWorkers ¶
func (c *Controller) RunningWorkers() int
RunningWorkers returns the number of running workers.
type StaleControlInterface ¶ added in v1.7.0
type StaleControlInterface interface { // ReconcileProject implements the control logic for checking and potentially auto-deleting stale Projects. // If an implementation returns a non-nil error, the invocation will be retried using a rate-limited strategy. // Implementors should sink any errors that they do not wish to trigger a retry, and they may feel free to // exit exceptionally at any point provided they wish the update to be re-run at a later point in time. ReconcileStaleProject(project *gardencorev1beta1.Project, nowFunc func() metav1.Time) error }
StaleControlInterface implements the control logic for updating Projects. It is implemented as an interface to allow for extensions that provide different semantics. Currently, there is only one implementation.
func NewDefaultStaleControl ¶ added in v1.7.0
func NewDefaultStaleControl( clientMap clientmap.ClientMap, config *config.ControllerManagerConfiguration, shootLister gardencorelisters.ShootLister, plantLister gardencorelisters.PlantLister, backupEntryLister gardencorelisters.BackupEntryLister, secretBindingLister gardencorelisters.SecretBindingLister, quotaLister gardencorelisters.QuotaLister, namespaceLister kubecorev1listers.NamespaceLister, secretLister kubecorev1listers.SecretLister, ) StaleControlInterface
NewDefaultStaleControl returns a new instance of the default implementation StaleControlInterface that implements the documented semantics for Projects. updater is the UpdaterInterface used to update the status of Projects. You should use an instance returned from NewDefaultStaleControl() for any scenario other than testing.