forked from Azure/azure-service-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazuresqlfirewallrule_controller.go
32 lines (24 loc) · 1.14 KB
/
azuresqlfirewallrule_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
31
32
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
package controllers
import (
"context"
ctrl "sigs.k8s.io/controller-runtime"
"github.com/Azure/azure-service-operator/api/v1beta1"
)
// AzureSqlFirewallRuleReconciler reconciles a AzureSqlFirewallRule object
type AzureSqlFirewallRuleReconciler struct {
Reconciler *AsyncReconciler
}
// +kubebuilder:rbac:groups=azure.microsoft.com,resources=azuresqlfirewallrules,verbs=get;list;watch;create;update;patch;delete
// +kubebuilder:rbac:groups=azure.microsoft.com,resources={azuresqlfirewallrules/status,azuresqlfirewallrules/finalizers},verbs=get;update;patch
// Reconcile function does the main reconciliation loop of the operator
func (r *AzureSqlFirewallRuleReconciler) Reconcile(ctx context.Context, req ctrl.Request) (result ctrl.Result, err error) {
return r.Reconciler.Reconcile(ctx, req, &v1beta1.AzureSqlFirewallRule{})
}
// SetupWithManager function sets up the functions with the controller
func (r *AzureSqlFirewallRuleReconciler) SetupWithManager(mgr ctrl.Manager) error {
return ctrl.NewControllerManagedBy(mgr).
For(&v1beta1.AzureSqlFirewallRule{}).
Complete(r)
}