You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 13, 2026. It is now read-only.
Mike Cutalo edited this page Aug 6, 2020
·
2 revisions
Docker development and Kubernetes
When developing and running locally in docker, clutch depends on the
presence of a kubeconfig to bootstrap its self with Kubernetes clusters to
operate against.
In order to do this, you must mount in a kubeconfig,
the example below shows that we are mounting in our kubeconfig from our home directory.
This is the default path that kubectl uses.
docker run --rm -p 8080:8080 -v ~/.kube/config:/kubeconfig -e KUBECONFIG=/kubeconfig lyft/clutch:latest
Note: If your kubeconfig references file paths for information such as a cluster CA, you will also need to mount and adjust those file paths.