Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 271 - 280 of 723 for host:kubernetes.io (0.04 sec)

  1. Container Environment | Kubernetes

    This page describes the resources available to Containers in the Container environment. Container environment The Kubernetes Container environment provides several important resources to Containers: A filesystem, which is a combination of an image and one or more volumes. Information about the Container itself. Information about other objects in the cluster. Container information The hostname of a Container is the name of the Pod in which the Container is running. It is available through the hostname command or the gethostname function call in libc.
    kubernetes.io/docs/concepts/containers/container-environment/
    Registered: Mon Jan 26 06:32:24 UTC 2026
    - 471.8K bytes
    - Viewed (0)
  2. Set up a High Availability etcd Cluster with ku...

    By default, kubeadm runs a local etcd instance on each control plane node. It is also possible to treat the etcd cluster as external and provision etcd instances on separate hosts. The differences between the two approaches are covered in the Options for Highly Available topology page. This task walks through the process of creating a high availability external etcd cluster of three members that can be used by kubeadm during cluster creation.
    kubernetes.io/docs/setup/production-environment/tools/kubeadm/setup-ha-etcd-with-kubeadm/
    Registered: Mon Jan 26 06:32:35 UTC 2026
    - 495.4K bytes
    - Viewed (0)
  3. Configuring each kubelet in your cluster using ...

    Note: Dockershim has been removed from the Kubernetes project as of release 1.24. Read the Dockershim Removal FAQ for further details. FEATURE STATE: Kubernetes v1.11 [stable] The lifecycle of the kubeadm CLI tool is decoupled from the kubelet, which is a daemon that runs on each node within the Kubernetes cluster. The kubeadm CLI tool is executed by the user when Kubernetes is initialized or upgraded, whereas the kubelet is always running in the background.
    kubernetes.io/docs/setup/production-environment/tools/kubeadm/kubelet-integration/
    Registered: Mon Jan 26 06:32:42 UTC 2026
    - 484.4K bytes
    - Viewed (0)
  4. Volume Snapshots | Kubernetes

    In Kubernetes, a VolumeSnapshot represents a snapshot of a volume on a storage system. This document assumes that you are already familiar with Kubernetes persistent volumes. Introduction Similar to how API resources PersistentVolume and PersistentVolumeClaim are used to provision volumes for users and administrators, VolumeSnapshotContent and VolumeSnapshot API resources are provided to create volume snapshots for users and administrators. A VolumeSnapshotContent is a snapshot taken from a volume in the cluster that has been provisioned by an administrator.
    kubernetes.io/docs/concepts/storage/volume-snapshots/
    Registered: Mon Jan 26 06:34:50 UTC 2026
    - 491.6K bytes
    - Viewed (0)
  5. Annotations | Kubernetes

    You can use Kubernetes annotations to attach arbitrary non-identifying metadata to objects. Clients such as tools and libraries can retrieve this metadata. Attaching metadata to objects You can use either labels or annotations to attach metadata to Kubernetes objects. Labels can be used to select objects and to find collections of objects that satisfy certain conditions. In contrast, annotations are not used to identify and select objects. The metadata in an annotation can be small or large, structured or unstructured, and can include characters not permitted by labels.
    kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
    Registered: Mon Jan 26 06:33:28 UTC 2026
    - 476.9K bytes
    - Viewed (0)
  6. Horizontal Pod Autoscaling | Kubernetes

    In Kubernetes, a HorizontalPodAutoscaler automatically updates a workload resource (such as a Deployment or StatefulSet), with the aim of automatically scaling capacity to match demand. Horizontal scaling means that the response to increased load is to deploy more Pods. This is different from vertical scaling, which for Kubernetes would mean assigning more resources (for example: memory or CPU) to the Pods that are already running for the workload. If the load decreases, and the number of Pods is above the configured minimum, the HorizontalPodAutoscaler instructs the workload resource (the Deployment, StatefulSet, or other similar resource) to scale back down.
    kubernetes.io/docs/concepts/workloads/autoscaling/horizontal-pod-autoscale/
    Registered: Mon Jan 26 06:28:55 UTC 2026
    - 521.4K bytes
    - Viewed (0)
  7. ReplicationController | Kubernetes

    Legacy API for managing workloads that can scale horizontally. Superseded by the Deployment and ReplicaSet APIs.
    kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/
    Registered: Mon Jan 26 06:28:31 UTC 2026
    - 496K bytes
    - Viewed (0)
  8. Garbage Collection | Kubernetes

    Garbage collection is a collective term for the various mechanisms Kubernetes uses to clean up cluster resources. This allows the clean up of resources like the following: Terminated pods Completed Jobs Objects without owner references Unused containers and container images Dynamically provisioned PersistentVolumes with a StorageClass reclaim policy of Delete Stale or expired CertificateSigningRequests (CSRs) Nodes deleted in the following scenarios: On a cloud when the cluster uses a cloud controller manager On-premises when the cluster uses an addon similar to a cloud controller manager Node Lease objects Owners and dependents Many objects in Kubernetes link to each other through owner references.
    kubernetes.io/docs/concepts/architecture/garbage-collection/
    Registered: Mon Jan 26 06:29:18 UTC 2026
    - 482.6K bytes
    - Viewed (0)
  9. Workloads | Kubernetes

    Understand Pods, the smallest deployable compute object in Kubernetes, and the higher-level abstractions that help you to run them.
    kubernetes.io/docs/concepts/workloads/
    Registered: Mon Jan 26 06:29:23 UTC 2026
    - 474.2K bytes
    - Viewed (0)
  10. Workload Reference | Kubernetes

    FEATURE STATE: Kubernetes v1.35 [alpha](disabled by default) You can link a Pod to a Workload object to indicate that the Pod belongs to a larger application or group. This enables the scheduler to make decisions based on the group's requirements rather than treating the Pod as an independent entity. Specifying a Workload reference When the GenericWorkload feature gate is enabled, you can use the spec.workloadRef field in your Pod manifest.
    kubernetes.io/docs/concepts/workloads/pods/workload-reference/
    Registered: Mon Jan 26 06:29:35 UTC 2026
    - 474.7K bytes
    - Viewed (0)
Back to top