About 9,150 results
Open links in new tab
  1. 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 …

  2. 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 …

  3. 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 …

  4. 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 …

  5. 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 …

  6. 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 …

  7. 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 …

  8. 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 …

  9. 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 …

  10. 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 …