Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 431 - 440 of 721 for host:kubernetes.io (0.04 sec)

  1. Set up an Extension API Server | Kubernetes

    Setting up an extension API server to work with the aggregation layer allows the Kubernetes apiserver to be extended with additional APIs, which are not part of the core Kubernetes APIs. 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.
    kubernetes.io/docs/tasks/extend-kubernetes/setup-extension-api-server/
    Registered: Mon Jan 05 08:47:03 UTC 2026
    - 471.2K bytes
    - Viewed (0)
  2. Connecting Applications with Services | Kubernetes

    The Kubernetes model for connecting containers Now that you have a continuously running, replicated application you can expose it on a network. Kubernetes assumes that pods can communicate with other pods, regardless of which host they land on. Kubernetes gives every pod its own cluster-private IP address, so you do not need to explicitly create links between pods or map container ports to host ports. This means that containers within a Pod can all reach each other's ports on localhost, and all pods in a cluster can see each other without NAT.
    kubernetes.io/docs/tutorials/services/connect-applications-service/
    Registered: Mon Jan 05 08:47:19 UTC 2026
    - 523.6K bytes
    - Viewed (0)
  3. Configure Access to Multiple Clusters | Kubernetes

    This page shows how to configure access to multiple clusters by using configuration files. After your clusters, users, and contexts are defined in one or more configuration files, you can quickly switch between clusters by using the kubectl config use-context command. Note:A file that is used to configure access to a cluster is sometimes called a kubeconfig file. This is a generic way of referring to configuration files. It does not mean that there is a file named kubeconfig.
    kubernetes.io/docs/tasks/access-application-cluster/configure-access-multiple-clusters/
    Registered: Mon Jan 05 08:47:58 UTC 2026
    - 509.1K bytes
    - Viewed (0)
  4. kubectl edit | Kubernetes

    Production-Grade Container Orchestration
    kubernetes.io/docs/reference/kubectl/generated/kubectl_edit/
    Registered: Mon Jan 05 09:07:39 UTC 2026
    - 477.5K bytes
    - Viewed (0)
  5. Node-specific Volume Limits | Kubernetes

    This page describes the maximum number of volumes that can be attached to a Node for various cloud providers. Cloud providers like Google, Amazon, and Microsoft typically have a limit on how many volumes can be attached to a Node. It is important for Kubernetes to respect those limits. Otherwise, Pods scheduled on a Node could get stuck waiting for volumes to attach. Kubernetes default limits The Kubernetes scheduler has default limits on the number of volumes that can be attached to a Node:
    kubernetes.io/docs/concepts/storage/storage-limits/
    Registered: Mon Jan 05 08:18:18 UTC 2026
    - 472.9K bytes
    - Viewed (0)
  6. 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: Mon Jan 05 08:17:19 UTC 2026
    - 476.7K bytes
    - Viewed (0)
  7. 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: Mon Jan 05 08:09:55 UTC 2026
    - 494.8K bytes
    - Viewed (0)
  8. Running in multiple zones | Kubernetes

    This page describes running Kubernetes across multiple zones. Background Kubernetes is designed so that a single Kubernetes cluster can run across multiple failure zones, typically where these zones fit within a logical grouping called a region. Major cloud providers define a region as a set of failure zones (also called availability zones) that provide a consistent set of features: within a region, each zone offers the same APIs and services.
    kubernetes.io/docs/setup/best-practices/multiple-zones/
    Registered: Mon Jan 05 08:09:31 UTC 2026
    - 475K bytes
    - Viewed (0)
  9. Migrating from dockershim | Kubernetes

    Production-Grade Container Orchestration
    kubernetes.io/docs/tasks/administer-cluster/migrating-from-dockershim/
    Registered: Mon Jan 05 08:31:46 UTC 2026
    - 468.1K bytes
    - Viewed (0)
  10. 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: Mon Jan 05 08:31:31 UTC 2026
    - 490.1K bytes
    - Viewed (0)
Back to top