- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 171 - 180 of 673 for host:kubernetes.io (0.03 sec)
-
Pod Topology Spread Constraints | Kubernetes
You can use topology spread constraints to control how Pods are spread across your cluster among failure-domains such as regions, zones, nodes, and other user-defined topology domains. This can help to achieve high availability as well as efficient resource utilization. You can set cluster-level constraints as a default, or configure topology spread constraints for individual workloads. Motivation Imagine that you have a cluster of up to twenty nodes, and you want to run a workload that automatically scales how many replicas it uses.kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/Registered: Wed Feb 12 05:54:52 UTC 2025 - 486.5K bytes - Viewed (0) -
Controlling Access to the Kubernetes API | Kube...
This page provides an overview of controlling access to the Kubernetes API. Users access the Kubernetes API using kubectl, client libraries, or by making REST requests. Both human users and Kubernetes service accounts can be authorized for API access. When a request reaches the API, it goes through several stages, illustrated in the following diagram: Transport security By default, the Kubernetes API server listens on port 6443 on the first non-localhost network interface, protected by TLS.kubernetes.io/docs/concepts/security/controlling-access/Registered: Wed Feb 12 05:54:57 UTC 2025 - 439.9K bytes - Viewed (0) -
Autoscaling Workloads | Kubernetes
With autoscaling, you can automatically update your workloads in one way or another. This allows your cluster to react to changes in resource demand more elastically and efficiently.kubernetes.io/docs/concepts/workloads/autoscaling/Registered: Wed Feb 12 05:54:35 UTC 2025 - 437.5K 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: Wed Feb 12 05:54:03 UTC 2025 - 438.9K bytes - Viewed (0) -
Use an Image Volume With a Pod | Kubernetes
FEATURE STATE: Kubernetes v1.31 [alpha] (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 Feb 12 06:09:50 UTC 2025 - 435.6K 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 http://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 Feb 12 06:09:54 UTC 2025 - 464.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 Feb 12 06:09:31 UTC 2025 - 441.6K 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.32.0/bin/linux/amd64 BINARY=kubectl FILES=( "$BINARY" "$BINARY.sig" "$BINARY.kubernetes.io/docs/tasks/administer-cluster/verify-signed-artifacts/Registered: Wed Feb 12 06:08:44 UTC 2025 - 442.9K bytes - Viewed (0) -
Configure DNS for a Cluster | Kubernetes
Kubernetes offers a DNS cluster addon, which most of the supported environments enable by default. In Kubernetes version 1.11 and later, CoreDNS is recommended and is installed by default with kubeadm. For more information on how to configure CoreDNS for a Kubernetes cluster, see the Customizing DNS Service. An example demonstrating how to use Kubernetes DNS with kube-dns, see the Kubernetes DNS sample plugin.kubernetes.io/docs/tasks/access-application-cluster/configure-dns-cluster/Registered: Wed Feb 12 06:18:00 UTC 2025 - 428.4K bytes - Viewed (0) -
kubectl certificate deny | Kubernetes
Synopsis Deny a certificate signing request. kubectl certificate deny allows a cluster admin to deny a certificate signing request (CSR). This action tells a certificate signing controller to not to issue a certificate to the requester. kubectl certificate deny (-f FILENAME | NAME) Examples # Deny CSR 'csr-sqgzp' kubectl certificate deny csr-sqgzp Options --allow-missing-template-keys Default: true If true, ignore any errors in templates when a field or map key is missing in the template.kubernetes.io/docs/reference/kubectl/generated/kubectl_certificate/kubectl_certificate_deny/Registered: Wed Feb 12 06:29:49 UTC 2025 - 437.5K bytes - Viewed (0)