mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-01-11 13:23:09 +01:00
Signed-off-by: Armando Ruocco <armando.ruocco@enterprisedb.com> Signed-off-by: Francesco Canovai <francesco.canovai@enterprisedb.com> Signed-off-by: Marco Nenciarini <marco.nenciarini@enterprisedb.com> Signed-off-by: Leonardo Cecchi <leonardo.cecchi@enterprisedb.com> Co-authored-by: Francesco Canovai <francesco.canovai@enterprisedb.com> Co-authored-by: Marco Nenciarini <marco.nenciarini@enterprisedb.com> Co-authored-by: Leonardo Cecchi <leonardo.cecchi@enterprisedb.com>
27 lines
906 B
Go
27 lines
906 B
Go
package metadata
|
|
|
|
import "github.com/cloudnative-pg/cnpg-i/pkg/identity"
|
|
|
|
// PluginName is the name of the plugin from the instance manager
|
|
// Point-of-view
|
|
const PluginName = "barman-cloud.cloudnative-pg.io"
|
|
|
|
const (
|
|
// CheckEmptyWalArchiveFile is the name of the file in the PGDATA that,
|
|
// if present, requires the WAL archiver to check that the backup object
|
|
// store is empty.
|
|
CheckEmptyWalArchiveFile = ".check-empty-wal-archive"
|
|
)
|
|
|
|
// Data is the metadata of this plugin.
|
|
var Data = identity.GetPluginMetadataResponse{
|
|
Name: PluginName,
|
|
Version: "0.0.1",
|
|
DisplayName: "BarmanCloudInstance",
|
|
ProjectUrl: "https://github.com/cloudnative-pg/plugin-barman-cloud",
|
|
RepositoryUrl: "https://github.com/cloudnative-pg/plugin-barman-cloud",
|
|
License: "APACHE 2.0",
|
|
LicenseUrl: "https://github.com/cloudnative-pg/plugin-barman-cloud/LICENSE",
|
|
Maturity: "alpha",
|
|
}
|