kubernetes中常用命令

  |   0 评论   |   0 浏览

常用命令

查看

  • kubectl get pods
  • kubectl get nodes
  • kubectl get endpoints
  • kubectl get rc,services
  • kubectl get configmap

配置

导入配置

  • kubectl get pod pod_name -o yaml

应用配置

  • kubectl apply -f FILENAME

停止

label

kubectl label node hostname note.abeffect=true

重启pod

kubectl get pod PODNAME -n NAMESPACE -o yaml | kubectl replace --force -f -

查看pod启动失败原因

$ kubectl describe pods ${POD_NAME}

标签(label)

$ kubectl get nodes --show-labels

标记

kubectl label nodes <node-name>  <label-key>=<label-value>

参考