in k8s/go/pkg/resolver/resolver.go [346:357]
func (r *yamlResolver) resolveItem(i interface{}) (interface{}, error) {
if s, ok := i.(string); ok {
return r.strResolver(r, s)
}
if l, ok := i.([]interface{}); ok {
return r.resolveList(l)
}
if m, ok := i.(map[interface{}]interface{}); ok {
return r.resolveMap(m)
}
return i, nil
}