|
@@ -248,7 +248,7 @@ func getCurrentContainerInfo(containerType string) (map[string]string, error) {
|
|
|
if !ok {
|
|
if !ok {
|
|
|
return nil, fmt.Errorf("%s is not a map", releaseChannel)
|
|
return nil, fmt.Errorf("%s is not a map", releaseChannel)
|
|
|
}
|
|
}
|
|
|
- containerData, ok := channel[containerType].(map[string]string)
|
|
|
|
|
|
|
+ containerData, ok := channel[containerType].(map[string]interface{})
|
|
|
if !ok {
|
|
if !ok {
|
|
|
return nil, fmt.Errorf("%s data is not a map", containerType)
|
|
return nil, fmt.Errorf("%s data is not a map", containerType)
|
|
|
}
|
|
}
|