k8s command
时间: 2023-10-26 20:44:32 浏览: 94
ansible安装k8s,1.25
以下是一些常用的 Kubernetes 命令:
- `kubectl apply -f <filename>`: 使用 YAML 文件创建或更新资源
- `kubectl get <resource>`: 获取资源列表,例如 `kubectl get pods`
- `kubectl describe <resource> <name>`: 获取资源的详细信息,例如 `kubectl describe pod my-pod`
- `kubectl delete <resource> <name>`: 删除指定的资源,例如 `kubectl delete pod my-pod`
- `kubectl logs <pod-name>`: 查看 Pod 的日志
- `kubectl exec <pod-name> <command>`: 在 Pod 中执行命令,例如 `kubectl exec my-pod ls`
- `kubectl port-forward <pod-name> <local-port>:<pod-port>`: 将 Pod 的端口映射到本地端口,例如 `kubectl port-forward my-pod 8080:80`
- `kubectl scale <resource> <name> --replicas=<number>`: 扩容或缩容 Pod,例如 `kubectl scale deployment/my-deployment --replicas=3`
阅读全文