Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 521 - 530 of 705 for host:kubernetes.io (0.06 sec)

  1. Configure Pods and Containers | Kubernetes

    Perform common configuration tasks for Pods and containers.
    kubernetes.io/docs/tasks/configure-pod-container/
    Registered: Mon Nov 24 08:01:30 UTC 2025
    - 462.4K bytes
    - Viewed (0)
  2. Migrate from PodSecurityPolicy to the Built-In ...

    This page describes the process of migrating from PodSecurityPolicies to the built-in PodSecurity admission controller. This can be done effectively using a combination of dry-run and audit and warn modes, although this becomes harder if mutating PSPs are used. Before you begin Your Kubernetes server must be at or later than version v1.22. To check the version, enter kubectl version. If you are currently running a version of Kubernetes other than 1.
    kubernetes.io/docs/tasks/configure-pod-container/migrate-from-psp/
    Registered: Mon Nov 24 08:01:13 UTC 2025
    - 482.2K bytes
    - Viewed (0)
  3. Owners and Dependents | Kubernetes

    In Kubernetes, some objects are owners of other objects. For example, a ReplicaSet is the owner of a set of Pods. These owned objects are dependents of their owner. Ownership is different from the labels and selectors mechanism that some resources also use. For example, consider a Service that creates EndpointSlice objects. The Service uses labels to allow the control plane to determine which EndpointSlice objects are used for that Service.
    kubernetes.io/docs/concepts/overview/working-with-objects/owners-dependents/
    Registered: Mon Nov 24 07:42:47 UTC 2025
    - 465.8K bytes
    - Viewed (0)
  4. Cloud Controller Manager | Kubernetes

    FEATURE STATE: Kubernetes v1.11 [beta] Cloud infrastructure technologies let you run Kubernetes on public, private, and hybrid clouds. Kubernetes believes in automated, API-driven infrastructure without tight coupling between components. The cloud-controller-manager is a Kubernetes control plane component that embeds cloud-specific control logic. The cloud controller manager lets you link your cluster into your cloud provider's API, and separates out the components that interact with that cloud platform from components that only interact with your cluster.
    kubernetes.io/docs/concepts/architecture/cloud-controller/
    Registered: Mon Nov 24 07:43:46 UTC 2025
    - 477K 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 Nov 24 07:43:17 UTC 2025
    - 464.7K 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 Nov 24 07:42:23 UTC 2025
    - 469.2K bytes
    - Viewed (0)
  7. Configuration | Kubernetes

    Resources that Kubernetes provides for configuring Pods.
    kubernetes.io/docs/concepts/configuration/
    Registered: Mon Nov 24 07:42:34 UTC 2025
    - 458.5K bytes
    - Viewed (0)
  8. Sidecar Containers | Kubernetes

    FEATURE STATE: Kubernetes v1.33 [stable](enabled by default) 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: Mon Nov 24 07:41:59 UTC 2025
    - 482.6K bytes
    - Viewed (0)
  9. Pod Hostname | Kubernetes

    This page explains how to set a Pod's hostname, potential side effects after configuration, and the underlying mechanics. Default Pod hostname When a Pod is created, its hostname (as observed from within the Pod) is derived from the Pod's metadata.name value. Both the hostname and its corresponding fully qualified domain name (FQDN) are set to the metadata.name value (from the Pod's perspective) apiVersion: v1 kind: Pod metadata: name: busybox-1 spec: containers: - image: busybox:1.
    kubernetes.io/docs/concepts/workloads/pods/pod-hostname/
    Registered: Mon Nov 24 07:40:57 UTC 2025
    - 468.2K bytes
    - Viewed (0)
  10. Ephemeral Containers | Kubernetes

    FEATURE STATE: Kubernetes v1.25 [stable] This page provides an overview of ephemeral containers: a special type of container that runs temporarily in an existing Pod to accomplish user-initiated actions such as troubleshooting. You use ephemeral containers to inspect services rather than to build applications. Understanding ephemeral containers Pods are the fundamental building block of Kubernetes applications. Since Pods are intended to be disposable and replaceable, you cannot add a container to a Pod once it has been created.
    kubernetes.io/docs/concepts/workloads/pods/ephemeral-containers/
    Registered: Mon Nov 24 07:39:43 UTC 2025
    - 463.4K bytes
    - Viewed (0)
Back to top