kubeconfig is a simple Python module for manipulating Kubernetes kubeconfig files.
from kubeconfig import KubeConfig
conf = KubeConfig()
conf.set_context('new-context', cluster='other-cluster', user='my-user')
conf.use_context('new-context')
print(conf.view())
pip install kubeconfig
- Generating configs for users
- Tooling that manages switching between multiple clusters or users
- Cycling credentials out in a config
- Updating CA cert entries in your config
See the documentation for more details on usage.
kubeconfig is licensed under the BSD 3-Clause License.