当前位置:   article > 正文

Kubernetes的如何进入pod进行操作_kubectl如何进入pod交互

kubectl如何进入pod交互

首先类似于Docker容器,Kubernetes 使用kubectl 进行命令行操作

进入docker容器 :

docker exec -ti your-container-name /bin/sh

进入Kubernetes的pod:

kubectl exec -ti your-pod-name -n your-namespace – /bin/sh

Overview of kubectl

kubectl exec - Execute a command against a container in a pod.

// Get output from running 'date' from pod <pod-name>. By default, output is from the first container.
$ kubectl exec <pod-name> date

// Get output from running 'date' in container <container-name> of pod <pod-name>.
$ kubectl exec <pod-name> -c <container-name> date

// Get an interactive TTY and run /bin/bash from pod <pod-name>. By default, output is from the first container.
$ kubectl exec -ti <pod-name> /bin/bash
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/167531
推荐阅读
相关标签
  

闽ICP备14008679号