Python wrapper for Kubernetes which matches the interface of Docker
Project description
kompatible
This package exposes a subset of the Kubernetes Python Client with an interface which matches that of the Docker SDK for Python.
Examples
First, checkout this project, and install dependencies:
pip install -r requirements-dev.txt
.
Then, make sure you have installed and started
Docker
and/or Minikube
With those tools in place, either
import docker as sdk
or import kompatible as sdk
and the following examples will work, although in the first case
it's Docker containers starting up,
and in the latter it's Kubernetes pods.
"Hello World!": Run, list, remove
>>> client = sdk.from_env()
>>> [client.containers.run(
... "alpine", "echo hello world",
... name='foobar',
... labels={'foo': 'bar'})]
[...'hello world\n']
>>> def not_kube(containers): # Only needed for Docker, on Travis, with k8s started.
... return [c for c in containers if 'kube' not in c.name]
>>> containers = not_kube(client.containers.list(all=True, filters={}))
>>> [c.name for c in containers]
[...'foobar']
>>> c = containers[0]
>>> c.remove(force=True, v=True)
>>> containers = not_kube(client.containers.list(all=True, filters={}))
>>> assert len(containers) == 0
Container properties
>>> assert c.id
>>> assert c.image
>>> c.labels
{...'foo': ...'bar'}
>>> assert c.short_id
>>> assert c.status
containers.run
kwargs
Subclients
>>> assert client.api
>>> assert client.containers
>>> assert client.images
>>> assert client.volumes
TODO
client.api.base_url
client.containers.run(image_name,
name=container_spec.container_name,
ports={'{}/tcp'.format(container_spec.container_port): None},
detach=True,
labels=labels,
volumes=volumes,
nano_cpus=int(container_spec.cpus * 1e9),
environment=environment,
mem_reservation='{}M'.format(new_mem_reservation_mb))
client.containers.get(name_or_id)
container.logs(timestamps=True)
container.attrs['NetworkSettings']
container.attrs['Config']['Labels']
container.remove(force=True, v=True)
client.containers.list(all=True, filters=filters)
client.images
client.images.pull # Used by script, but not used by runtime.
# For Kubernetes, consider https://kubernetes.io/docs/concepts/containers/images/#pre-pulling-images
# We would need to make sure that every image is on every node we start up.
# Mayber other Container registries are faster than DockerHub, in which
# case pre-caching might be less important?
client.volumes
client.volumes.create(driver='local').name
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
Built Distribution
File details
Details for the file kompatible-0.0.2.tar.gz
.
File metadata
- Download URL: kompatible-0.0.2.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aafecbc5ffb3319d8d2fb1faa4fa1babef2fa5fa5a0a0cbc41f2786ff9fe4f3f |
|
MD5 | 12a334ec7e185e8645f546deab075190 |
|
BLAKE2b-256 | fce212a51e86a74e76d0e5363b10d6c480ad81d483a18d65cbb0c482bbffc7c6 |
File details
Details for the file kompatible-0.0.2-py2.py3-none-any.whl
.
File metadata
- Download URL: kompatible-0.0.2-py2.py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7a7cd56e07371e6bd69a559e7009906bb6da5dfe7e01f97b43ceee3da675201 |
|
MD5 | 9c253aa5685b8c4f539855b9baa463b4 |
|
BLAKE2b-256 | a8017af3cdb10a5de0f0b1138d97592f2581da3236ffe027abedb058105b5943 |