A Kubernetes API library
Project description
A simple, extensible Python client library for Kubernetes that feels familiar for folks who already know how to use kubectl
.
Highlights
- API inspired by
kubectl
to reduce developer learning curve. - Sensible defaults to reduce boiler plate.
- No swagger generated code, human readable code only.
- Also has an asynchronous API that can be used with
asyncio
andtrio
. - Client caching to reduce passing API objects around.
- Batteries included by providing useful utilities and methods inspired by
kubectl
.
Quickstart
Installation
$ pip install kr8s
Examples
See the Examples Documentation for a full set of examples including asyncio
examples.
List Nodes
Print out all of the node names in the cluster.
import kr8s
for node in kr8s.get("nodes"):
print(node.name)
Create a Pod
Create a new Pod.
from kr8s.objects import Pod
pod = Pod({
"apiVersion": "v1",
"kind": "Pod",
"metadata": {
"name": "my-pod",
},
"spec": {
"containers": [{"name": "pause", "image": "gcr.io/google_containers/pause",}]
},
})
pod.create()
Scale a Deployment
Scale the Deployment metrics-server
in the Namespace kube-system
to 1
replica.
from kr8s.objects import Deployment
deploy = Deployment.get("metrics-server", namespace="kube-system")
deploy.scale(1)
List Pods by label selector
Get all Pods from all Namespaces matching a label selector.
import kr8s
selector = {'component': 'kube-scheduler'}
for pod in kr8s.get("pods", namespace=kr8s.ALL, label_selector=selector):
print(pod.namespace, pod.name)
Add a label to a Pod
Add the label foo
with the value bar
to an existing Pod.
from kr8s.objects import Pod
pod = Pod("kube-apiserver", namespace="kube-system")
pod.label({"foo": "bar"})
Cordon a Node
Cordon a Node to mark it as unschedulable.
from kr8s.objects import Node
node = Node("k8s-node-1")
node.cordon()
# Is equivalent to
# node.patch({"spec": {"unschedulable": True}})
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
kr8s-0.12.5.tar.gz
(2.8 MB
view details)
Built Distribution
kr8s-0.12.5-py3-none-any.whl
(50.7 kB
view details)
File details
Details for the file kr8s-0.12.5.tar.gz
.
File metadata
- Download URL: kr8s-0.12.5.tar.gz
- Upload date:
- Size: 2.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 916e792fcbaeab95eb7e9da50812a940148ae799ead692f6456d789b8014f5e7 |
|
MD5 | af29faf58887a57f168c5afb62d14699 |
|
BLAKE2b-256 | 2c5c18aadeeedeff08fa5c35e390d07c3a5f5da52adc4d7d1d5af6d8ded6cee0 |
Provenance
File details
Details for the file kr8s-0.12.5-py3-none-any.whl
.
File metadata
- Download URL: kr8s-0.12.5-py3-none-any.whl
- Upload date:
- Size: 50.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7cc351f99aae7f1d96e77da86d6d33928fcee592b1c8987caf2608c0b788028c |
|
MD5 | afe1a61714480fec97ed8bc419d0d574 |
|
BLAKE2b-256 | 8cf238d88578a259e24fa7f70ff23d7b41f0ed81fe8e02fa2619e8bc3ff8514a |