mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-07-10 11:42:20 +02:00
Compare commits
8 Commits
c8fde274cd
...
7bfb8cf7f8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7bfb8cf7f8 | ||
|
|
7b703aae37 | ||
|
|
1f876c27ef | ||
|
|
46420816b4 | ||
|
|
8c8fb26615 | ||
|
|
9daabd3432 | ||
|
|
8899349111 | ||
|
|
d385ccd4a9 |
@ -1,67 +0,0 @@
|
|||||||
/*
|
|
||||||
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 common
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
|
|
||||||
cnpgv1 "github.com/cloudnative-pg/cloudnative-pg/api/v1"
|
|
||||||
"github.com/cloudnative-pg/machinery/pkg/log"
|
|
||||||
"github.com/spf13/viper"
|
|
||||||
"k8s.io/apimachinery/pkg/runtime"
|
|
||||||
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
||||||
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
|
|
||||||
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
|
|
||||||
"sigs.k8s.io/controller-runtime/pkg/scheme"
|
|
||||||
|
|
||||||
barmancloudv1 "github.com/cloudnative-pg/plugin-barman-cloud/api/v1"
|
|
||||||
)
|
|
||||||
|
|
||||||
// GenerateScheme creates a runtime.Scheme object with all the
|
|
||||||
// definition needed to support the sidecar. This allows
|
|
||||||
// the plugin to be used in every CNPG-based operator.
|
|
||||||
func GenerateScheme(ctx context.Context) *runtime.Scheme {
|
|
||||||
result := runtime.NewScheme()
|
|
||||||
|
|
||||||
utilruntime.Must(barmancloudv1.AddToScheme(result))
|
|
||||||
utilruntime.Must(clientgoscheme.AddToScheme(result))
|
|
||||||
|
|
||||||
cnpgGroup := viper.GetString("custom-cnpg-group")
|
|
||||||
cnpgVersion := viper.GetString("custom-cnpg-version")
|
|
||||||
if len(cnpgGroup) == 0 {
|
|
||||||
cnpgGroup = cnpgv1.SchemeGroupVersion.Group
|
|
||||||
}
|
|
||||||
if len(cnpgVersion) == 0 {
|
|
||||||
cnpgVersion = cnpgv1.SchemeGroupVersion.Version
|
|
||||||
}
|
|
||||||
|
|
||||||
// Proceed with custom registration of the CNPG scheme
|
|
||||||
schemeGroupVersion := schema.GroupVersion{Group: cnpgGroup, Version: cnpgVersion}
|
|
||||||
schemeBuilder := &scheme.Builder{GroupVersion: schemeGroupVersion}
|
|
||||||
schemeBuilder.Register(&cnpgv1.Cluster{}, &cnpgv1.ClusterList{})
|
|
||||||
schemeBuilder.Register(&cnpgv1.Backup{}, &cnpgv1.BackupList{})
|
|
||||||
schemeBuilder.Register(&cnpgv1.ScheduledBackup{}, &cnpgv1.ScheduledBackupList{})
|
|
||||||
utilruntime.Must(schemeBuilder.AddToScheme(result))
|
|
||||||
|
|
||||||
schemeLog := log.FromContext(ctx)
|
|
||||||
schemeLog.Info("CNPG types registration", "schemeGroupVersion", schemeGroupVersion)
|
|
||||||
|
|
||||||
return result
|
|
||||||
}
|
|
||||||
@ -27,18 +27,21 @@ import (
|
|||||||
"github.com/cloudnative-pg/machinery/pkg/log"
|
"github.com/cloudnative-pg/machinery/pkg/log"
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
corev1 "k8s.io/api/core/v1"
|
corev1 "k8s.io/api/core/v1"
|
||||||
|
"k8s.io/apimachinery/pkg/runtime"
|
||||||
"k8s.io/apimachinery/pkg/types"
|
"k8s.io/apimachinery/pkg/types"
|
||||||
|
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
|
||||||
|
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
|
||||||
ctrl "sigs.k8s.io/controller-runtime"
|
ctrl "sigs.k8s.io/controller-runtime"
|
||||||
"sigs.k8s.io/controller-runtime/pkg/client"
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
||||||
|
|
||||||
barmancloudv1 "github.com/cloudnative-pg/plugin-barman-cloud/api/v1"
|
barmancloudv1 "github.com/cloudnative-pg/plugin-barman-cloud/api/v1"
|
||||||
"github.com/cloudnative-pg/plugin-barman-cloud/internal/cnpgi/common"
|
|
||||||
extendedclient "github.com/cloudnative-pg/plugin-barman-cloud/internal/cnpgi/instance/internal/client"
|
extendedclient "github.com/cloudnative-pg/plugin-barman-cloud/internal/cnpgi/instance/internal/client"
|
||||||
|
pluginscheme "github.com/cloudnative-pg/plugin-barman-cloud/internal/scheme"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Start starts the sidecar informers and CNPG-i server
|
// Start starts the sidecar informers and CNPG-i server
|
||||||
func Start(ctx context.Context) error {
|
func Start(ctx context.Context) error {
|
||||||
scheme := common.GenerateScheme(ctx)
|
scheme := generateScheme(ctx)
|
||||||
|
|
||||||
setupLog := log.FromContext(ctx)
|
setupLog := log.FromContext(ctx)
|
||||||
setupLog.Info("Starting barman cloud instance plugin")
|
setupLog.Info("Starting barman cloud instance plugin")
|
||||||
@ -114,3 +117,16 @@ func Start(ctx context.Context) error {
|
|||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// generateScheme creates a runtime.Scheme object with all the
|
||||||
|
// definition needed to support the sidecar. This allows
|
||||||
|
// the plugin to be used in every CNPG-based operator.
|
||||||
|
func generateScheme(ctx context.Context) *runtime.Scheme {
|
||||||
|
result := runtime.NewScheme()
|
||||||
|
|
||||||
|
utilruntime.Must(barmancloudv1.AddToScheme(result))
|
||||||
|
utilruntime.Must(clientgoscheme.AddToScheme(result))
|
||||||
|
pluginscheme.AddCNPGToScheme(ctx, result)
|
||||||
|
|
||||||
|
return result
|
||||||
|
}
|
||||||
|
|||||||
@ -42,13 +42,6 @@ import (
|
|||||||
// This function is called from the Pre hook (gRPC). It creates the
|
// This function is called from the Pre hook (gRPC). It creates the
|
||||||
// Role if it does not exist, then patches rules and labels to match
|
// Role if it does not exist, then patches rules and labels to match
|
||||||
// the desired state.
|
// the desired state.
|
||||||
//
|
|
||||||
// Note: the ObjectStore controller (EnsureRoleRules) can patch the
|
|
||||||
// same Role concurrently. Both paths use RetryOnConflict but compute
|
|
||||||
// desired rules from their own view of ObjectStores. If the Pre hook
|
|
||||||
// reads stale ObjectStore data from the informer cache, it may
|
|
||||||
// briefly revert a fresher update. This is self-healing: the next
|
|
||||||
// ObjectStore reconcile restores the correct state.
|
|
||||||
func EnsureRole(
|
func EnsureRole(
|
||||||
ctx context.Context,
|
ctx context.Context,
|
||||||
c client.Client,
|
c client.Client,
|
||||||
|
|||||||
@ -33,11 +33,6 @@ import (
|
|||||||
// the operator does not know the CNPG API group at compile time
|
// the operator does not know the CNPG API group at compile time
|
||||||
// (it may be customized), while the Cluster object decoded from
|
// (it may be customized), while the Cluster object decoded from
|
||||||
// the gRPC request carries the correct GVK in its TypeMeta.
|
// the gRPC request carries the correct GVK in its TypeMeta.
|
||||||
//
|
|
||||||
// This function replaces all existing owner references rather than
|
|
||||||
// merging, so it assumes the controlled object has a single owner.
|
|
||||||
// This holds for plugin-managed Roles and RoleBindings, which are
|
|
||||||
// exclusively owned by one Cluster.
|
|
||||||
func SetControllerReference(owner, controlled metav1.Object) error {
|
func SetControllerReference(owner, controlled metav1.Object) error {
|
||||||
ro, ok := owner.(runtime.Object)
|
ro, ok := owner.(runtime.Object)
|
||||||
if !ok {
|
if !ok {
|
||||||
|
|||||||
@ -25,20 +25,38 @@ import (
|
|||||||
"github.com/cloudnative-pg/machinery/pkg/log"
|
"github.com/cloudnative-pg/machinery/pkg/log"
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
corev1 "k8s.io/api/core/v1"
|
corev1 "k8s.io/api/core/v1"
|
||||||
|
"k8s.io/apimachinery/pkg/runtime"
|
||||||
|
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
|
||||||
|
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
|
||||||
ctrl "sigs.k8s.io/controller-runtime"
|
ctrl "sigs.k8s.io/controller-runtime"
|
||||||
"sigs.k8s.io/controller-runtime/pkg/client"
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
||||||
|
|
||||||
barmancloudv1 "github.com/cloudnative-pg/plugin-barman-cloud/api/v1"
|
barmancloudv1 "github.com/cloudnative-pg/plugin-barman-cloud/api/v1"
|
||||||
"github.com/cloudnative-pg/plugin-barman-cloud/internal/cnpgi/common"
|
pluginscheme "github.com/cloudnative-pg/plugin-barman-cloud/internal/scheme"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// generateScheme creates a runtime.Scheme with all type definitions
|
||||||
|
// needed by the restore sidecar. CNPG types are registered under a
|
||||||
|
// configurable API group to support custom CNPG-based operators.
|
||||||
|
func generateScheme(ctx context.Context) *runtime.Scheme {
|
||||||
|
result := runtime.NewScheme()
|
||||||
|
|
||||||
|
utilruntime.Must(barmancloudv1.AddToScheme(result))
|
||||||
|
utilruntime.Must(clientgoscheme.AddToScheme(result))
|
||||||
|
pluginscheme.AddCNPGToScheme(ctx, result)
|
||||||
|
|
||||||
|
return result
|
||||||
|
}
|
||||||
|
|
||||||
// Start starts the sidecar informers and CNPG-i server
|
// Start starts the sidecar informers and CNPG-i server
|
||||||
func Start(ctx context.Context) error {
|
func Start(ctx context.Context) error {
|
||||||
setupLog := log.FromContext(ctx)
|
setupLog := log.FromContext(ctx)
|
||||||
setupLog.Info("Starting barman cloud instance plugin")
|
setupLog.Info("Starting barman cloud instance plugin")
|
||||||
|
|
||||||
|
scheme := generateScheme(ctx)
|
||||||
|
|
||||||
mgr, err := ctrl.NewManager(ctrl.GetConfigOrDie(), ctrl.Options{
|
mgr, err := ctrl.NewManager(ctrl.GetConfigOrDie(), ctrl.Options{
|
||||||
Scheme: common.GenerateScheme(ctx),
|
Scheme: scheme,
|
||||||
Client: client.Options{
|
Client: client.Options{
|
||||||
Cache: &client.CacheOptions{
|
Cache: &client.CacheOptions{
|
||||||
DisableFor: []client.Object{
|
DisableFor: []client.Object{
|
||||||
|
|||||||
@ -68,10 +68,6 @@ func (r *ObjectStoreReconciler) Reconcile(ctx context.Context, req ctrl.Request)
|
|||||||
|
|
||||||
contextLogger.Info("ObjectStore reconciliation start")
|
contextLogger.Info("ObjectStore reconciliation start")
|
||||||
|
|
||||||
// NOTE: Roles created before the introduction of ClusterLabelName
|
|
||||||
// are not discovered here. The Pre hook patches the label on every
|
|
||||||
// Cluster reconciliation, so unlabeled Roles are picked up after
|
|
||||||
// the next Cluster reconcile cycle.
|
|
||||||
var roleList rbacv1.RoleList
|
var roleList rbacv1.RoleList
|
||||||
if err := r.List(ctx, &roleList,
|
if err := r.List(ctx, &roleList,
|
||||||
client.InNamespace(req.Namespace),
|
client.InNamespace(req.Namespace),
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user