-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimised fleet update function of e2e test (#603)
* Optimised fleet update function of e2e test Signed-off-by: LiZhenCheng9527 <lizhencheng6@huawei.com> * fix comments Signed-off-by: LiZhenCheng9527 <lizhencheng6@huawei.com> * optimised install kurator strip Signed-off-by: LiZhenCheng9527 <lizhencheng6@huawei.com> * The original label of the object is preserved in Patch Signed-off-by: LiZhenCheng9527 <lizhencheng6@huawei.com> --------- Signed-off-by: LiZhenCheng9527 <lizhencheng6@huawei.com>
- Loading branch information
1 parent
1391d65
commit 693d66d
Showing
8 changed files
with
158 additions
and
59 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
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,70 @@ | ||
/* | ||
Copyright Kurator 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 resources | ||
|
||
import ( | ||
"encoding/json" | ||
|
||
jsonpatch "github.com/evanphx/json-patch" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
) | ||
|
||
func CreatePatchData(original, modified interface{}) ([]byte, error) { | ||
originalData, originalErr := json.Marshal(original) | ||
if originalErr != nil { | ||
return nil, originalErr | ||
} | ||
modifiedData, modifiedErr := json.Marshal(modified) | ||
if modifiedErr != nil { | ||
return nil, modifiedErr | ||
} | ||
patchData, createErr := jsonpatch.CreateMergePatch(originalData, modifiedData) | ||
if createErr != nil { | ||
return nil, createErr | ||
} | ||
return patchData, nil | ||
} | ||
|
||
func ModifiedObjectMeta(original, modified metav1.ObjectMeta) metav1.ObjectMeta { | ||
if modified.Labels == nil { | ||
modified.Labels = original.Labels | ||
} else { | ||
for k, v := range original.Labels { | ||
if modified.Labels[k] == "" { | ||
modified.Labels[k] = v | ||
} | ||
} | ||
} | ||
|
||
if modified.Annotations == nil { | ||
modified.Annotations = original.Annotations | ||
} else { | ||
for k, v := range original.Annotations { | ||
if modified.Annotations[k] == "" { | ||
modified.Annotations[k] = v | ||
} | ||
} | ||
} | ||
|
||
if modified.Finalizers == nil { | ||
modified.Finalizers = original.Finalizers | ||
} | ||
if modified.ResourceVersion == "" { | ||
modified.ResourceVersion = original.ResourceVersion | ||
} | ||
return modified | ||
} |
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