k8s资源对象--pod

创建pod:

kubectl get pod

cp test_pod_1.yaml  nginx_pod.yaml

k8s资源对象--pod_第1张图片cah

查看详细信息:

pod的状态处于pending可能的原因:一个或多个没有运行

由于当前所有节点没有可用节点(所有节点资源不足,所有节点)

查看所有:kubectl get service -A  

工作负载/控制器

通过deployment管理()创建、删除、更新等)pod

案例:创建deployment

vim test-deploy.yaml

k8s资源对象--pod_第2张图片

你可能感兴趣的:(kubernetes,容器)