pod是k8s调度最小单位,一个pod可以包含一或多个container,容器间共享一个Network namespace
kubectl create -f pod_nginx.yml
1 | apiVersion: v1 |
kubectl delete -f pod_nginx.yml
kubectl get pods -o wide –all-namespaces
kubectl exec -it nginx sh 如果多个容器的话需要-c指定
kubectl describe pods nginx
kubectl port-forward nginx 8080:80 无法后台运行,不常用