Use map[psaApi.level] instead of map[string]
This commit is contained in:
parent
872b97fc45
commit
a4087a538f
@ -87,7 +87,7 @@ var MigrateCmd = &cobra.Command{
|
|||||||
namespace.Name, namespace.Labels)
|
namespace.Name, namespace.Labels)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
suggestions := make(map[string]bool)
|
suggestions := make(map[psaApi.Level]bool)
|
||||||
podList, err := GetPodsByNamespace(namespace.Name)
|
podList, err := GetPodsByNamespace(namespace.Name)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Printf("Error getting pods for namespace %v. Error: %v\n", namespace.Name, err.Error())
|
log.Printf("Error getting pods for namespace %v. Error: %v\n", namespace.Name, err.Error())
|
||||||
@ -106,7 +106,7 @@ var MigrateCmd = &cobra.Command{
|
|||||||
fmt.Println("Continuing with the next namespace due to error with ", namespace.Name)
|
fmt.Println("Continuing with the next namespace due to error with ", namespace.Name)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
suggestions[string(level)] = true
|
suggestions[level] = true
|
||||||
}
|
}
|
||||||
var suggested psaApi.Level
|
var suggested psaApi.Level
|
||||||
if suggestions["restricted"] {
|
if suggestions["restricted"] {
|
||||||
|
Loading…
Reference in New Issue
Block a user