mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-01 11:36:10 -04:00
[node operator] patching util functions
Signed-off-by: Malte Poll <mp@edgeless.systems>
This commit is contained in:
parent
614447495d
commit
3932581f2a
6 changed files with 212 additions and 5 deletions
|
@ -0,0 +1,18 @@
|
|||
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{})
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue