1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
package utils
import (
"fmt"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/util/errors"
"k8s.io/klog/v2"
appsv1alpha1 "github.com/kubeedge/api/apis/apps/v1alpha1"
"github.com/kubeedge/kubeedge/cloud/pkg/controllermanager/edgeapplication/overridemanager"
)
type ResourceInfo struct {
// Ordinal is the index of the template of this resource in
// the manifests of EdgeApplication.
Ordinal int `json:"ordinal"`
Group string `json:"group"`
Version string `json:"version"`
Kind string `json:"kind"`
Namespace string `json:"namespace"`
Name string `json:"name"`
}
func (c *ResourceInfo) String() string {
return fmt.Sprintf("%d, %s/%s, kind=%s, namespace=%s, name=%s", c.Ordinal, c.Group, c.Version, c.Kind, c.Namespace, c.Name)
}
type TemplateInfo struct {
Ordinal int
Template *unstructured.Unstructured
}
func GetAllOverriders(edgeApp *appsv1alpha1.EdgeApplication) []overridemanager.OverriderInfo {
infos := make([]overridemanager.OverriderInfo, 0, len(edgeApp.Spec.WorkloadScope.TargetNodeGroups))
for index := range edgeApp.Spec.WorkloadScope.TargetNodeGroups {
copied := edgeApp.Spec.WorkloadScope.TargetNodeGroups[index].Overriders.DeepCopy()
infos = append(infos, overridemanager.OverriderInfo{
TargetNodeGroup: edgeApp.Spec.WorkloadScope.TargetNodeGroups[index].Name,
Overriders: copied,
})
}
return infos
}
func GetContainedResourceInfos(edgeApp *appsv1alpha1.EdgeApplication, yamlSerializer runtime.Serializer) ([]ResourceInfo, error) {
tmplInfos, err := GetTemplatesInfosOfEdgeApp(edgeApp, yamlSerializer)
if err != nil {
return nil, fmt.Errorf("failed to get contained objs, %v", err)
}
infos := []ResourceInfo{}
for _, tmplInfo := range tmplInfos {
infos = append(infos, GetResourceInfoOfTemplateInfo(tmplInfo))
}
return infos, nil
}
func GetResourceInfoOfTemplateInfo(tmplInfo *TemplateInfo) ResourceInfo {
tmpl := tmplInfo.Template
gvk := tmpl.GroupVersionKind()
info := ResourceInfo{
Ordinal: tmplInfo.Ordinal,
Group: gvk.Group,
Version: gvk.Version,
Kind: gvk.Kind,
Namespace: tmpl.GetNamespace(),
Name: tmpl.GetName(),
}
return info
}
func GetTemplatesInfosOfEdgeApp(edgeApp *appsv1alpha1.EdgeApplication, yamlSerializer runtime.Serializer) ([]*TemplateInfo, error) {
tmplInfos := []*TemplateInfo{}
errs := []error{}
for index, manifest := range edgeApp.Spec.WorkloadTemplate.Manifests {
obj := &unstructured.Unstructured{}
_, _, err := yamlSerializer.Decode(manifest.Raw, nil, obj)
if err != nil {
klog.Errorf("failed to decode manifest of edgeapp %s/%s, %v, manifest: %s",
edgeApp.Namespace, edgeApp.Name, err, manifest)
errs = append(errs, err)
continue
}
tmplInfos = append(tmplInfos, &TemplateInfo{Ordinal: index, Template: obj})
}
return tmplInfos, errors.NewAggregate(errs)
}
func IsInitStatus(status *appsv1alpha1.ManifestStatus) bool {
identifier := status.Identifier
return identifier.Group == "" &&
identifier.Version == "" &&
identifier.Kind == "" &&
identifier.Resource == "" &&
identifier.Namespace == "" &&
identifier.Name == ""
}
func IsIdentifierSameAsResourceInfo(identifier appsv1alpha1.ResourceIdentifier, info ResourceInfo) bool {
return identifier.Group == info.Group &&
identifier.Version == info.Version &&
identifier.Kind == info.Kind &&
identifier.Namespace == info.Namespace &&
identifier.Name == info.Name
}
|