Documentation
¶
Overview ¶
Package reference provides a way to reference Kubernetes resources.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LocalSecretReference ¶
type LocalSecretReference struct {
// Name is the name of the secret.
Name string `json:"name"`
}
LocalSecretReference is a reference to a secret in the same namespace. +kubebuilder:object:generate=true
type ObjectReference ¶
type ObjectReference struct {
// Name is the name of the resource.
Name string `json:"name,omitempty"`
// Namespace is the namespace of the resource.
Namespace string `json:"namespace,omitempty"`
// APIVersion is the API version of the resource.
APIVersion string `json:"apiVersion,omitempty"`
// Kind is the kind of the resource.
Kind string `json:"kind,omitempty"`
}
ObjectReference is a reference to an arbitrary Kubernetes resource. +kubebuilder:object:generate=true
type ObjectWithReferences ¶
Click to show internal directories.
Click to hide internal directories.