(kind specv1.Kind, name, ver string)
| 255 | } |
| 256 | |
| 257 | func makeKey(kind specv1.Kind, name, ver string) string { |
| 258 | if name == "" || ver == "" { |
| 259 | return "" |
| 260 | } |
| 261 | return string(kind) + "-" + name + "-" + ver |
| 262 | } |
| 263 | |
| 264 | // ensuring apps have same order in report and desire list |
| 265 | func alignApps(reApps, deApps []specv1.AppInfo) []specv1.AppInfo { |
no outgoing calls