创建hell world pod
#vim hello-world-pod.yaml apiVersion: v1
kind: Pod
metadata:
name: hello-world
spec: 配置pod的具体规格
restartPolicy: OnFailure
containers:
- name: hello
image: "ubuntu:14.04"
command: ["/bin/echo","Hello","world"] #kubectl create -f hello-world-pod.yaml #kubectl get pod hello-world 查询 也可以用kubectl describe pod helloworld #kubectl logs hello-world删除 pod
kubectl delete pod hello
更新Pod
kubctl replace hello-world.yaml
相关文章
- k8s 基础 pod操作
- kubernetes/k8s CRI分析-kubelet创建pod分析
- k8s创建pod和service的过程
- k8s组件通信或者创建pod生命周期
- CentOS 7 yum安装 k8s 创建Pod一直处于ContainerCreating状态 问题解决
- k8s Pod的自动水平伸缩(HPA)
- Kubernetes(K8s)基础概念 —— 凿壁偷光
- k8s的Pod状态和生命周期管理
- linux运维、架构之路-K8s通过Service访问Pod
- K8s - Kubernetes重要概念介绍(Cluster、Master、Node、Pod、Controller、Service、Namespace)