mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-01-11 05:13:10 +01:00
18 lines
598 B
Go
18 lines
598 B
Go
package instance
|
|
|
|
import "github.com/cloudnative-pg/cnpg-i/pkg/identity"
|
|
|
|
const PluginName = "instance.barman-cloud.cloudnative-pg.io"
|
|
|
|
// 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",
|
|
}
|