- Sort Score
- Result 10 results
- Languages All
- Labels All
Popular Words: test
Results 31 - 40 of 629 for host:kubernetes.io (0.11 sec)
-
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: Mon Oct 28 08:49:25 UTC 2024 - 440.3K bytes - Viewed (0) -
Dynamic Volume Provisioning | Kubernetes
Dynamic volume provisioning allows storage volumes to be created on-demand. Without dynamic provisioning, cluster administrators have to manually make calls to their cloud or storage provider to create new storage volumes, and then create PersistentVolume objects to represent them in Kubernetes. The dynamic provisioning feature eliminates the need for cluster administrators to pre-provision storage. Instead, it automatically provisions storage when users create PersistentVolumeClaim objects. Background The implementation of dynamic volume provisioning is based on the API object StorageClass from the API group storage.kubernetes.io/docs/concepts/storage/dynamic-provisioning/Registered: Mon Oct 28 08:51:13 UTC 2024 - 436.6K bytes - Viewed (0) -
Volume Snapshots | Kubernetes
In Kubernetes, a VolumeSnapshot represents a snapshot of a volume on a storage system. This document assumes that you are already familiar with Kubernetes persistent volumes. Introduction Similar to how API resources PersistentVolume and PersistentVolumeClaim are used to provision volumes for users and administrators, VolumeSnapshotContent and VolumeSnapshot API resources are provided to create volume snapshots for users and administrators. A VolumeSnapshotContent is a snapshot taken from a volume in the cluster that has been provisioned by an administrator.kubernetes.io/docs/concepts/storage/volume-snapshots/Registered: Mon Oct 28 08:51:24 UTC 2024 - 449.1K bytes - Viewed (0) -
Configuration Best Practices | Kubernetes
This document highlights and consolidates configuration best practices that are introduced throughout the user guide, Getting Started documentation, and examples. This is a living document. If you think of something that is not on this list but might be useful to others, please don't hesitate to file an issue or submit a PR. General Configuration Tips When defining configurations, specify the latest stable API version. Configuration files should be stored in version control before being pushed to the cluster.kubernetes.io/docs/concepts/configuration/overview/Registered: Mon Oct 28 08:51:51 UTC 2024 - 436.2K bytes - Viewed (0) -
Networking on Windows | Kubernetes
Kubernetes supports running nodes on either Linux or Windows. You can mix both kinds of node within a single cluster. This page provides an overview to networking specific to the Windows operating system. Container networking on Windows Networking for Windows containers is exposed through CNI plugins. Windows containers function similarly to virtual machines in regards to networking. Each container has a virtual network adapter (vNIC) which is connected to a Hyper-V virtual switch (vSwitch).kubernetes.io/docs/concepts/services-networking/windows-networking/Registered: Mon Oct 28 08:50:50 UTC 2024 - 439.6K bytes - Viewed (0) -
Pod Priority and Preemption | Kubernetes
FEATURE STATE: Kubernetes v1.14 [stable] Pods can have priority. Priority indicates the importance of a Pod relative to other Pods. If a Pod cannot be scheduled, the scheduler tries to preempt (evict) lower priority Pods to make scheduling of the pending Pod possible. Warning:In a cluster where not all users are trusted, a malicious user could create Pods at the highest possible priorities, causing other Pods to be evicted/not get scheduled.kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/Registered: Mon Oct 28 08:58:12 UTC 2024 - 450.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: Mon Oct 28 08:59:55 UTC 2024 - 438.8K 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: Mon Oct 28 09:00:11 UTC 2024 - 487.8K 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: Mon Oct 28 09:00:19 UTC 2024 - 444.8K bytes - Viewed (0) -
Use Port Forwarding to Access Applications in a...
This page shows how to use kubectl port-forward to connect to a MongoDB server running in a Kubernetes cluster. This type of connection can be useful for database debugging. 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/access-application-cluster/port-forward-access-application-cluster/Registered: Mon Oct 28 09:09:08 UTC 2024 - 436K bytes - Viewed (0)