Search Options

Display Count
Sort
Preferred Language
Label
Advanced Search

Results 621 - 630 of 721 for host:kubernetes.io (0.03 seconds)

  1. Gang Scheduling | Kubernetes

    FEATURE STATE: Kubernetes v1.35 [alpha](disabled by default) Gang scheduling ensures that a group of Pods are scheduled on an "all-or-nothing" basis. If the cluster cannot accommodate the entire group (or a defined minimum number of Pods), none of the Pods are bound to a node. This feature depends on the Workload API. Ensure the GenericWorkload feature gate and the scheduling.k8s.io/v1alpha1 API group are enabled in the cluster. How it works When the GangScheduling plugin is enabled, the scheduler alters the lifecycle for Pods belonging to a gang pod group policy within a Workload.
    kubernetes.io/docs/concepts/scheduling-eviction/gang-scheduling/
    Fri Feb 06 07:46:40 GMT 2026
      471.4K bytes
  2. Configure a Pod to Use a Volume for Storage | K...

    This page shows how to configure a Pod to use a Volume for storage. A Container's file system lives only as long as the Container does. So when a Container terminates and restarts, filesystem changes are lost. For more consistent storage that is independent of the Container, you can use a Volume. This is especially important for stateful applications, such as key-value stores (such as Redis) and databases. Before you begin You need to have a Kubernetes cluster, and the kubectl command-line tool must be configured to communicate with your cluster.
    kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/
    Fri Feb 06 08:03:57 GMT 2026
      482.3K bytes
  3. Operating etcd clusters for Kubernetes | Kubern...

    etcd is a consistent and highly-available key value store used as Kubernetes' backing store for all cluster data. If your Kubernetes cluster uses etcd as its backing store, make sure you have a back up plan for the data. You can find in-depth information about etcd in the official documentation. Before you begin Before you follow steps in this page to deploy, manage, back up or restore etcd, you need to understand the typical expectations for operating an etcd cluster.
    kubernetes.io/docs/tasks/administer-cluster/configure-upgrade-etcd/
    Fri Feb 06 08:04:20 GMT 2026
      501.2K bytes
  4. Use Cascading Deletion in a Cluster | Kubernetes

    This page shows you how to specify the type of cascading deletion to use in your cluster during garbage collection. Before you begin You need to have a Kubernetes cluster, and the kubectl command-line tool must be configured to communicate with your cluster. It is recommended to run this tutorial on a cluster with at least two nodes that are not acting as control plane hosts. If you do not already have a cluster, you can create one by using minikube or you can use one of these Kubernetes playgrounds:
    kubernetes.io/docs/tasks/administer-cluster/use-cascading-deletion/
    Fri Feb 06 08:03:17 GMT 2026
      482.9K bytes
  5. Verify Signed Kubernetes Artifacts | Kubernetes

    FEATURE STATE: Kubernetes v1.26 [beta] Before you begin You will need to have the following tools installed: cosign (install guide) curl (often provided by your operating system) jq (download jq) Verifying binary signatures The Kubernetes release process signs all binary artifacts (tarballs, SPDX files, standalone binaries) by using cosign's keyless signing. To verify a particular binary, retrieve it together with its signature and certificate: URL=https://dl.k8s.io/release/v1.35.0/bin/linux/amd64 BINARY=kubectl FILES=( "$BINARY" "$BINARY.sig" "$BINARY.
    kubernetes.io/docs/tasks/administer-cluster/verify-signed-artifacts/
    Fri Feb 06 08:03:26 GMT 2026
      483.5K bytes
  6. Share Process Namespace between Containers in a...

    This page shows how to configure process namespace sharing for a pod. When process namespace sharing is enabled, processes in a container are visible to all other containers in the same pod. You can use this feature to configure cooperating containers, such as a log handler sidecar container, or to troubleshoot container images that don't include debugging utilities like a shell. Before you begin You need to have a Kubernetes cluster, and the kubectl command-line tool must be configured to communicate with your cluster.
    kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/
    Fri Feb 06 08:03:33 GMT 2026
      480.9K bytes
  7. Resize CPU and Memory Resources assigned to Con...

    FEATURE STATE: Kubernetes v1.35 [stable](enabled by default) This page explains how to change the CPU and memory resource requests and limits assigned to a container without recreating the Pod. Traditionally, changing a Pod's resource requirements necessitated deleting the existing Pod and creating a replacement, often managed by a workload controller. In-place Pod Resize allows changing the CPU/memory allocation of container(s) within a running Pod while potentially avoiding application disruption. The process for resizing Pod resources is covered in Resize CPU and Memory Resources assigned to Pods.
    kubernetes.io/docs/tasks/configure-pod-container/resize-container-resources/
    Fri Feb 06 08:03:47 GMT 2026
      498.3K bytes
  8. Using a KMS provider for data encryption | Kube...

    This page shows how to configure a Key Management Service (KMS) provider and plugin to enable secret data encryption. In Kubernetes 1.35 there are two versions of KMS at-rest encryption. You should use KMS v2 if feasible because KMS v1 is deprecated (since Kubernetes v1.28) and disabled by default (since Kubernetes v1.29). KMS v2 offers significantly better performance characteristics than KMS v1. Caution:This documentation is for the generally available implementation of KMS v2 (and for the deprecated version 1 implementation).
    kubernetes.io/docs/tasks/administer-cluster/kms-provider/
    Fri Feb 06 08:04:30 GMT 2026
      502.6K bytes
  9. Logging in Kubernetes | Kubernetes

    Logging architecture and system logs.
    kubernetes.io/docs/tasks/debug/logging/
    Fri Feb 06 08:04:44 GMT 2026
      466.4K bytes
  10. About cgroup v2 | Kubernetes

    On Linux, control groups constrain resources that are allocated to processes. The kubelet and the underlying container runtime need to interface with cgroups to enforce resource management for pods and containers which includes cpu/memory requests and limits for containerized workloads. There are two versions of cgroups in Linux: cgroup v1 and cgroup v2. cgroup v2 is the new generation of the cgroup API. What is cgroup v2? FEATURE STATE: Kubernetes v1.
    kubernetes.io/docs/concepts/architecture/cgroups/
    Fri Feb 06 07:41:39 GMT 2026
      476.5K bytes
Back to Top