The existing driver.repoConfig.configMapName makes it possible to use a private mirror or cache.
But its not very portable and I would much rather use the host's existing /etc/apt/apt.conf.d/01proxy.
Acquire::HTTP::Proxy "http://10.0.0.5:8080";
Acquire::HTTPS::Proxy "false";
Would it be possible to either
- supply custom volumes to the driver values to mount this file into the container
- supply a custom HTTP_PROXY env that is only valid for the apt requests
- ... any other ideas?