plugin-barman-cloud/internal/cnpgi/operator/constants.go
Leonardo Cecchi 88e8762858
chore: makes linter happy (#17)
Signed-off-by: Leonardo Cecchi <leonardo.cecchi@enterprisedb.com>
2024-10-01 11:54:07 +02:00

19 lines
640 B
Go

package operator
import "github.com/cloudnative-pg/cnpg-i/pkg/identity"
// PluginName is the name of this plugin
const PluginName = "operator.barman-cloud.cloudnative-pg.io"
// Data is the metadata of this plugin.
var Data = identity.GetPluginMetadataResponse{
Name: PluginName,
Version: "0.0.1",
DisplayName: "BarmanCloudOperator",
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",
}