Documentation ¶
Index ¶
- Variables
- func ExpirationDateExpired(timestamp *metav1.Time) bool
- func ForceMachineImageUpdateRequired(shootCurrentImage *gardencorev1beta1.ShootMachineImage, ...) bool
- func GroupHibernationSchedulesByLocation(schedules []gardencorev1beta1.HibernationSchedule) map[string][]gardencorev1beta1.HibernationSchedule
- func LocationLogger(logger logrus.FieldLogger, location *time.Location) logrus.FieldLogger
- func MaintainKubernetesVersion(shoot *gardencorev1beta1.Shoot, profile *gardencorev1beta1.CloudProfile, ...) (updatedKubernetesVersion *string, messageKubernetesUpdate *string, error error)
- func MaintainMachineImages(logger *logrus.Entry, shoot *gardencorev1beta1.Shoot, ...) (updatedMachineImages []*gardencorev1beta1.ShootMachineImage, reasons []string, ...)
- func NewHibernationJob(clientMap clientmap.ClientMap, logger logrus.FieldLogger, ...) cron.Job
- type Controller
- type Cron
- type HibernationSchedule
- type HibernationScheduleRegistry
- type MaintenanceControlInterface
- type QuotaControlInterface
Constants ¶
This section is empty.
Variables ¶
var ( // NewCronWithLocation creates a new cron with the given location. Exposed for testing. NewCronWithLocation = newCronWithLocation // TimeNow returns the current time. Exposed for testing. TimeNow = time.Now )
Functions ¶
func ExpirationDateExpired ¶
ExpirationDateExpired returns if now is equal or after the given expirationDate
func ForceMachineImageUpdateRequired ¶
func ForceMachineImageUpdateRequired(shootCurrentImage *gardencorev1beta1.ShootMachineImage, imageCloudProvider gardencorev1beta1.MachineImage) bool
ForceMachineImageUpdateRequired checks if the shoots current machine image has to be forcefully updated
func GroupHibernationSchedulesByLocation ¶
func GroupHibernationSchedulesByLocation(schedules []gardencorev1beta1.HibernationSchedule) map[string][]gardencorev1beta1.HibernationSchedule
GroupHibernationSchedulesByLocation groups the given HibernationSchedules by their Location. If the Location of a HibernationSchedule is `nil`, it is defaulted to UTC.
func LocationLogger ¶
func LocationLogger(logger logrus.FieldLogger, location *time.Location) logrus.FieldLogger
LocationLogger returns a logger for the given location.
func MaintainKubernetesVersion ¶
func MaintainKubernetesVersion(shoot *gardencorev1beta1.Shoot, profile *gardencorev1beta1.CloudProfile, logger *logrus.Entry) (updatedKubernetesVersion *string, messageKubernetesUpdate *string, error error)
MaintainKubernetesVersion determines if a shoots kubernetes version has to be maintained and in case returns the target version
func MaintainMachineImages ¶
func MaintainMachineImages(logger *logrus.Entry, shoot *gardencorev1beta1.Shoot, cloudProfile *gardencorev1beta1.CloudProfile) (updatedMachineImages []*gardencorev1beta1.ShootMachineImage, reasons []string, error error)
MaintainMachineImages determines if a shoots machine images have to be maintained and in case returns the target images
func NewHibernationJob ¶
func NewHibernationJob(clientMap clientmap.ClientMap, logger logrus.FieldLogger, recorder record.EventRecorder, target *gardencorev1beta1.Shoot, enabled bool) cron.Job
NewHibernationJob creates a new cron.Job that sets the hibernation of the given shoot to enabled when it triggers.
Types ¶
type Controller ¶
type Controller struct {
// contains filtered or unexported fields
}
Controller controls Shoots.
func NewShootController ¶
func NewShootController(clientMap clientmap.ClientMap, k8sGardenCoreInformers gardencoreinformers.SharedInformerFactory, kubeInformerFactory kubeinformers.SharedInformerFactory, config *config.ControllerManagerConfiguration, recorder record.EventRecorder) *Controller
NewShootController takes a ClientMap, a GardenerInformerFactory, a KubernetesInformerFactory, a ControllerManagerConfig struct and an EventRecorder to create a new Shoot controller.
func (*Controller) CollectMetrics ¶
func (c *Controller) CollectMetrics(ch chan<- prometheus.Metric)
CollectMetrics implements gardenmetrics.ControllerMetricsCollector interface
func (*Controller) Run ¶
func (c *Controller) Run(ctx context.Context, shootMaintenanceWorkers, shootQuotaWorkers, shootHibernationWorkers 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 HibernationSchedule ¶
HibernationSchedule is a mapping from location to a Cron. It controls the hibernation process of a certain shoot.
func ComputeHibernationSchedule ¶
func ComputeHibernationSchedule(clientMap clientmap.ClientMap, logger logrus.FieldLogger, recorder record.EventRecorder, shoot *gardencorev1beta1.Shoot) (HibernationSchedule, error)
ComputeHibernationSchedule computes the HibernationSchedule for the given Shoot.
type HibernationScheduleRegistry ¶
type HibernationScheduleRegistry interface { Load(key string) (schedule HibernationSchedule, ok bool) Store(key string, schedule HibernationSchedule) Delete(key string) }
HibernationScheduleRegistry is a goroutine-safe mapping of Shoot key to HibernationSchedule.
func NewHibernationScheduleRegistry ¶
func NewHibernationScheduleRegistry() HibernationScheduleRegistry
NewHibernationScheduleRegistry instantiates a new HibernationScheduleRegistry.
type MaintenanceControlInterface ¶
type MaintenanceControlInterface interface {
Maintain(shoot *gardencorev1beta1.Shoot, key string) error
}
MaintenanceControlInterface implements the control logic for maintaining Shoots. It is implemented as an interface to allow for extensions that provide different semantics. Currently, there is only one implementation.
func NewDefaultMaintenanceControl ¶
func NewDefaultMaintenanceControl(clientMap clientmap.ClientMap, k8sGardenCoreInformers gardencoreinformers.Interface, config config.ShootMaintenanceControllerConfiguration, recorder record.EventRecorder) MaintenanceControlInterface
NewDefaultMaintenanceControl returns a new instance of the default implementation MaintenanceControlInterface that implements the documented semantics for maintaining Shoots. You should use an instance returned from NewDefaultMaintenanceControl() for any scenario other than testing.
type QuotaControlInterface ¶
type QuotaControlInterface interface {
CheckQuota(shoot *gardencorev1beta1.Shoot, key string) error
}
QuotaControlInterface implements the control logic for quota management of Shoots. It is implemented as an interface to allow for extensions that provide different semantics. Currently, there is only one implementation.
func NewDefaultQuotaControl ¶
func NewDefaultQuotaControl(clientMap clientmap.ClientMap, k8sGardenCoreInformers gardencoreinformers.Interface) QuotaControlInterface
NewDefaultQuotaControl returns a new instance of the default implementation of QuotaControlInterface which implements the semantics for controlling the quota handling of Shoot resources.