mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-05-24 10:12:47 +00:00
10 lines
534 B
Go
10 lines
534 B
Go
package v1beta1
|
|
|
|
type NamespaceOptions struct {
|
|
//+kubebuilder:validation:Minimum=1
|
|
// Specifies the maximum number of namespaces allowed for that Tenant. Once the namespace quota assigned to the Tenant has been reached, the Tenant owner cannot create further namespaces. Optional.
|
|
Quota *int32 `json:"quota,omitempty"`
|
|
// Specifies additional labels and annotations the Capsule operator places on any Namespace resource in the Tenant. Optional.
|
|
AdditionalMetadata *AdditionalMetadataSpec `json:"additionalMetadata,omitempty"`
|
|
}
|