-
Notifications
You must be signed in to change notification settings - Fork 123
/
zz_redshiftserverless_setup.go
executable file
·36 lines (31 loc) · 1.32 KB
/
zz_redshiftserverless_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
// SPDX-FileCopyrightText: 2023 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"
endpointaccess "github.com/upbound/provider-aws/internal/controller/redshiftserverless/endpointaccess"
redshiftserverlessnamespace "github.com/upbound/provider-aws/internal/controller/redshiftserverless/redshiftserverlessnamespace"
resourcepolicy "github.com/upbound/provider-aws/internal/controller/redshiftserverless/resourcepolicy"
snapshot "github.com/upbound/provider-aws/internal/controller/redshiftserverless/snapshot"
usagelimit "github.com/upbound/provider-aws/internal/controller/redshiftserverless/usagelimit"
workgroup "github.com/upbound/provider-aws/internal/controller/redshiftserverless/workgroup"
)
// Setup_redshiftserverless creates all controllers with the supplied logger and adds them to
// the supplied manager.
func Setup_redshiftserverless(mgr ctrl.Manager, o controller.Options) error {
for _, setup := range []func(ctrl.Manager, controller.Options) error{
endpointaccess.Setup,
redshiftserverlessnamespace.Setup,
resourcepolicy.Setup,
snapshot.Setup,
usagelimit.Setup,
workgroup.Setup,
} {
if err := setup(mgr, o); err != nil {
return err
}
}
return nil
}