-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathzz_hdinsight_setup.go
executable file
·34 lines (29 loc) · 1.15 KB
/
zz_hdinsight_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
// 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"
hadoopcluster "github.com/upbound/provider-azure/internal/controller/hdinsight/hadoopcluster"
hbasecluster "github.com/upbound/provider-azure/internal/controller/hdinsight/hbasecluster"
interactivequerycluster "github.com/upbound/provider-azure/internal/controller/hdinsight/interactivequerycluster"
kafkacluster "github.com/upbound/provider-azure/internal/controller/hdinsight/kafkacluster"
sparkcluster "github.com/upbound/provider-azure/internal/controller/hdinsight/sparkcluster"
)
// Setup_hdinsight creates all controllers with the supplied logger and adds them to
// the supplied manager.
func Setup_hdinsight(mgr ctrl.Manager, o controller.Options) error {
for _, setup := range []func(ctrl.Manager, controller.Options) error{
hadoopcluster.Setup,
hbasecluster.Setup,
interactivequerycluster.Setup,
kafkacluster.Setup,
sparkcluster.Setup,
} {
if err := setup(mgr, o); err != nil {
return err
}
}
return nil
}