mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-02-14 09:59:57 +00:00
* chore(deps): update dependency golangci/golangci-lint to v2.8.0 * chore(deps): update dependency golangci/golangci-lint to v2.8.0 Signed-off-by: Hristo Hristov <me@hhristov.info> * chore(deps): update dependency golangci/golangci-lint to v2.8.0 Signed-off-by: Hristo Hristov <me@hhristov.info> * chore(deps): update dependency golangci/golangci-lint to v2.8.0 Signed-off-by: Hristo Hristov <me@hhristov.info> --------- Signed-off-by: Hristo Hristov <me@hhristov.info> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Hristo Hristov <me@hhristov.info>
34 lines
1.6 KiB
Go
34 lines
1.6 KiB
Go
// Copyright 2020-2026 Project Capsule Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package v1beta2
|
|
|
|
import (
|
|
"github.com/projectcapsule/capsule/pkg/api"
|
|
)
|
|
|
|
type IngressOptions struct {
|
|
// Specifies the allowed IngressClasses assigned to the Tenant.
|
|
// Capsule assures that all Ingress resources created in the Tenant can use only one of the allowed IngressClasses.
|
|
// A default value can be specified, and all the Ingress resources created will inherit the declared class.
|
|
// Optional.
|
|
AllowedClasses *api.DefaultAllowedListSpec `json:"allowedClasses,omitempty"`
|
|
// Defines the scope of hostname collision check performed when Tenant Owners create Ingress with allowed hostnames.
|
|
//
|
|
//
|
|
// - Cluster: disallow the creation of an Ingress if the pair hostname and path is already used across the Namespaces managed by Capsule.
|
|
//
|
|
// - Tenant: disallow the creation of an Ingress if the pair hostname and path is already used across the Namespaces of the Tenant.
|
|
//
|
|
// - Namespace: disallow the creation of an Ingress if the pair hostname and path is already used in the Ingress Namespace.
|
|
//
|
|
//
|
|
// Optional.
|
|
// +kubebuilder:default=Disabled
|
|
HostnameCollisionScope api.HostnameCollisionScope `json:"hostnameCollisionScope,omitempty"`
|
|
// Specifies the allowed hostnames in Ingresses for the given Tenant. Capsule assures that all Ingress resources created in the Tenant can use only one of the allowed hostnames. Optional.
|
|
AllowedHostnames *api.AllowedListSpec `json:"allowedHostnames,omitempty"`
|
|
// Toggles the ability for Ingress resources created in a Tenant to have a hostname wildcard.
|
|
AllowWildcardHostnames bool `json:"allowWildcardHostnames,omitempty"`
|
|
}
|