Kubectl在pod中获取文件创建时间

时间:2020-05-25 14:50:55

标签: python kubernetes

如何使用kubectl execKubernetes API for python在pod内创建文件(纪元)的时间?

我需要这段时间来计算从现在到文件创建时间所经过的时间。

有什么建议吗?

谢谢

1 个答案:

答案 0 :(得分:0)

我假设您在kubeconfig下有一个~/.kube/config文件

from kubernetes import client, config
from kubernetes.client.rest import ApiException
from pprint import pprint

config.load_kube_config()
v1 = client.CoreV1Api()

namespace = 'default'

try:
    api_response = v1.list_namespaced_pod(namespace)
    pprint(api_response.items[0].metadata.creation_timestamp)
except ApiException as e:
    print("Exception when calling CoreV1Api->list_namespaced_pod: %s\n" % e)

它返回tzutc,您需要对其进行解析。

$ python3 get_pods.py
datetime.datetime(2020, 5, 25, 16, 2, 39, tzinfo=tzutc())