Files
capsule/pkg/configuration/configuration.go
2021-06-03 19:46:20 +02:00

17 lines
338 B
Go

// Copyright 2020-2021 Clastix Labs
// SPDX-License-Identifier: Apache-2.0
package configuration
import (
"regexp"
)
type Configuration interface {
AllowIngressHostnameCollision() bool
AllowTenantIngressHostnamesCollision() bool
ProtectedNamespaceRegexp() (*regexp.Regexp, error)
ForceTenantPrefix() bool
UserGroups() []string
}