Search Options

Display Count
Sort
Preferred Language
Label
Advanced Search

Results 491 - 500 of 721 for host:kubernetes.io (0.08 seconds)

  1. Node-pressure Eviction | Kubernetes

    Node-pressure eviction is the process by which the kubelet proactively terminates pods to reclaim resource on nodes. The kubelet monitors resources like memory, disk space, and filesystem inodes on your cluster's nodes. When one or more of these resources reach specific consumption levels, the kubelet can proactively fail one or more pods on the node to reclaim resources and prevent starvation. During a node-pressure eviction, the kubelet sets the phase for the selected pods to Failed, and terminates the Pod.
    kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/
    Fri Feb 06 07:51:44 GMT 2026
      504.9K bytes
  2. Administration with kubeadm | Kubernetes

    Production-Grade Container Orchestration
    kubernetes.io/docs/tasks/administer-cluster/kubeadm/
    Fri Feb 06 07:53:54 GMT 2026
      468.6K bytes
  3. Find Out What Container Runtime is Used on a No...

    This page outlines steps to find out what container runtime the nodes in your cluster use. Depending on the way you run your cluster, the container runtime for the nodes may have been pre-configured or you need to configure it. If you're using a managed Kubernetes service, there might be vendor-specific ways to check what container runtime is configured for the nodes. The method described on this page should work whenever the execution of kubectl is allowed.
    kubernetes.io/docs/tasks/administer-cluster/migrating-from-dockershim/find-out-runtime-you-use/
    Fri Feb 06 07:54:03 GMT 2026
      473.8K bytes
  4. Node Declared Features | Kubernetes

    FEATURE STATE: Kubernetes v1.35 [alpha](disabled by default) Kubernetes nodes use declared features to report the availability of specific features that are new or feature-gated. Control plane components utilize this information to make better decisions. The kube-scheduler, via the NodeDeclaredFeatures plugin, ensures pods are only placed on nodes that explicitly support the features the pod requires. Additionally, the NodeDeclaredFeatureValidator admission controller validates pod updates against a node's declared features. This mechanism helps manage version skew and improve cluster stability, especially during cluster upgrades or in mixed-version environments where nodes might not all have the same features enabled.
    kubernetes.io/docs/concepts/scheduling-eviction/node-declared-features/
    Fri Feb 06 07:54:17 GMT 2026
      472.4K bytes
  5. Traces For Kubernetes System Components | Kuber...

    FEATURE STATE: Kubernetes v1.27 [beta] System component traces record the latency of and relationships between operations in the cluster. Kubernetes components emit traces using the OpenTelemetry Protocol with the gRPC exporter and can be collected and routed to tracing backends using an OpenTelemetry Collector. Trace Collection Kubernetes components have built-in gRPC exporters for OTLP to export traces, either with an OpenTelemetry Collector, or without an OpenTelemetry Collector. For a complete guide to collecting traces and using the collector, see Getting Started with the OpenTelemetry Collector.
    kubernetes.io/docs/concepts/cluster-administration/system-traces/
    Fri Feb 06 07:53:20 GMT 2026
      480.6K bytes
  6. Install Tools | Kubernetes

    Set up Kubernetes tools on your computer.
    kubernetes.io/docs/tasks/tools/
    Fri Feb 06 07:53:28 GMT 2026
      470.8K bytes
  7. Pod Lifecycle | Kubernetes

    This page describes the lifecycle of a Pod. Pods follow a defined lifecycle, starting in the Pending phase, moving through Running if at least one of its primary containers starts OK, and then through either the Succeeded or Failed phases depending on whether any container in the Pod terminated in failure. Like individual application containers, Pods are considered to be relatively ephemeral (rather than durable) entities. Pods are created, assigned a unique ID (UID), and scheduled to run on nodes where they remain until termination (according to restart policy) or deletion.
    kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/
    Fri Feb 06 07:38:28 GMT 2026
      563.4K bytes
  8. Learning environment | Kubernetes

    Production-Grade Container Orchestration
    kubernetes.io/docs/setup/learning-environment/
    Fri Feb 06 07:38:39 GMT 2026
      474.6K bytes
  9. Field Selectors | Kubernetes

    Field selectors let you select Kubernetes objects based on the value of one or more resource fields. Here are some examples of field selector queries: metadata.name=my-service metadata.namespace!=default status.phase=Pending This kubectl command selects all Pods for which the value of the status.phase field is Running: kubectl get pods --field-selector status.phase=Running Note:Field selectors are essentially resource filters. By default, no selectors/filters are applied, meaning that all resources of the specified type are selected.
    kubernetes.io/docs/concepts/overview/working-with-objects/field-selectors/
    Fri Feb 06 07:38:00 GMT 2026
      477.5K bytes
  10. Images | Kubernetes

    A container image represents binary data that encapsulates an application and all its software dependencies. Container images are executable software bundles that can run standalone and that make very well-defined assumptions about their runtime environment. You typically create a container image of your application and push it to a registry before referring to it in a Pod. This page provides an outline of the container image concept. Note:If you are looking for the container images for a Kubernetes release (such as v1.
    kubernetes.io/docs/concepts/containers/images/
    Fri Feb 06 07:38:17 GMT 2026
      508.9K bytes
Back to Top