Documentation ¶
Index ¶
Constants ¶
View Source
const ( // DefaultETCDQuota is the default etcd quota. DefaultETCDQuota = 8 * 1024 * 1024 * 1024 // 8Gi // SafeToEvictKey - annotation that ignores constraints to evict a pod like not being replicated, being on // kube-system namespace or having a local storage if set to "false". SafeToEvictKey = "cluster-autoscaler.kubernetes.io/safe-to-evict" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { // EnableBackupCompaction specifies whether backup compaction should be enabled. EnableBackupCompaction bool // Workers denotes the number of worker threads for the compaction controller. Workers int // EventsThreshold denotes total number of etcd events to be reached upon which a backup compaction job is triggered. EventsThreshold int64 // ActiveDeadlineDuration is the duration after which a running compaction job will be killed. ActiveDeadlineDuration time.Duration // MetricsScrapeWaitDuration is the duration to wait for after compaction job is completed, to allow Prometheus metrics to be scraped MetricsScrapeWaitDuration time.Duration // FeatureGates contains the feature gates to be used by Compaction Controller. FeatureGates map[featuregate.Feature]bool }
Config contains configuration for the Compaction Controller.
func (*Config) CaptureFeatureActivations ¶
func (cfg *Config) CaptureFeatureActivations(fg featuregate.FeatureGate)
CaptureFeatureActivations captures all feature gates required by the controller into controller config
func (*Config) InitFromFlags ¶
InitFromFlags initializes the compaction controller config from the provided CLI flag set.
type Reconciler ¶
Reconciler reconciles compaction jobs for Etcd resources.
func NewReconciler ¶
func NewReconciler(mgr manager.Manager, config *Config) (*Reconciler, error)
NewReconciler creates a new reconciler for Compaction
func NewReconcilerWithImageVector ¶
func NewReconcilerWithImageVector(mgr manager.Manager, config *Config, imageVector imagevector.ImageVector) *Reconciler
NewReconcilerWithImageVector creates a new reconciler for Compaction with an ImageVector. This constructor will mostly be used by tests.
func (*Reconciler) RegisterWithManager ¶
func (r *Reconciler) RegisterWithManager(mgr ctrl.Manager) error
RegisterWithManager registers the Compaction Controller with the given controller manager.
Click to show internal directories.
Click to hide internal directories.