mirror of
https://github.com/clastix/kamaji.git
synced 2026-04-15 06:56:47 +00:00
18 lines
433 B
Go
18 lines
433 B
Go
// Copyright 2022 Clastix Labs
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package utils
|
|
|
|
import (
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
|
|
"github.com/clastix/kamaji/internal/constants"
|
|
"github.com/clastix/kamaji/internal/utilities"
|
|
)
|
|
|
|
func SetKamajiManagedLabels(obj client.Object) {
|
|
obj.SetLabels(utilities.MergeMaps(obj.GetLabels(), map[string]string{
|
|
constants.ProjectNameLabelKey: constants.ProjectNameLabelValue,
|
|
}))
|
|
}
|