mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 13:55:55 +00:00
44bcda8523
* Add decentralized management of V1 exported-services config entries using V2 multicluster resources. * cleanup --------- Co-authored-by: Matt Keeler <mjkeeler7@gmail.com>
42 lines
1.4 KiB
Go
42 lines
1.4 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package multicluster
|
|
|
|
import (
|
|
"github.com/hashicorp/consul/internal/controller"
|
|
"github.com/hashicorp/consul/internal/multicluster/internal/controllers"
|
|
exportedServicesSamenessGroupExpander "github.com/hashicorp/consul/internal/multicluster/internal/controllers/exportedservices/expander"
|
|
"github.com/hashicorp/consul/internal/multicluster/internal/controllers/v1compat"
|
|
"github.com/hashicorp/consul/internal/multicluster/internal/types"
|
|
"github.com/hashicorp/consul/internal/resource"
|
|
)
|
|
|
|
var (
|
|
// API Group Information
|
|
APIGroup = types.GroupName
|
|
VersionV2Beta1 = types.VersionV2Beta1
|
|
CurrentVersion = types.CurrentVersion
|
|
)
|
|
|
|
// RegisterTypes adds all resource types within the "multicluster" API group
|
|
// to the given type registry
|
|
func RegisterTypes(r resource.Registry) {
|
|
types.Register(r)
|
|
}
|
|
|
|
type ControllerDependencies = controllers.Dependencies
|
|
|
|
func DefaultControllerDependencies(ac v1compat.AggregatedConfig) ControllerDependencies {
|
|
return ControllerDependencies{
|
|
ExportedServicesSamenessGroupsExpander: exportedServicesSamenessGroupExpander.New(),
|
|
ConfigEntryExports: ac,
|
|
}
|
|
}
|
|
|
|
// RegisterControllers registers controllers for the multicluster types with
|
|
// the given controller Manager.
|
|
func RegisterControllers(mgr *controller.Manager, deps ControllerDependencies) {
|
|
controllers.Register(mgr, deps)
|
|
}
|