mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-07-08 10:42:21 +02:00
fix: skip maintainance when not required
Perform maintenance cycle only when the plugin is enabled for backups and WAL archiving. Signed-off-by: Gabriele Fedi <gabriele.fedi@enterprisedb.com>
This commit is contained in:
parent
e8655233d6
commit
6005cb2532
@ -81,6 +81,8 @@ func (c *CatalogMaintenanceRunnable) Start(ctx context.Context) error {
|
|||||||
// cycle enforces the retention policies. On success, it returns the amount
|
// cycle enforces the retention policies. On success, it returns the amount
|
||||||
// of time to wait to the next check.
|
// of time to wait to the next check.
|
||||||
func (c *CatalogMaintenanceRunnable) cycle(ctx context.Context) (time.Duration, error) {
|
func (c *CatalogMaintenanceRunnable) cycle(ctx context.Context) (time.Duration, error) {
|
||||||
|
contextLogger := log.FromContext(ctx)
|
||||||
|
|
||||||
var cluster cnpgv1.Cluster
|
var cluster cnpgv1.Cluster
|
||||||
var barmanObjectStore barmancloudv1.ObjectStore
|
var barmanObjectStore barmancloudv1.ObjectStore
|
||||||
|
|
||||||
@ -88,7 +90,20 @@ func (c *CatalogMaintenanceRunnable) cycle(ctx context.Context) (time.Duration,
|
|||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enabledPlugins := cnpgv1.GetPluginConfigurationEnabledPluginNames(cluster.Spec.Plugins)
|
||||||
|
enabledForBackups := slices.Contains(enabledPlugins, metadata.PluginName)
|
||||||
|
|
||||||
|
if !enabledForBackups {
|
||||||
|
contextLogger.Debug("Skipping maintenance cycle." +
|
||||||
|
" Plugin is not enabled for backups")
|
||||||
|
return 0, nil
|
||||||
|
}
|
||||||
|
|
||||||
configuration := config.NewFromCluster(&cluster)
|
configuration := config.NewFromCluster(&cluster)
|
||||||
|
if configuration == nil || len(configuration.BarmanObjectName) == 0 {
|
||||||
|
return 0, fmt.Errorf("invalid configuration, missing barman object store reference")
|
||||||
|
}
|
||||||
|
|
||||||
if err := c.Client.Get(ctx, configuration.GetBarmanObjectKey(), &barmanObjectStore); err != nil {
|
if err := c.Client.Get(ctx, configuration.GetBarmanObjectKey(), &barmanObjectStore); err != nil {
|
||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user