(clusterName string, region string)
| 41 | var _cachedClusterConfigRegex = regexp.MustCompile(`^cluster_\S+\.yaml$`) |
| 42 | |
| 43 | func getCachedClusterConfigPath(clusterName string, region string) string { |
| 44 | return filepath.Join(_localDir, fmt.Sprintf("cluster_%s_%s.yaml", clusterName, region)) |
| 45 | } |
| 46 | |
| 47 | func existingCachedClusterConfigPaths() []string { |
| 48 | paths, err := files.ListDir(_localDir, false) |
no outgoing calls
no test coverage detected