- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 141 - 150 of 692 for host:kubernetes.io (0.03 sec)
-
Security For Windows Nodes | Kubernetes
This page describes security considerations and best practices specific to the Windows operating system. Protection for Secret data on nodes On Windows, data from Secrets are written out in clear text onto the node's local storage (as compared to using tmpfs / in-memory filesystems on Linux). As a cluster operator, you should take both of the following additional measures: Use file ACLs to secure the Secrets' file location. Apply volume-level encryption using BitLocker.kubernetes.io/docs/concepts/security/windows-security/Registered: Wed Jul 16 07:58:15 UTC 2025 - 453.9K bytes - Viewed (0) -
Changing the Container Runtime on a Node from D...
This task outlines the steps needed to update your container runtime to containerd from Docker. It is applicable for cluster operators running Kubernetes 1.23 or earlier. This also covers an example scenario for migrating from dockershim to containerd. Alternative container runtimes can be picked from this page. Before you begin Note: This section links to third party projects that provide functionality required by Kubernetes. The Kubernetes project authors aren't responsible for these projects, which are listed alphabetically.kubernetes.io/docs/tasks/administer-cluster/migrating-from-dockershim/change-runtime-containerd/Registered: Wed Jul 16 08:09:27 UTC 2025 - 466.1K bytes - Viewed (0) -
Securing a Cluster | Kubernetes
This document covers topics related to protecting a cluster from accidental or malicious access and provides recommendations on overall security. 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. If you do not already have a cluster, you can create one by using minikube or you can use one of these Kubernetes playgrounds:kubernetes.io/docs/tasks/administer-cluster/securing-a-cluster/Registered: Wed Jul 16 08:13:35 UTC 2025 - 470.8K bytes - Viewed (0) -
Translate a Docker Compose File to Kubernetes R...
What's Kompose? It's a conversion tool for all things compose (namely Docker Compose) to container orchestrators (Kubernetes or OpenShift). More information can be found on the Kompose website at https://kompose.io/. 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/configure-pod-container/translate-compose-kubernetes/Registered: Wed Jul 16 08:13:23 UTC 2025 - 486.8K bytes - Viewed (0) -
Configure a Pod to Use a Volume for Storage | K...
This page shows how to configure a Pod to use a Volume for storage. A Container's file system lives only as long as the Container does. So when a Container terminates and restarts, filesystem changes are lost. For more consistent storage that is independent of the Container, you can use a Volume. This is especially important for stateful applications, such as key-value stores (such as Redis) and databases. Before you begin You need to have a Kubernetes cluster, and the kubectl command-line tool must be configured to communicate with your cluster.kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/Registered: Wed Jul 16 08:12:51 UTC 2025 - 465K bytes - Viewed (0) -
Monitoring, Logging, and Debugging | Kubernetes
Set up monitoring and logging to troubleshoot a cluster, or debug a containerized application.kubernetes.io/docs/tasks/debug/Registered: Wed Jul 16 08:15:39 UTC 2025 - 458.2K bytes - Viewed (0) -
Configure Liveness, Readiness and Startup Probe...
This page shows how to configure liveness, readiness and startup probes for containers. For more information about probes, see Liveness, Readiness and Startup Probes The kubelet uses liveness probes to know when to restart a container. For example, liveness probes could catch a deadlock, where an application is running, but unable to make progress. Restarting a container in such a state can help to make the application more available despite bugs.kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/Registered: Wed Jul 16 08:15:16 UTC 2025 - 514.3K bytes - Viewed (0) -
Use an Image Volume With a Pod | Kubernetes
FEATURE STATE: Kubernetes v1.33 [beta] (enabled by default: false) This page shows how to configure a pod using image volumes. This allows you to mount content from OCI registries inside containers. 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/configure-pod-container/image-volumes/Registered: Wed Jul 16 08:16:18 UTC 2025 - 464.6K bytes - Viewed (0) -
Configure a Pod to Use a Projected Volume for S...
This page shows how to use a projected Volume to mount several existing volume sources into the same directory. Currently, secret, configMap, downwardAPI, and serviceAccountToken volumes can be projected. Note:serviceAccountToken is not a volume type. 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/configure-pod-container/configure-projected-volume-storage/Registered: Wed Jul 16 08:16:31 UTC 2025 - 463.2K bytes - Viewed (0) -
Verify Signed Kubernetes Artifacts | Kubernetes
FEATURE STATE: Kubernetes v1.26 [beta] Before you begin You will need to have the following tools installed: cosign (install guide) curl (often provided by your operating system) jq (download jq) Verifying binary signatures The Kubernetes release process signs all binary artifacts (tarballs, SPDX files, standalone binaries) by using cosign's keyless signing. To verify a particular binary, retrieve it together with its signature and certificate: URL=https://dl.k8s.io/release/v1.33.0/bin/linux/amd64 BINARY=kubectl FILES=( "$BINARY" "$BINARY.sig" "$BINARY.kubernetes.io/docs/tasks/administer-cluster/verify-signed-artifacts/Registered: Wed Jul 16 08:14:48 UTC 2025 - 466.3K bytes - Viewed (0)