Documentation ¶
Overview ¶
Package meta contains functions for dealing with Kubernetes object metadata.
Index ¶
- Constants
- func AddAnnotations(o metav1.Object, annotations map[string]string)
- func AddControllerReference(o metav1.Object, r metav1.OwnerReference) error
- func AddFinalizer(o metav1.Object, finalizer string)
- func AddLabels(o metav1.Object, labels map[string]string)
- func AddOwnerReference(o metav1.Object, r metav1.OwnerReference)
- func AsController(r *xpv1.TypedReference) metav1.OwnerReference
- func AsOwner(r *xpv1.TypedReference) metav1.OwnerReference
- func ExternalCreateIncomplete(o metav1.Object) bool
- func ExternalCreateSucceededDuring(o metav1.Object, d time.Duration) bool
- func FinalizerExists(o metav1.Object, finalizer string) bool
- func GetExternalCreateFailed(o metav1.Object) time.Time
- func GetExternalCreatePending(o metav1.Object) time.Time
- func GetExternalCreateSucceeded(o metav1.Object) time.Time
- func GetExternalName(o metav1.Object) string
- func HaveSameController(a, b metav1.Object) bool
- func IsPaused(o metav1.Object) bool
- func NamespacedNameOf(r *corev1.ObjectReference) types.NamespacedName
- func ReferenceTo(o metav1.Object, of schema.GroupVersionKind) *corev1.ObjectReference
- func RemoveAnnotations(o metav1.Object, annotations ...string)
- func RemoveFinalizer(o metav1.Object, finalizer string)
- func RemoveLabels(o metav1.Object, labels ...string)
- func SetExternalCreateFailed(o metav1.Object, t time.Time)
- func SetExternalCreatePending(o metav1.Object, t time.Time)
- func SetExternalCreateSucceeded(o metav1.Object, t time.Time)
- func SetExternalName(o metav1.Object, name string)
- func TypedReferenceTo(o metav1.Object, of schema.GroupVersionKind) *xpv1.TypedReference
- func WasCreated(o metav1.Object) bool
- func WasDeleted(o metav1.Object) bool
Constants ¶
const ( // AnnotationKeyExternalName is the key in the annotations map of a // resource for the name of the resource as it appears on provider's // systems. AnnotationKeyExternalName = "crossplane.io/external-name" // AnnotationKeyExternalCreatePending is the key in the annotations map // of a resource that indicates the last time creation of the external // resource was pending (i.e. about to happen). Its value must be an // RFC3999 timestamp. AnnotationKeyExternalCreatePending = "crossplane.io/external-create-pending" // AnnotationKeyExternalCreateSucceeded is the key in the annotations // map of a resource that represents the last time the external resource // was created successfully. Its value must be an RFC3339 timestamp, // which can be used to determine how long ago a resource was created. // This is useful for eventually consistent APIs that may take some time // before the API called by Observe will report that a recently created // external resource exists. AnnotationKeyExternalCreateSucceeded = "crossplane.io/external-create-succeeded" // AnnotationKeyExternalCreateFailed is the key in the annotations map // of a resource that indicates the last time creation of the external // resource failed. Its value must be an RFC3999 timestamp. AnnotationKeyExternalCreateFailed = "crossplane.io/external-create-failed" // AnnotationKeyReconciliationPaused is the key in the annotations map // of a resource that indicates that further reconciliations on the // resource are paused. All create/update/delete/generic events on // the resource will be filtered and thus no further reconcile requests // will be queued for the resource. AnnotationKeyReconciliationPaused = "crossplane.io/paused" )
Variables ¶
This section is empty.
Functions ¶
func AddAnnotations ¶
AddAnnotations to the supplied object.
func AddControllerReference ¶
func AddControllerReference(o metav1.Object, r metav1.OwnerReference) error
AddControllerReference to the supplied object's metadata. Any existing owner with the same UID as the supplied reference will be replaced. Returns an error if the supplied object is already controlled by a different owner.
func AddFinalizer ¶
AddFinalizer to the supplied Kubernetes object's metadata.
func AddOwnerReference ¶
func AddOwnerReference(o metav1.Object, r metav1.OwnerReference)
AddOwnerReference to the supplied object' metadata. Any existing owner with the same UID as the supplied reference will be replaced.
func AsController ¶
func AsController(r *xpv1.TypedReference) metav1.OwnerReference
AsController converts the supplied object reference to a controller reference. You may also consider using metav1.NewControllerRef.
func AsOwner ¶
func AsOwner(r *xpv1.TypedReference) metav1.OwnerReference
AsOwner converts the supplied object reference to an owner reference.
func ExternalCreateIncomplete ¶ added in v0.13.1
ExternalCreateIncomplete returns true if creation of the external resource appears to be incomplete. We deem creation to be incomplete if the 'external create pending' annotation is the newest of all tracking annotations that are set (i.e. pending, succeeded, and failed).
func ExternalCreateSucceededDuring ¶ added in v0.13.1
ExternalCreateSucceededDuring returns true if creation of the external resource that corresponds to the supplied managed resource succeeded within the supplied duration.
func FinalizerExists ¶
FinalizerExists checks whether given finalizer is already set.
func GetExternalCreateFailed ¶ added in v0.13.1
GetExternalCreateFailed returns the time at which the external resource recently failed to create.
func GetExternalCreatePending ¶ added in v0.13.1
GetExternalCreatePending returns the time at which the external resource was most recently pending creation.
func GetExternalCreateSucceeded ¶ added in v0.13.1
GetExternalCreateSucceeded returns the time at which the external resource was most recently created.
func GetExternalName ¶
GetExternalName returns the external name annotation value on the resource.
func HaveSameController ¶
HaveSameController returns true if both supplied objects are controlled by the same object.
func IsPaused ¶ added in v0.19.0
IsPaused returns true if the object has the AnnotationKeyReconciliationPaused annotation set to `true`.
func NamespacedNameOf ¶
func NamespacedNameOf(r *corev1.ObjectReference) types.NamespacedName
NamespacedNameOf returns the referenced object's namespaced name.
func ReferenceTo ¶
func ReferenceTo(o metav1.Object, of schema.GroupVersionKind) *corev1.ObjectReference
ReferenceTo returns an object reference to the supplied object, presumed to be of the supplied group, version, and kind. Deprecated: use a more specific reference type, such as TypedReference or Reference instead of the overly verbose ObjectReference. See https://github.com/crossplane/crossplane-runtime/issues/49
func RemoveAnnotations ¶
RemoveAnnotations with the supplied keys from the supplied object.
func RemoveFinalizer ¶
RemoveFinalizer from the supplied Kubernetes object's metadata.
func RemoveLabels ¶
RemoveLabels with the supplied keys from the supplied object.
func SetExternalCreateFailed ¶ added in v0.13.1
SetExternalCreateFailed sets the time at which the external resource most recently failed to create.
func SetExternalCreatePending ¶ added in v0.13.1
SetExternalCreatePending sets the time at which the external resource was most recently pending creation to the supplied time.
func SetExternalCreateSucceeded ¶ added in v0.13.1
SetExternalCreateSucceeded sets the time at which the external resource was most recently created to the supplied time.
func SetExternalName ¶
SetExternalName sets the external name annotation of the resource.
func TypedReferenceTo ¶ added in v0.10.0
func TypedReferenceTo(o metav1.Object, of schema.GroupVersionKind) *xpv1.TypedReference
TypedReferenceTo returns a typed object reference to the supplied object, presumed to be of the supplied group, version, and kind.
func WasCreated ¶
WasCreated returns true if the supplied object was created in the API server.
func WasDeleted ¶
WasDeleted returns true if the supplied object was deleted from the API server.
Types ¶
This section is empty.