mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-03-05 11:10:58 +00:00
Signed-off-by: Dario Tranchitella <dario@tranchitella.eu> Co-authored-by: Giuseppe Chiesa <mail@giuseppechiesa.it>
12 lines
369 B
Go
12 lines
369 B
Go
// Copyright 2020-2023 Project Capsule Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package api
|
|
|
|
// +kubebuilder:object:generate=true
|
|
|
|
type PodOptions struct {
|
|
// Specifies additional labels and annotations the Capsule operator places on any Pod resource in the Tenant. Optional.
|
|
AdditionalMetadata *AdditionalMetadataSpec `json:"additionalMetadata,omitempty"`
|
|
}
|