-
Notifications
You must be signed in to change notification settings - Fork 916
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add work mutating in ctrlutil.CreateOrUpdateWork()
Signed-off-by: zach593 <[email protected]>
- Loading branch information
Showing
4 changed files
with
111 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
/* | ||
Copyright 2020 The Karmada Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package mutating | ||
|
||
import ( | ||
"encoding/json" | ||
|
||
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" | ||
"k8s.io/apimachinery/pkg/runtime" | ||
"k8s.io/klog/v2" | ||
|
||
workv1alpha1 "github.com/karmada-io/karmada/pkg/apis/work/v1alpha1" | ||
workv1alpha2 "github.com/karmada-io/karmada/pkg/apis/work/v1alpha2" | ||
"github.com/karmada-io/karmada/pkg/resourceinterpreter/default/native/prune" | ||
"github.com/karmada-io/karmada/pkg/util" | ||
) | ||
|
||
// MutateWork mutates the Work object. | ||
// It's not contained the part of adding the permanent ID to work's label, because adding a random string will be hard to test. | ||
func MutateWork(work *workv1alpha1.Work) error { | ||
var manifests []workv1alpha1.Manifest | ||
for _, manifest := range work.Spec.Workload.Manifests { | ||
workloadObj := &unstructured.Unstructured{} | ||
err := json.Unmarshal(manifest.Raw, workloadObj) | ||
if err != nil { | ||
klog.Errorf("Failed to unmarshal the work(%s/%s) manifest to Unstructured, err: %v", work.Namespace, work.Name, err) | ||
return err | ||
} | ||
|
||
err = prune.RemoveIrrelevantFields(workloadObj, prune.RemoveJobTTLSeconds) | ||
if err != nil { | ||
klog.Errorf("Failed to remove irrelevant fields for the work(%s/%s), err: %v", work.Namespace, work.Name, err) | ||
return err | ||
} | ||
|
||
// Skip label/annotate the workload of Work that is not intended to be propagated. | ||
if work.Labels[util.PropagationInstruction] != util.PropagationInstructionSuppressed { | ||
setLabelsAndAnnotationsForWorkload(workloadObj, work) | ||
} | ||
|
||
workloadJSON, err := json.Marshal(workloadObj) | ||
if err != nil { | ||
klog.Errorf("Failed to marshal workload of the work(%s/%s), err: %s", work.Namespace, work.Name, err) | ||
return err | ||
} | ||
manifests = append(manifests, workv1alpha1.Manifest{RawExtension: runtime.RawExtension{Raw: workloadJSON}}) | ||
} | ||
work.Spec.Workload.Manifests = manifests | ||
return nil | ||
} | ||
|
||
// setLabelsAndAnnotationsForWorkload sets the associated work object labels and annotations for workload. | ||
func setLabelsAndAnnotationsForWorkload(workload *unstructured.Unstructured, work *workv1alpha1.Work) { | ||
util.RecordManagedAnnotations(workload) | ||
if work.Labels[workv1alpha2.WorkPermanentIDLabel] != "" { | ||
workload.SetLabels(util.DedupeAndMergeLabels(workload.GetLabels(), map[string]string{ | ||
workv1alpha2.WorkPermanentIDLabel: work.Labels[workv1alpha2.WorkPermanentIDLabel], | ||
})) | ||
} | ||
util.RecordManagedLabels(workload) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters