mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-07-07 02:02:21 +02:00
The ObjectStore controller now lists Roles by a label (barmancloud.cnpg.io/cluster) set by the Pre hook, inspects their rules to find which ObjectStores they reference, then fetches those ObjectStores and rebuilds the rules. This removes the clusters get/list/watch permission. Conflict handling uses RetryOnConflict to match the existing project pattern, and partial failures across Roles are aggregated with errors.Join instead of failing on the first one. Pre-existing Roles without the label won't be found by the ObjectStore controller until the Pre hook adds it on the next Cluster reconciliation. Same staleness window as the current main branch. Signed-off-by: Marco Nenciarini <marco.nenciarini@enterprisedb.com>
58 lines
2.0 KiB
Go
58 lines
2.0 KiB
Go
/*
|
|
Copyright © contributors to CloudNativePG, established as
|
|
CloudNativePG a Series of LF Projects, LLC.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
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 (
|
|
// ClusterLabelName is the label applied to RBAC resources created
|
|
// by this plugin. Its value is the name of the owning Cluster.
|
|
ClusterLabelName = "barmancloud.cnpg.io/cluster"
|
|
|
|
// 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"
|
|
|
|
// BarmanCertificatesPath is the path where the Barman
|
|
// certificates will be installed
|
|
BarmanCertificatesPath = "/barman-certificates"
|
|
|
|
// BarmanCertificatesFileName is the path where the Barman
|
|
// certificates will be used
|
|
BarmanCertificatesFileName = "barman-ca.crt"
|
|
)
|
|
|
|
// Data is the metadata of this plugin.
|
|
var Data = identity.GetPluginMetadataResponse{
|
|
Name: PluginName,
|
|
Version: "0.11.0", // x-release-please-version
|
|
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",
|
|
}
|