yishangru

Results 2 comments of yishangru

A simple fix would be like this: ```go parts := strings.Split(file, "/") // file := parts[len(parts)-1] filename := parts[len(parts)-1] if len(parts) > 1 { dir := parts[len(parts)-2] //if (dir !=...

We also encountered this problem for kubernetes v1.20. Instead of mounting `config.json`, we mount `.docker` directory. In this way, you can change config.json (rewrite, replace, etc.) in container environment.