Checks if label is system
(key string)
| 89 | |
| 90 | // Checks if label is system |
| 91 | func isSystemLabel(key string) bool { |
| 92 | return slices.Contains(GetSystemLabels(), key) |
| 93 | } |
| 94 | |
| 95 | // Removes system labels from labels map |
| 96 | func filterSystemLabels(lbs map[string]string) map[string]string { |
searching dependent graphs…