Kubectl 跟踪日志直到完成或超时
运行作业后,我想跟踪其日志,直到它完成或在 bash 脚本中指定的超时之后。
这可以通过以下方式完成:
kubectl wait --for=condition=complete --timeout=30s job/data-job-name
kubectl logs job/data-job-name
上述唯一的问题是超时会导致失败,这意味着 kubectl logs 命令永远不会运行。
我怎样才能做到这一点?
After I run a job, I'd like to follow its logs until it either completes or after a specified timeout in a bash script.
This can kind of be accomplished with the following:
kubectl wait --for=condition=complete --timeout=30s job/data-job-name
kubectl logs job/data-job-name
The only problem with the above is that the timeout causes a failure, meaning the kubectl logs
command never runs.
How can I accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论