mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-12 07:59:29 -05:00
19 lines
572 B
Go
19 lines
572 B
Go
|
package patch
|
||
|
|
||
|
import (
|
||
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
||
|
)
|
||
|
|
||
|
// SetLabels creates a patch for a client.Object by merging labels with existing labels.
|
||
|
func SetLabels(original, patched client.Object, labels map[string]string) client.Patch {
|
||
|
mergedLabels := patched.GetLabels()
|
||
|
if mergedLabels == nil {
|
||
|
mergedLabels = make(map[string]string, len(labels))
|
||
|
}
|
||
|
for labelKey, labelValue := range labels {
|
||
|
mergedLabels[labelKey] = labelValue
|
||
|
}
|
||
|
patched.SetLabels(mergedLabels)
|
||
|
return client.StrategicMergeFrom(original, client.MergeFromWithOptimisticLock{})
|
||
|
}
|