gpt4 book ai didi

python - 将文件复制到Kubernetes Pod

转载 作者:行者123 更新时间:2023-12-02 12:28:04 25 4
gpt4 key购买 nike

我正在尝试使用以下方式将二进制文件复制到Kubernetes Pod。如果文件是文本格式而不是二进制文件,则脚本可以工作。

from kubernetes import client, config

try:
config.load_kube_config()
except TypeError:
config.load_incluster_config()

api = client.CoreV1Api()

exec_command = ['tar', 'xvf', '-', '-C', '/']
resp = stream(
api.connect_get_namespaced_pod_exec,
'pod_name', 'namespace', command=exec_command,
stderr=True, stdin=True, stdout=True, tty=False, _preload_content=False
)

source_file = './test_data/simulated/some.nc'
destination_path = '/tmp/some.nc'

with TemporaryFile() as tar_buffer:
with tarfile.open(fileobj=tar_buffer, mode='w') as tar:
tar.add(name=source_file, arcname=destination_path)
tar_buffer.seek(0)
commands = []
commands.append(tar_buffer.read())

while resp.is_open():
resp.update(timeout=1)
if resp.peek_stdout():
print("STDOUT: %s" % resp.read_stdout())
if resp.peek_stderr():
print("STDERR: %s" % resp.read_stderr())
if commands:
c = commands.pop(0)
resp.write_stdin(str(c))
# works if source and destination files are txt format
# and the above line is resp.write_stdin(c.decode())
else:
break
resp.close()

在STDERR上,我得到以下日志“tar:这看起来不像tar存档”

最佳答案

我发现一个包装正是在这样做。我的问题是复制二进制文件。事实证明,该程序包运行一个Kubernetes作业来完成复制。
https://github.com/nuvo/skbn

关于python - 将文件复制到Kubernetes Pod,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61720834/

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