forked from Azure/azure-service-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresourcegroup_controller.go
More file actions
40 lines (32 loc) · 1.5 KB
/
resourcegroup_controller.go
File metadata and controls
40 lines (32 loc) · 1.5 KB
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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
package controllers
import (
"context"
"k8s.io/client-go/tools/record"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"
azurev1alpha1 "github.com/Azure/azure-service-operator/api/v1alpha1"
resourcegroupsresourcemanager "github.com/Azure/azure-service-operator/pkg/resourcemanager/resourcegroups"
"github.com/Azure/azure-service-operator/pkg/telemetry"
)
// ResourceGroupReconciler reconciles a ResourceGroup object
type ResourceGroupReconciler struct {
client.Client
Telemetry telemetry.Telemetry
Recorder record.EventRecorder
Reconciler *AsyncReconciler
ResourceGroupManager resourcegroupsresourcemanager.ResourceGroupManager
}
// +kubebuilder:rbac:groups=azure.microsoft.com,resources=resourcegroups,verbs=get;list;watch;create;update;patch;delete
// +kubebuilder:rbac:groups=azure.microsoft.com,resources={resourcegroups/status,resourcegroups/finalizers},verbs=get;update;patch
// Reconcile function does the main reconciliation loop of the operator
func (r *ResourceGroupReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
return r.Reconciler.Reconcile(ctx, req, &azurev1alpha1.ResourceGroup{})
}
// SetupWithManager function sets up the functions with the controller
func (r *ResourceGroupReconciler) SetupWithManager(mgr ctrl.Manager) error {
return ctrl.NewControllerManagedBy(mgr).
For(&azurev1alpha1.ResourceGroup{}).
Complete(r)
}