【Kubernetes】基本概念和术语
目录 Master Node Pod Label(标签) Replication Controller(RC) Deployment Horizontal Pod Autoscaler(HPA) Service(服务) Volume(存储卷) Persistent Volume Namespace(命名空间) Annotation(注解) 原文: http://blog.gqylpy.com/gqy/393 命令小结 1.创建 kubectl create -f mysql-xx.yaml 2.查基本信息 kubectl get xx <name> # xx可以为:rc/rs/pods/deployments/nodes/svc/services/namespaces 可指定 <name> 查询某一个 node/deploy 的基本信息 3.查看详细信息 kubectl describe xx <name> # xx可以为:node/deploy等 # 可指定 <name> 查询某一个 node/deploy 的详细信息 4.指定命名空间 namespace 查询: kubectl get xx -n "namespace" # 或如下 kubectl get xx --namespace="namespace" @ Kubernets 中的大部分概念如 Node 、 Pod 、