Get started with Kubernetes (using Python) | Kubernetes
kubernetes.io › blog › 2019/07/23Jul 23, 2019 · This is my favorite book on Docker and Kubernetes. Kubernetes Learning Path: 50 days from zero to hero with Kubernetes - on Microsoft’s site This is a 10-page pdf that has tons of links to videos (with Brendan Burns), documentation sites, and a really good workshop for Azure Kubernetes Service. How to enable Kubernetes in Docker Desktop
kubernetes · PyPI
https://pypi.org/project/kubernetes15.12.2021 · kubernetes 21.7.0 pip install kubernetes Copy PIP instructions. Latest version. Released: Dec 15, 2021 Kubernetes python client. Navigation. Project description Release history Download files Project links. Homepage Statistics. GitHub statistics: Stars: Forks: Open issues/PRs: View ...
kubernetes-job · PyPI
pypi.org › project › kubernetes-jobMar 19, 2021 · pip install kubernetes-job Quick start from kubernetes_job import JobManager def add(a, b): return a + b manager = JobManager(k8s_client=k8s_client, k8s_job_spec='job.yaml', namespace='default') job = manager.create_job(add, 1, 2) The JobManager will now create a Kubernetes job using the basic job specification in the job.yaml file.