-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathzz_kusto_setup.go
executable file
·42 lines (37 loc) · 1.77 KB
/
zz_kusto_setup.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
// SPDX-FileCopyrightText: 2024 The Crossplane Authors <https://crossplane.io>
//
// SPDX-License-Identifier: Apache-2.0
package controller
import (
ctrl "sigs.k8s.io/controller-runtime"
"github.com/crossplane/upjet/pkg/controller"
attacheddatabaseconfiguration "github.com/upbound/provider-azure/internal/controller/kusto/attacheddatabaseconfiguration"
cluster "github.com/upbound/provider-azure/internal/controller/kusto/cluster"
clustermanagedprivateendpoint "github.com/upbound/provider-azure/internal/controller/kusto/clustermanagedprivateendpoint"
clusterprincipalassignment "github.com/upbound/provider-azure/internal/controller/kusto/clusterprincipalassignment"
database "github.com/upbound/provider-azure/internal/controller/kusto/database"
databaseprincipalassignment "github.com/upbound/provider-azure/internal/controller/kusto/databaseprincipalassignment"
eventgriddataconnection "github.com/upbound/provider-azure/internal/controller/kusto/eventgriddataconnection"
eventhubdataconnection "github.com/upbound/provider-azure/internal/controller/kusto/eventhubdataconnection"
iothubdataconnection "github.com/upbound/provider-azure/internal/controller/kusto/iothubdataconnection"
)
// Setup_kusto creates all controllers with the supplied logger and adds them to
// the supplied manager.
func Setup_kusto(mgr ctrl.Manager, o controller.Options) error {
for _, setup := range []func(ctrl.Manager, controller.Options) error{
attacheddatabaseconfiguration.Setup,
cluster.Setup,
clustermanagedprivateendpoint.Setup,
clusterprincipalassignment.Setup,
database.Setup,
databaseprincipalassignment.Setup,
eventgriddataconnection.Setup,
eventhubdataconnection.Setup,
iothubdataconnection.Setup,
} {
if err := setup(mgr, o); err != nil {
return err
}
}
return nil
}