- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 421 - 430 of 705 for host:kubernetes.io (0.07 sec)
-
Configuration | Kubernetes
Resources that Kubernetes provides for configuring Pods.kubernetes.io/docs/concepts/configuration/Registered: Fri Dec 12 08:13:35 UTC 2025 - 458.5K bytes - Viewed (0) -
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: Fri Dec 12 08:04:44 UTC 2025 - 477.1K bytes - Viewed (0) -
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: Fri Dec 12 08:04:50 UTC 2025 - 467.6K bytes - Viewed (0) -
IPv4/IPv6 dual-stack | Kubernetes
Kubernetes lets you configure single-stack IPv4 networking, single-stack IPv6 networking, or dual stack networking with both network families active. This page explains how.kubernetes.io/docs/concepts/services-networking/dual-stack/Registered: Fri Dec 12 08:10:03 UTC 2025 - 497.6K bytes - Viewed (0) -
Resource Quotas | Kubernetes
When several users or teams share a cluster with a fixed number of nodes, there is a concern that one team could use more than its fair share of resources. Resource quotas are a tool for administrators to address this concern. A resource quota, defined by a ResourceQuota object, provides constraints that limit aggregate resource consumption per namespace. A ResourceQuota can also limit the quantity of objects that can be created in a namespace by API kind, as well as the total amount of infrastructure resources that may be consumed by API objects found in that namespace.kubernetes.io/docs/concepts/policy/resource-quotas/Registered: Fri Dec 12 08:10:22 UTC 2025 - 527.2K bytes - Viewed (0) -
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 Dec 12 08:10:43 UTC 2025 - 487.4K bytes - Viewed (0) -
Pod Security Policies | Kubernetes
Removed feature PodSecurityPolicy was deprecated in Kubernetes v1.21, and removed from Kubernetes in v1.25. Instead of using PodSecurityPolicy, you can enforce similar restrictions on Pods using either or both: Pod Security Admission a 3rd party admission plugin, that you deploy and configure yourself For a migration guide, see Migrate from PodSecurityPolicy to the Built-In PodSecurity Admission Controller. For more information on the removal of this API, see PodSecurityPolicy Deprecation: Past, Present, and Future.kubernetes.io/docs/concepts/security/pod-security-policy/Registered: Fri Dec 12 08:09:58 UTC 2025 - 459.8K bytes - Viewed (0) -
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 Dec 12 08:29:14 UTC 2025 - 490.4K bytes - Viewed (0) -
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: Fri Dec 12 08:14:58 UTC 2025 - 468.3K bytes - Viewed (0) -
Volumes | Kubernetes
Kubernetes volumes provide a way for containers in a pod to access and share data via the filesystem. There are different kinds of volume that you can use for different purposes, such as: populating a configuration file based on a ConfigMap or a Secret providing some temporary scratch space for a pod sharing a filesystem between two different containers in the same pod sharing a filesystem between two different pods (even if those Pods run on different nodes) durably storing data so that it stays available even if the Pod restarts or is replaced passing configuration information to an app running in a container, based on details of the Pod the container is in (for example: telling a sidecar container what namespace the Pod is running in) providing read-only access to data in a different container image Data sharing can be between different local processes within a container, or between different containers, or between Pods.kubernetes.io/docs/concepts/storage/volumes/Registered: Fri Dec 12 08:15:02 UTC 2025 - 581.6K bytes - Viewed (0)