Hi I'm doing a configuring a controller using a configuration file `sudo config_controller --kubernetes --confi-file my-file.ini`. I modified my configuration file to add my proxies but this is causing errors [1], seems like when parsing the configuration file the NO_PROXY variable is set as python list format and hence not recognized by http library. 1. http://paste.openstack.org/show/744593/ Do you if there is a special way to assign multiple values to a variable on configuration file? Below is the example of my configuration file settings: ======================================================= [DOCKER_PROXY] DOCKER_HTTP_PROXY = http://<IP>:PORT DOCKER_HTTPS_PROXY = http://<IP>:PORT DOCKER_NO_PROXY = localhost,127.0.0.1,192.168.204.2,192.168.204.3,192.168.204.4,10.10.10.3 ======================================================== Regards, José