Lightweight Python module for creating, manipulating, and editing kubeconfig files
Project description
kubeconf
Lightweight Python module for creating, manipulating, and editing kubeconfig files
Why not use or wrap kubectl config?
kubectl config is great and writing a Python wrapper is a fine solution. However, kubectl config is quite limited in functionality. I wanted more control over my kubernetes config. kubeconfig gives me that control. It doesn't use kubectl at all. Rather, it reads, edits, and writes config files entirely on its own.
Getting starting
Install this package using pip:
pip install kubeconf
Basic Usage
from kubeconf import KubeConf
k = KubeConf(path='path/to/config')
# Open the file
k.open()
# Add a cluster
k.add_cluster(
name='mycluster',
server='...',
certificate_authority_data='...',
)
# Add a user for that cluster
k.add_user(
user='me'
)
# Add a context to map the user to the cluster
k.add_context(
name='mycontext',
cluster_name='mycluster',
user_name='me'
)
# Commit change to the file.
k.close()
Developing
Download and install this repo from source, and move into the base directory.
git clone https://github.com/Zsailer/kubeconf
cd kubeconf
If you use pipenv, you can install a developement version:
pipenv install --dev
Otherwise you can install a development version using pip
pip install -e .
Licensing
The code in this project is licensed under MIT license.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file kubeconf-0.0.5.tar.gz.
File metadata
- Download URL: kubeconf-0.0.5.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e04dfe796512902a6fc37a70a6fdb9158027bde7320d53ca1ead191b7e5aace
|
|
| MD5 |
9e83a845a6e879ed9c93e56c8f324096
|
|
| BLAKE2b-256 |
4921021449dc75f145e9b8ffce774e5af2fd0a6da926745633ee0884c53a6c13
|
File details
Details for the file kubeconf-0.0.5-py2.py3-none-any.whl.
File metadata
- Download URL: kubeconf-0.0.5-py2.py3-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36b82db238738f4bb33f14abe4f59459df2c26574a2a26ac875f12511c0d653f
|
|
| MD5 |
64c8a0bc96957784c9e40ffc7e639c21
|
|
| BLAKE2b-256 |
436e8ca3f89ddf94a27b7162f4c1728bb6cb3d03ff89ac033c311cd8581ad9a0
|