-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathzz_media_setup.go
executable file
·48 lines (43 loc) · 1.87 KB
/
zz_media_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
43
44
45
46
47
48
// 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"
asset "github.com/upbound/provider-azure/internal/controller/media/asset"
assetfilter "github.com/upbound/provider-azure/internal/controller/media/assetfilter"
contentkeypolicy "github.com/upbound/provider-azure/internal/controller/media/contentkeypolicy"
job "github.com/upbound/provider-azure/internal/controller/media/job"
liveevent "github.com/upbound/provider-azure/internal/controller/media/liveevent"
liveeventoutput "github.com/upbound/provider-azure/internal/controller/media/liveeventoutput"
servicesaccount "github.com/upbound/provider-azure/internal/controller/media/servicesaccount"
servicesaccountfilter "github.com/upbound/provider-azure/internal/controller/media/servicesaccountfilter"
streamingendpoint "github.com/upbound/provider-azure/internal/controller/media/streamingendpoint"
streaminglocator "github.com/upbound/provider-azure/internal/controller/media/streaminglocator"
streamingpolicy "github.com/upbound/provider-azure/internal/controller/media/streamingpolicy"
transform "github.com/upbound/provider-azure/internal/controller/media/transform"
)
// Setup_media creates all controllers with the supplied logger and adds them to
// the supplied manager.
func Setup_media(mgr ctrl.Manager, o controller.Options) error {
for _, setup := range []func(ctrl.Manager, controller.Options) error{
asset.Setup,
assetfilter.Setup,
contentkeypolicy.Setup,
job.Setup,
liveevent.Setup,
liveeventoutput.Setup,
servicesaccount.Setup,
servicesaccountfilter.Setup,
streamingendpoint.Setup,
streaminglocator.Setup,
streamingpolicy.Setup,
transform.Setup,
} {
if err := setup(mgr, o); err != nil {
return err
}
}
return nil
}