14 lines
589 B
Markdown
14 lines
589 B
Markdown
## Using Minikube with an HTTP Proxy
|
|
|
|
Minikube creates a Virtual Machine that includes Kubernetes and a Docker daemon.
|
|
When Kubernetes attempts to schedule containers using Docker, the Docker daemon may require external network access to pull containers.
|
|
|
|
If you are behind an HTTP proxy, you may need to supply Docker with the proxy settings.
|
|
To do this, pass the required environment variables as flags during `minikube start`.
|
|
|
|
For example:
|
|
|
|
```shell
|
|
$ minikube start --docker-env HTTP_PROXY=http://$YOURPROXY:PORT \
|
|
--docker-env HTTPS_PROXY=https://$YOURPROXY:PORT
|
|
``` |