diff --git a/api/v1alpha1/labels.go b/api/v1alpha1/labels.go index 5e89bf6f..e2ba041c 100644 --- a/api/v1alpha1/labels.go +++ b/api/v1alpha1/labels.go @@ -11,4 +11,8 @@ const ( // StateLabelValuePending is used for identifying that the object is in a pending state. StateLabelValuePending = "pending" + + // BundledAnnotationKey is used to label objects as being bundled with the operator. Such objects are managed fully by the operator and can be created or deleted + // at its discretion (usually during the startup of the operator). + BundledAnnotationKey = LabelKeyPrefix + "bundled-with" )