mirror of
https://github.com/status-im/consul.git
synced 2025-02-23 10:58:25 +00:00
* remove v2 tenancy, catalog, and mesh - Inline the v2tenancy experiment to false - Inline the resource-apis experiment to false - Inline the hcp-v2-resource-apis experiment to false - Remove ACL policy templates and rule language changes related to workload identities (a v2-only concept) (e.g. identity and identity_prefix) - Update the gRPC endpoint used by consul-dataplane to no longer respond specially for v2 - Remove stray v2 references scattered throughout the DNS v1.5 newer implementation. * changelog * go mod tidy on consul containers * lint fixes from ENT --------- Co-authored-by: John Murret <john.murret@hashicorp.com>
31 lines
975 B
Go
31 lines
975 B
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"
|
|
"github.com/hashicorp/consul/internal/multicluster/internal/controllers/v1compat"
|
|
"github.com/hashicorp/consul/internal/multicluster/internal/types"
|
|
"github.com/hashicorp/consul/internal/resource"
|
|
)
|
|
|
|
// RegisterTypes adds all resource types within the "multicluster" API group
|
|
// to the given type registry
|
|
func RegisterTypes(r resource.Registry) {
|
|
types.Register(r)
|
|
}
|
|
|
|
type CompatControllerDependencies = controllers.CompatDependencies
|
|
|
|
func DefaultCompatControllerDependencies(ac v1compat.AggregatedConfig) CompatControllerDependencies {
|
|
return CompatControllerDependencies{
|
|
ConfigEntryExports: ac,
|
|
}
|
|
}
|
|
|
|
func RegisterCompatControllers(mgr *controller.Manager, deps CompatControllerDependencies) {
|
|
controllers.RegisterCompat(mgr, deps)
|
|
}
|