The operator deployment had --log-level=debug hardcoded, causing verbose
lifecycle and reconciliation logs in production (e.g. "generated patch",
WAL archiving details). This adds significant noise to log aggregation
systems (Loki, CloudWatch, etc.) without actionable signal.
Change the default to info. Debug logging is still available by patching
the deployment args or setting the flag explicitly.
Part of #917 (global default; Helm value and per-cluster override are
follow-up work).
The e2e kustomize overlay tried to match
`docker.io/library/plugin-barman-cloud` but the base kustomization at
`kubernetes/kustomization.yaml` already transforms the bare
`plugin-barman-cloud` image to the GHCR name. The overlay must match
the base's output (`ghcr.io/cloudnative-pg/plugin-barman-cloud-testing`)
to override it.
Broken since b7daaac (#89) changed the base kustomization's newName
from `docker.io/library/plugin-barman-cloud` to the GHCR image without
updating the e2e overlay.
Closes#840
Signed-off-by: Marco Nenciarini <marco.nenciarini@enterprisedb.com>
Run basic backup and restore tests for the plugin. Use MinIO for S3,
Azurite for ACS and fake-gcs-server for GCS.
Signed-off-by: Francesco Canovai <francesco.canovai@enterprisedb.com>