Kubernetes
Kubernetes manages containers on a cluster of nodes (VMs).
- Control plane (master node)
- Worker nodes (these actually run containers / pods)
Clients and tools
- Kubectl
- Lens (GUI for monitoring Kubernetes)
Useful commands
- Delete all pods in the current namespace
kubectl delete pods --all --grace-period 15
- This will wait 15 seconds for the pod to terminate and then force it to be deleted.
Leave a Comment