
- Pods - Kubernetes- Jul 28, 2025 · Pods are the smallest deployable units of computing that you can create and manage in Kubernetes. A Pod (as in a pod of whales or pea pod) is a group of one or more … 
- kubectl delete - Kubernetes- Sep 4, 2025 · Some resources, such as pods, support graceful deletion. These resources define a default period before they are forcibly terminated (the grace period) but you may override that … 
- kubectl get - Kubernetes- Sep 4, 2025 · Examples # List all pods in ps output format kubectl get pods # List all pods in ps output format with more information (such as node name) kubectl get pods -o wide # List a … 
- kubectl describe - Kubernetes- Sep 4, 2025 · # Describe a pod kubectl describe pods/nginx # Describe a pod identified by type and name in "pod.json" kubectl describe -f pod.json # Describe all pods kubectl describe pods … 
- Taints and Tolerations | Kubernetes- Jun 10, 2025 · Node affinity is a property of Pods that attracts them to a set of nodes (either as a preference or a hard requirement). Taints are the opposite -- they allow a node to repel a set … 
- DNS for Services and Pods - Kubernetes- Jul 29, 2025 · Kubernetes publishes information about Pods and Services which is used to program DNS. kubelet configures Pods' DNS so that running containers can look up Services … 
- Local Files And Paths Used By The Kubelet | Kubernetes- Apr 7, 2025 · All resource managers keep the mapping of Pods to allocated resources in state files. State files are located in the kubelet's base directory, also termed the root directory (but … 
- Autoscaling Workloads - Kubernetes- Apr 7, 2025 · The concept of Autoscaling in Kubernetes refers to the ability to automatically update an object that manages a set of Pods (for example a Deployment). Scaling workloads … 
- Pod Lifecycle - Kubernetes- Sep 24, 2025 · Like individual application containers, Pods are considered to be relatively ephemeral (rather than durable) entities. Pods are created, assigned a unique ID (UID), and … 
- CoreDNS is stuck in CrashLoopBackOff - General Discussions- Nov 15, 2024 · 4. Allow privilege escalation: CoreDNS may require higher privileges to function properly. You can modify the deployment to allow privilege escalation. 5. Restart CoreDNS …