如何使用kubectl exec
或Kubernetes API for python
在pod内创建文件(纪元)的时间?
我需要这段时间来计算从现在到文件创建时间所经过的时间。
有什么建议吗?
谢谢
答案 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())