// Copyright 2020-2021 Clastix Labs // SPDX-License-Identifier: Apache-2.0 package configuration import ( "regexp" capsulev1beta1 "github.com/clastix/capsule/api/v1beta1" ) type Configuration interface { ProtectedNamespaceRegexp() (*regexp.Regexp, error) ForceTenantPrefix() bool UserGroups() []string ForbiddenUserNodeLabels() *capsulev1beta1.ForbiddenListSpec ForbiddenUserNodeAnnotations() *capsulev1beta1.ForbiddenListSpec }