From 1d064aa4a843ff021927cd9736339c2c68fdf5a8 Mon Sep 17 00:00:00 2001 From: Lukas Krejci Date: Wed, 4 Jun 2025 15:14:27 +0200 Subject: [PATCH] we will be marking bundled ns template tiers using a common annotation --- api/v1alpha1/labels.go | 4 ++++ 1 file changed, 4 insertions(+) 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" )