Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 451 - 460 of 669 for host:kubernetes.io (0.03 sec)

  1. Init Containers | Kubernetes

    This page provides an overview of init containers: specialized containers that run before app containers in a Pod. Init containers can contain utilities or setup scripts not present in an app image. You can specify init containers in the Pod specification alongside the containers array (which describes app containers). In Kubernetes, a sidecar container is a container that starts before the main application container and continues to run. This document is about init containers: containers that run to completion during Pod initialization.
    kubernetes.io/docs/concepts/workloads/pods/init-containers/
    Registered: Fri Nov 15 06:25:17 UTC 2024
    - 454.3K bytes
    - Viewed (0)
  2. Dual-stack support with kubeadm | Kubernetes

    FEATURE STATE: Kubernetes v1.23 [stable] Your Kubernetes cluster includes dual-stack networking, which means that cluster networking lets you use either address family. In a cluster, the control plane can assign both an IPv4 address and an IPv6 address to a single Pod or a Service. Before you begin You need to have installed the kubeadm tool, following the steps from Installing kubeadm. For each server that you want to use as a node, make sure it allows IPv6 forwarding.
    kubernetes.io/docs/setup/production-environment/tools/kubeadm/dual-stack-support/
    Registered: Fri Nov 15 06:25:23 UTC 2024
    - 445K bytes
    - Viewed (0)
  3. Service ClusterIP allocation | Kubernetes

    In Kubernetes, Services are an abstract way to expose an application running on a set of Pods. Services can have a cluster-scoped virtual IP address (using a Service of type: ClusterIP). Clients can connect using that virtual IP address, and Kubernetes then load-balances traffic to that Service across the different backing Pods. How Service ClusterIPs are allocated? When Kubernetes needs to assign a virtual IP address for a Service, that assignment happens one of two ways:
    kubernetes.io/docs/concepts/services-networking/cluster-ip-allocation/
    Registered: Fri Nov 15 06:25:42 UTC 2024
    - 435.8K bytes
    - Viewed (0)
  4. Device Plugins | Kubernetes

    Device plugins let you configure your cluster with support for devices or resources that require vendor-specific setup, such as GPUs, NICs, FPGAs, or non-volatile main memory.
    kubernetes.io/docs/concepts/extend-kubernetes/compute-storage-net/device-plugins/
    Registered: Fri Nov 15 06:39:30 UTC 2024
    - 456.3K bytes
    - Viewed (0)
  5. API Priority and Fairness | Kubernetes

    FEATURE STATE: Kubernetes v1.29 [stable] Controlling the behavior of the Kubernetes API server in an overload situation is a key task for cluster administrators. The kube-apiserver has some controls available (i.e. the --max-requests-inflight and --max-mutating-requests-inflight command-line flags) to limit the amount of outstanding work that will be accepted, preventing a flood of inbound requests from overloading and potentially crashing the API server, but these flags are not enough to ensure that the most important requests get through in a period of high traffic.
    kubernetes.io/docs/concepts/cluster-administration/flow-control/
    Registered: Fri Nov 15 06:39:39 UTC 2024
    - 485K bytes
    - Viewed (0)
  6. Configuring a cgroup driver | Kubernetes

    This page explains how to configure the kubelet's cgroup driver to match the container runtime cgroup driver for kubeadm clusters. Before you begin You should be familiar with the Kubernetes container runtime requirements. Configuring the container runtime cgroup driver The Container runtimes page explains that the systemd driver is recommended for kubeadm based setups instead of the kubelet's default cgroupfs driver, because kubeadm manages the kubelet as a systemd service.
    kubernetes.io/docs/tasks/administer-cluster/kubeadm/configure-cgroup-driver/
    Registered: Fri Nov 15 06:40:22 UTC 2024
    - 433.6K bytes
    - Viewed (0)
  7. Switching from Polling to CRI Event-based Updat...

    FEATURE STATE: Kubernetes v1.25 [alpha] (enabled by default: false) This page shows how to migrate nodes to use event based updates for container status. The event-based implementation reduces node resource consumption by the kubelet, compared to the legacy approach that relies on polling. You may know this feature as evented Pod lifecycle event generator (PLEG). That's the name used internally within the Kubernetes project for a key implementation detail.
    kubernetes.io/docs/tasks/administer-cluster/switch-to-evented-pleg/
    Registered: Fri Nov 15 06:40:35 UTC 2024
    - 431.7K bytes
    - Viewed (0)
  8. Configure Default CPU Requests and Limits for a...

    Define a default CPU resource limits for a namespace, so that every new Pod in that namespace has a CPU resource limit configured.
    kubernetes.io/docs/tasks/administer-cluster/manage-resources/cpu-default-namespace/
    Registered: Fri Nov 15 06:39:54 UTC 2024
    - 446.3K bytes
    - Viewed (0)
  9. Configure Default Memory Requests and Limits fo...

    Define a default memory resource limit for a namespace, so that every new Pod in that namespace has a memory resource limit configured.
    kubernetes.io/docs/tasks/administer-cluster/manage-resources/memory-default-namespace/
    Registered: Fri Nov 15 06:39:48 UTC 2024
    - 448.3K bytes
    - Viewed (0)
  10. Sidecar Containers | Kubernetes

    FEATURE STATE: Kubernetes v1.29 [beta] Sidecar containers are the secondary containers that run along with the main application container within the same Pod. These containers are used to enhance or to extend the functionality of the primary app container by providing additional services, or functionality such as logging, monitoring, security, or data synchronization, without directly altering the primary application code. Typically, you only have one app container in a Pod.
    kubernetes.io/docs/concepts/workloads/pods/sidecar-containers/
    Registered: Fri Nov 15 06:28:43 UTC 2024
    - 448.8K bytes
    - Viewed (0)
Back to top