Library to generate Kubernetes manifests using Python code
Project description
kubekind
Library to generate Kubernetes manifests using Python code
Motivation
Write manifests using Python code to improve readability and getting the benefits of IDEs IntelliSense features.
Requirements
- Python 3.9+ on Linux, Windows or Mac
Install
pip insall kubekind
Generated a pod manifest
# test.py
from kubekind import Pod, Container
with Pod("my-pod") as pod:
Container("bash", "bash:latest", args=["sleep", "10000"]).add()
Container("bash_2", "bash:latest", args=["sleep", "10000"]).add()
pod.print()
Apply the manifest
python test.py | kubectl apply -f -
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
kubekind-0.0.1.tar.gz
(33.3 kB
view hashes)