我在 Kubernetes 上部署了一个应用程序。我想使用 Python 中的 kubernetes 包获取该部署的正在运行的 pod 的数量。任何线索表示赞赏。谢谢 :)
问问题
269 次
1 回答
0
您是否考虑过阅读包装中的文档?这是第一个样品!
https://github.com/kubernetes-client/python
from kubernetes import client, config
# Configs can be set in Configuration class directly or using helper utility
config.load_kube_config()
v1 = client.CoreV1Api()
print("Listing pods with their IPs:")
ret = v1.list_pod_for_all_namespaces(watch=False)
for i in ret.items:
print("%s\t%s\t%s" % (i.status.pod_ip, i.metadata.namespace, i.metadata.name))
https://github.com/mnubo/kubernetes-py
from kubernetes import K8sPod
pod = K8sPod(config=cfg_token, name='redis')
pod.list()
于 2018-12-06T13:11:43.067 回答