-
Notifications
You must be signed in to change notification settings - Fork 123
/
zz_kafka_setup.go
executable file
·32 lines (27 loc) · 1.01 KB
/
zz_kafka_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
// 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"
cluster "github.com/upbound/provider-aws/internal/controller/kafka/cluster"
configuration "github.com/upbound/provider-aws/internal/controller/kafka/configuration"
scramsecretassociation "github.com/upbound/provider-aws/internal/controller/kafka/scramsecretassociation"
serverlesscluster "github.com/upbound/provider-aws/internal/controller/kafka/serverlesscluster"
)
// Setup_kafka creates all controllers with the supplied logger and adds them to
// the supplied manager.
func Setup_kafka(mgr ctrl.Manager, o controller.Options) error {
for _, setup := range []func(ctrl.Manager, controller.Options) error{
cluster.Setup,
configuration.Setup,
scramsecretassociation.Setup,
serverlesscluster.Setup,
} {
if err := setup(mgr, o); err != nil {
return err
}
}
return nil
}