登录 注册
当前位置:主页 > 资源下载 > 31 > 官方Python客户端库 for Kubernetes是python实现的

官方Python客户端库 for Kubernetes是python实现的

  • 更新:2024-09-07 16:11:56
  • 大小:3.2MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

Kubernetes Python客户端 API的Python客户端。 安装 来自来源: git clone --recursive https://github.com/kubernetes-client/python.git cd python python setup.py install 直接从 : pip install kubernetes 例子 列出所有豆荚: 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 ( "