Mastering Kubernetes Python Library: Installation, Configuration, And Pods Listing Examples
Kubernetes
Python
Library
Installation
Configuration
CoreV1Api
Pods
This article provides a detailed guide on installing the official Kubernetes Python library, setting up configuration paths, and showcasing its usage through code examples. It also includes an example of listing pods’ IP addresses across different namespaces using CoreV1Api.
k8s python api library
install the official library with pip install kubernetes
the default api config path for k8s is at ~/.kube/config
k3s
is at /etc/rancher/k3s/k3s.yaml
microk8s
is at /var/snap/microk8s/current/credentials/kubelet.config
you can also set KUBECONFIG
environment variable to let kubernetes
python library know where the config is
to use it:
https://github.com/kubernetes-client/python/blob/master/kubernetes/README.md
from kubernetes import client, config
# Configs can be set in Configuration class directly or using helper utility
= ...
config_path
config.load_kube_config(config_path)= client.CoreV1Api()
v1 print("Listing pods with their IPs:")
= v1.list_pod_for_all_namespaces(watch=False)
ret for i in ret.items:
print("%s\t%s\t%s" % (i.status.pod_ip, i.metadata.namespace, i.metadata.name))