- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 501 - 510 of 699 for host:kubernetes.io (0.94 sec)
-
Policies | Kubernetes
Manage security and best-practices with policies.kubernetes.io/docs/concepts/policy/Registered: Mon Sep 08 22:12:57 UTC 2025 - 461.9K bytes - Viewed (0) -
Taints and Tolerations | Kubernetes
Node affinity is a property of Pods that attracts them to a set of nodes (either as a preference or a hard requirement). Taints are the opposite -- they allow a node to repel a set of pods. Tolerations are applied to pods. Tolerations allow the scheduler to schedule pods with matching taints. Tolerations allow scheduling but don't guarantee scheduling: the scheduler also evaluates other parameters as part of its function.kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/Registered: Mon Sep 08 22:14:54 UTC 2025 - 487.3K 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: Mon Sep 08 22:14:18 UTC 2025 - 457.8K bytes - Viewed (0) -
Node Shutdowns | Kubernetes
In a Kubernetes cluster, a node can be shut down in a planned graceful way or unexpectedly because of reasons such as a power outage or something else external. A node shutdown could lead to workload failure if the node is not drained before the shutdown. A node shutdown can be either graceful or non-graceful. Graceful node shutdown The kubelet attempts to detect node system shutdown and terminates pods running on the node.kubernetes.io/docs/concepts/cluster-administration/node-shutdown/Registered: Mon Sep 08 22:14:27 UTC 2025 - 476.1K bytes - Viewed (0) -
Upgrading Linux nodes | Kubernetes
This page explains how to upgrade a Linux Worker Nodes created with kubeadm. Before you begin You need to have shell access to all the nodes, 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. To check the version, enter kubectl version.kubernetes.io/docs/tasks/administer-cluster/kubeadm/upgrading-linux-nodes/Registered: Mon Sep 08 22:14:39 UTC 2025 - 465.7K bytes - Viewed (0) -
Scheduling, Preemption and Eviction | Kubernetes
Production-Grade Container Orchestrationkubernetes.io/docs/concepts/scheduling-eviction/Registered: Mon Sep 08 22:13:52 UTC 2025 - 460.8K bytes - Viewed (0) -
Projected Volumes | Kubernetes
This document describes projected volumes in Kubernetes. Familiarity with volumes is suggested. Introduction A projected volume maps several existing volume sources into the same directory. Currently, the following types of volume sources can be projected: secret downwardAPI configMap serviceAccountToken clusterTrustBundle podCertificate All sources are required to be in the same namespace as the Pod. For more details, see the all-in-one volume design document. Example configuration with a secret, a downwardAPI, and a configMap pods/storage/projected-secret-downwardapi-configmap.kubernetes.io/docs/concepts/storage/projected-volumes/Registered: Mon Sep 08 21:56:16 UTC 2025 - 503.8K bytes - Viewed (0) -
Services, Load Balancing, and Networking | Kube...
Concepts and resources behind networking in Kubernetes.kubernetes.io/docs/concepts/services-networking/Registered: Mon Sep 08 21:57:23 UTC 2025 - 465.8K bytes - Viewed (0) -
Communication between Nodes and the Control Pla...
This document catalogs the communication paths between the API server and the Kubernetes cluster. The intent is to allow users to customize their installation to harden the network configuration such that the cluster can be run on an untrusted network (or on fully public IPs on a cloud provider). Node to Control Plane Kubernetes has a "hub-and-spoke" API pattern. All API usage from nodes (or the pods they run) terminates at the API server.kubernetes.io/docs/concepts/architecture/control-plane-node-communication/Registered: Mon Sep 08 21:57:32 UTC 2025 - 467.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: Mon Sep 08 21:57:00 UTC 2025 - 466.1K bytes - Viewed (0)