Python client library for Kubernetes
Features
HTTP interface using requests using kubeconfig for authentication
Python native querying of Kubernetes API objects
Installation
To install pykube, use pip:
pip install pykube
Usage
A simple query for all ready pods in a custom namespace:
import operator
from pykube.config import KubeConfig
from pykube.http import HTTPClient
from pykube.objects import Pod
api = HTTPClient(KubeConfig.from_file("/Users/<username>/.kube/config"))
pods = Pod.objects(api).filter(namespace="gondor-system")
ready_pods = filter(operator.attrgetter("ready"), pods)
Selector query:
pods = Pod.objects(api).filter(
namespace="gondor-system",
selector={"gondor.io/name__in": {"api-web", "api-worker"}},
)
Requirements
Python 2.7 or 3.4+
requests (included in install_requires)
PyYAML (included in install_requires)
Release files for pykube 0.9.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pykube-0.9.0.tar.gz | 9.9 kB | Details |
Release files / pykube-0.9.0.tar.gz
| Download URL | pykube-0.9.0.tar.gz |
|---|---|
| Size | 9.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
dd5becdf837e99f9da28c27b23a529efd4b4e29eb64038ddf93b7d12bd14722c
|
|
BLAKE2b-256 checksum How to use checksums |
7f7f096a7d4602e235828401bccd8d2db2f0771b01a4c52f24f112245febf139
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |