mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-01-11 13:23:09 +01:00
This commit makes the Barman cloud plugin support the enforcement of retention policy as provided by the barman-cloud tool suite. The first recoverability point and the last successful backup are shown in the status of the ObjectStore resource for each involved server name. Signed-off-by: Leonardo Cecchi <leonardo.cecchi@enterprisedb.com> Signed-off-by: Armando Ruocco <armando.ruocco@enterprisedb.com> Signed-off-by: Marco Nenciarini <marco.nenciarini@enterprisedb.com> Co-authored-by: Armando Ruocco <armando.ruocco@enterprisedb.com> Co-authored-by: Marco Nenciarini <marco.nenciarini@enterprisedb.com>
15 lines
450 B
Bash
Executable File
15 lines
450 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# This script builds the images of the barman cloud plugin, to be used
|
|
# to quickly test images in a development environment.
|
|
#
|
|
# After each run, the built images will have these names:
|
|
#
|
|
# - `plugin-barman-cloud:dev`
|
|
# - `plugin-barman-cloud-sidecar:dev`
|
|
|
|
set -eu
|
|
|
|
docker build -t plugin-barman-cloud:dev --file containers/Dockerfile.plugin .
|
|
docker build -t plugin-barman-cloud-sidecar:dev --file containers/Dockerfile.sidecar .
|