- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 121 - 130 of 675 for host:kubernetes.io (0.03 sec)
-
Manual Rotation of CA Certificates | Kubernetes
This page shows how to manually rotate the certificate authority (CA) certificates. 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/tls/manual-rotation-of-ca-certificates/Registered: Mon Dec 16 06:50:22 UTC 2024 - 441.7K bytes - Viewed (0) -
Debug Pods | Kubernetes
This guide is to help users debug applications that are deployed into Kubernetes and not behaving correctly. This is not a guide for people who want to debug their cluster. For that you should check out this guide. Diagnosing the problem The first step in troubleshooting is triage. What is the problem? Is it your Pods, your Replication Controller or your Service? Debugging Pods Debugging Replication Controllers Debugging Services Debugging Pods The first step in debugging a Pod is taking a look at it.kubernetes.io/docs/tasks/debug/debug-application/debug-pods/Registered: Mon Dec 16 06:49:40 UTC 2024 - 439.8K 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 Dec 16 06:25:49 UTC 2024 - 439.3K bytes - Viewed (0) -
Resource Management for Pods and Containers | K...
When you specify a Pod, you can optionally specify how much of each resource a container needs. The most common resources to specify are CPU and memory (RAM); there are others. When you specify the resource request for containers in a Pod, the kube-scheduler uses this information to decide which node to place the Pod on. When you specify a resource limit for a container, the kubelet enforces those limits so that the running container is not allowed to use more of that resource than the limit you set.kubernetes.io/docs/concepts/configuration/manage-resources-containers/Registered: Mon Dec 16 06:25:53 UTC 2024 - 501.7K bytes - Viewed (0) -
Storage Classes | Kubernetes
This document describes the concept of a StorageClass in Kubernetes. Familiarity with volumes and persistent volumes is suggested. A StorageClass provides a way for administrators to describe the classes of storage they offer. Different classes might map to quality-of-service levels, or to backup policies, or to arbitrary policies determined by the cluster administrators. Kubernetes itself is unopinionated about what classes represent. The Kubernetes concept of a storage class is similar to “profiles” in some other storage system designs.kubernetes.io/docs/concepts/storage/storage-classes/Registered: Mon Dec 16 06:26:23 UTC 2024 - 491.3K 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 Dec 16 06:26:13 UTC 2024 - 442.6K bytes - Viewed (0) -
Pod Security Standards | Kubernetes
A detailed look at the different policy levels defined in the Pod Security Standards.kubernetes.io/docs/concepts/security/pod-security-standards/Registered: Mon Dec 16 06:27:29 UTC 2024 - 450K bytes - Viewed (0) -
Network Policies | Kubernetes
If you want to control traffic flow at the IP address or port level (OSI layer 3 or 4), NetworkPolicies allow you to specify rules for traffic flow within your cluster, and also between Pods and the outside world. Your cluster must use a network plugin that supports NetworkPolicy enforcement.kubernetes.io/docs/concepts/services-networking/network-policies/Registered: Mon Dec 16 06:28:01 UTC 2024 - 487.8K 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 Dec 16 06:28:23 UTC 2024 - 452.4K 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 Dec 16 06:28:18 UTC 2024 - 439.6K bytes - Viewed (0)