Skip to content
This repository has been archived by the owner on Mar 13, 2022. It is now read-only.

Commit

Permalink
Merge pull request #19 from yuvipanda/kubeconfig
Browse files Browse the repository at this point in the history
Respect the KUBECONFIG environment variable if set
  • Loading branch information
mbohlool committed Jul 14, 2017
2 parents d301e20 + ee4f01c commit 7f9231e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/kube_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

from .config_exception import ConfigException

KUBE_CONFIG_DEFAULT_LOCATION = '~/.kube/config'
KUBE_CONFIG_DEFAULT_LOCATION = os.environ.get('KUBECONFIG', '~/.kube/config')
_temp_files = {}


Expand Down

0 comments on commit 7f9231e

Please sign in to comment.