forked from cloudnative-pg/cloudnative-pg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
backup_webhook.go
120 lines (97 loc) · 4.45 KB
/
backup_webhook.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/*
Copyright The CloudNativePG Contributors
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.
*/
package v1
import (
apierrors "k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/apimachinery/pkg/util/validation/field"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/webhook"
"sigs.k8s.io/controller-runtime/pkg/webhook/admission"
"github.com/cloudnative-pg/cloudnative-pg/pkg/management/log"
"github.com/cloudnative-pg/cloudnative-pg/pkg/utils"
)
// backupLog is for logging in this package.
var backupLog = log.WithName("backup-resource").WithValues("version", "v1")
// SetupWebhookWithManager setup the webhook inside the controller manager
func (r *Backup) SetupWebhookWithManager(mgr ctrl.Manager) error {
return ctrl.NewWebhookManagedBy(mgr).
For(r).
Complete()
}
// +kubebuilder:webhook:webhookVersions={v1},admissionReviewVersions={v1},path=/mutate-postgresql-cnpg-io-v1-backup,mutating=true,failurePolicy=fail,groups=postgresql.cnpg.io,resources=backups,verbs=create;update,versions=v1,name=mbackup.cnpg.io,sideEffects=None
var _ webhook.Defaulter = &Backup{}
// Default implements webhook.Defaulter so a webhook will be registered for the type
func (r *Backup) Default() {
backupLog.Info("default", "name", r.Name, "namespace", r.Namespace)
}
// TODO(user): change verbs to "verbs=create;update;delete" if you want to enable deletion validation.
// +kubebuilder:webhook:webhookVersions={v1},admissionReviewVersions={v1},verbs=create;update,path=/validate-postgresql-cnpg-io-v1-backup,mutating=false,failurePolicy=fail,groups=postgresql.cnpg.io,resources=backups,versions=v1,name=vbackup.cnpg.io,sideEffects=None
var _ webhook.Validator = &Backup{}
// ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (r *Backup) ValidateCreate() (admission.Warnings, error) {
backupLog.Info("validate create", "name", r.Name, "namespace", r.Namespace)
allErrs := r.validate()
if len(allErrs) == 0 {
return nil, nil
}
return nil, apierrors.NewInvalid(
schema.GroupKind{Group: "postgresql.cnpg.io", Kind: "Backup"},
r.Name, allErrs)
}
// ValidateUpdate implements webhook.Validator so a webhook will be registered for the type
func (r *Backup) ValidateUpdate(_ runtime.Object) (admission.Warnings, error) {
backupLog.Info("validate update", "name", r.Name, "namespace", r.Namespace)
return r.ValidateCreate()
}
// ValidateDelete implements webhook.Validator so a webhook will be registered for the type
func (r *Backup) ValidateDelete() (admission.Warnings, error) {
backupLog.Info("validate delete", "name", r.Name, "namespace", r.Namespace)
return nil, nil
}
func (r *Backup) validate() field.ErrorList {
var result field.ErrorList
if r.Spec.Method == BackupMethodVolumeSnapshot && !utils.HaveVolumeSnapshot() {
result = append(result, field.Invalid(
field.NewPath("spec", "method"),
r.Spec.Method,
"Cannot use volumeSnapshot backup method due to missing "+
"VolumeSnapshot CRD. If you installed the CRD after having "+
"started the operator, please restart it to enable "+
"VolumeSnapshot support",
))
}
if r.Spec.Method == BackupMethodBarmanObjectStore && r.Spec.Online != nil {
result = append(result, field.Invalid(
field.NewPath("spec", "online"),
r.Spec.Online,
"Online parameter can be specified only if the backup method is volumeSnapshot",
))
}
if r.Spec.Method == BackupMethodBarmanObjectStore && r.Spec.OnlineConfiguration != nil {
result = append(result, field.Invalid(
field.NewPath("spec", "onlineConfiguration"),
r.Spec.OnlineConfiguration,
"OnlineConfiguration parameter can be specified only if the backup method is volumeSnapshot",
))
}
if r.Spec.Method == BackupMethodPlugin && r.Spec.PluginConfiguration.IsEmpty() {
result = append(result, field.Invalid(
field.NewPath("spec", "pluginConfiguration"),
r.Spec.OnlineConfiguration,
"cannot be empty when the backup method is plugin",
))
}
return result
}