(clusterName, compName string)
| 35 | ) |
| 36 | |
| 37 | func FullName(clusterName, compName string) string { |
| 38 | return constant.GenerateClusterComponentName(clusterName, compName) |
| 39 | } |
| 40 | |
| 41 | func ShortName(clusterName, compName string) (string, error) { |
| 42 | name, found := strings.CutPrefix(compName, fmt.Sprintf("%s-", clusterName)) |
no test coverage detected
searching dependent graphs…