Fix issues with running multiple Karmada instances in the same namespace

Signed-off-by: Joe Nathan Abellard <contact@jabellard.com>
This commit is contained in:
Joe Nathan Abellard 2025-03-01 17:22:38 -05:00
parent a80be33e4a
commit a6e4a4de24
1 changed files with 3 additions and 1 deletions

View File

@ -122,7 +122,9 @@ const (
// APIServiceName defines the karmada aggregated apiserver APIService resource name.
APIServiceName = "v1alpha1.cluster.karmada.io"
AppNameLabel = "app.kubernetes.io/name"
// AppNameLabel defines the recommended label for identifying an application.
AppNameLabel = "app.kubernetes.io/name"
// AppInstanceLabel defines the recommended label for identifying an application instance.
AppInstanceLabel = "app.kubernetes.io/instance"
)