-
Notifications
You must be signed in to change notification settings - Fork 283
Expand file tree
/
Copy pathadd_networkconfig.go
More file actions
34 lines (32 loc) · 1.34 KB
/
add_networkconfig.go
File metadata and controls
34 lines (32 loc) · 1.34 KB
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
package controller
import (
"github.com/openshift/cluster-network-operator/pkg/controller/allowlist"
"github.com/openshift/cluster-network-operator/pkg/controller/clusterconfig"
configmapcainjector "github.com/openshift/cluster-network-operator/pkg/controller/configmap_ca_injector"
"github.com/openshift/cluster-network-operator/pkg/controller/dashboards"
"github.com/openshift/cluster-network-operator/pkg/controller/egress_router"
"github.com/openshift/cluster-network-operator/pkg/controller/infrastructureconfig"
"github.com/openshift/cluster-network-operator/pkg/controller/ingressconfig"
"github.com/openshift/cluster-network-operator/pkg/controller/observability"
"github.com/openshift/cluster-network-operator/pkg/controller/operconfig"
"github.com/openshift/cluster-network-operator/pkg/controller/pki"
"github.com/openshift/cluster-network-operator/pkg/controller/proxyconfig"
signer "github.com/openshift/cluster-network-operator/pkg/controller/signer"
)
func init() {
// AddToManagerFuncs is a list of functions to create controllers and add them to a manager.
AddToManagerFuncs = append(AddToManagerFuncs,
pki.Add,
egress_router.Add,
proxyconfig.Add,
operconfig.Add,
clusterconfig.Add,
configmapcainjector.Add,
signer.Add,
ingressconfig.Add,
infrastructureconfig.Add,
allowlist.Add,
dashboards.Add,
observability.Add,
)
}