gpt4 book ai didi

python - Kubernetes:如何使用 python 获取容器的状态和重新启动?

转载 作者:行者123 更新时间:2023-12-01 01:32:53 24 4
gpt4 key购买 nike

我想获取容器状态并重新启动 Pod,使用 python kubernetes 。我目前正在使用list_namespaced_pod获取 pod 和 container status ,我将其解释为 Pod 的状态。这可行,但远非理想的解决方案。我正在寻找能为我提供与 kubectl -n $NAMESPACE get pods 类似信息的东西。

最佳答案

例如,您可以执行以下操作来获取所有 Pod 及其状态:

api_response = api_instance.list_namespaced_pod(namespace, pretty=pretty, timeout_seconds=timeout_seconds, watch=watch)

for i in api_response.items:
print(i.metadata.name + " " + i.status.phase)

关于python - Kubernetes:如何使用 python 获取容器的状态和重新启动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52668642/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com