forked from Azure/azure-service-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostgresqlfirewallrule_controller.go
30 lines (22 loc) · 1.04 KB
/
postgresqlfirewallrule_controller.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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
package controllers
import (
"context"
ctrl "sigs.k8s.io/controller-runtime"
azurev1alpha1 "github.com/Azure/azure-service-operator/api/v1alpha1"
)
// PostgreSQLFirewallRuleReconciler reconciles a PostgreSQLFirewallRule object
type PostgreSQLFirewallRuleReconciler struct {
Reconciler *AsyncReconciler
}
// +kubebuilder:rbac:groups=azure.microsoft.com,resources=postgresqlfirewallrules,verbs=get;list;watch;create;update;patch;delete
// +kubebuilder:rbac:groups=azure.microsoft.com,resources={postgresqlfirewallrules/status,postgresqlfirewallrules/finalizers},verbs=get;update;patch
func (r *PostgreSQLFirewallRuleReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
return r.Reconciler.Reconcile(ctx, req, &azurev1alpha1.PostgreSQLFirewallRule{})
}
func (r *PostgreSQLFirewallRuleReconciler) SetupWithManager(mgr ctrl.Manager) error {
return ctrl.NewControllerManagedBy(mgr).
For(&azurev1alpha1.PostgreSQLFirewallRule{}).
Complete(r)
}