Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 461 - 470 of 669 for host:kubernetes.io (0.03 sec)

  1. Running in multiple zones | Kubernetes

    This page describes running Kubernetes across multiple zones. Background Kubernetes is designed so that a single Kubernetes cluster can run across multiple failure zones, typically where these zones fit within a logical grouping called a region. Major cloud providers define a region as a set of failure zones (also called availability zones) that provide a consistent set of features: within a region, each zone offers the same APIs and services.
    kubernetes.io/docs/setup/best-practices/multiple-zones/
    Registered: Fri Nov 15 06:28:50 UTC 2024
    - 434.3K bytes
    - Viewed (0)
  2. Nodes | Kubernetes

    Kubernetes runs your workload by placing containers into Pods to run on Nodes. A node may be a virtual or physical machine, depending on the cluster. Each node is managed by the control plane and contains the services necessary to run Pods. Typically you have several nodes in a cluster; in a learning or resource-limited environment, you might have only one node. The components on a node include the kubelet, a container runtime, and the kube-proxy.
    kubernetes.io/docs/concepts/architecture/nodes/
    Registered: Fri Nov 15 06:28:56 UTC 2024
    - 450.9K bytes
    - Viewed (0)
  3. Owners and Dependents | Kubernetes

    In Kubernetes, some objects are owners of other objects. For example, a ReplicaSet is the owner of a set of Pods. These owned objects are dependents of their owner. Ownership is different from the labels and selectors mechanism that some resources also use. For example, consider a Service that creates EndpointSlice objects. The Service uses labels to allow the control plane to determine which EndpointSlice objects are used for that Service.
    kubernetes.io/docs/concepts/overview/working-with-objects/owners-dependents/
    Registered: Fri Nov 15 06:29:36 UTC 2024
    - 432.7K bytes
    - Viewed (0)
  4. Ephemeral Containers | Kubernetes

    FEATURE STATE: Kubernetes v1.25 [stable] This page provides an overview of ephemeral containers: a special type of container that runs temporarily in an existing Pod to accomplish user-initiated actions such as troubleshooting. You use ephemeral containers to inspect services rather than to build applications. Understanding ephemeral containers Pods are the fundamental building block of Kubernetes applications. Since Pods are intended to be disposable and replaceable, you cannot add a container to a Pod once it has been created.
    kubernetes.io/docs/concepts/workloads/pods/ephemeral-containers/
    Registered: Fri Nov 15 06:27:52 UTC 2024
    - 430.4K bytes
    - Viewed (0)
  5. Considerations for large clusters | Kubernetes

    A cluster is a set of nodes (physical or virtual machines) running Kubernetes agents, managed by the control plane. Kubernetes v1.31 supports clusters with up to 5,000 nodes. More specifically, Kubernetes is designed to accommodate configurations that meet all of the following criteria: No more than 110 pods per node No more than 5,000 nodes No more than 150,000 total pods No more than 300,000 total containers You can scale your cluster by adding or removing nodes.
    kubernetes.io/docs/setup/best-practices/cluster-large/
    Registered: Fri Nov 15 06:28:35 UTC 2024
    - 433.6K bytes
    - Viewed (0)
  6. Policies | Kubernetes

    Manage security and best-practices with policies.
    kubernetes.io/docs/concepts/policy/
    Registered: Fri Nov 15 06:38:20 UTC 2024
    - 429.4K bytes
    - Viewed (0)
  7. Resource Quotas | Kubernetes

    When several users or teams share a cluster with a fixed number of nodes, there is a concern that one team could use more than its fair share of resources. Resource quotas are a tool for administrators to address this concern. A resource quota, defined by a ResourceQuota object, provides constraints that limit aggregate resource consumption per namespace. It can limit the quantity of objects that can be created in a namespace by type, as well as the total amount of compute resources that may be consumed by resources in that namespace.
    kubernetes.io/docs/concepts/policy/resource-quotas/
    Registered: Fri Nov 15 06:38:26 UTC 2024
    - 484.7K bytes
    - Viewed (0)
  8. 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 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: Fri Nov 15 06:39:01 UTC 2024
    - 462.9K bytes
    - Viewed (0)
  9. Secrets | Kubernetes

    A Secret is an object that contains a small amount of sensitive data such as a password, a token, or a key. Such information might otherwise be put in a Pod specification or in a container image. Using a Secret means that you don't need to include confidential data in your application code. Because Secrets can be created independently of the Pods that use them, there is less risk of the Secret (and its data) being exposed during the workflow of creating, viewing, and editing Pods.
    kubernetes.io/docs/concepts/configuration/secret/
    Registered: Fri Nov 15 06:38:53 UTC 2024
    - 500.9K bytes
    - Viewed (0)
  10. kubectl create clusterrole | Kubernetes

    Synopsis Create a cluster role. kubectl create clusterrole NAME --verb=verb --resource=resource.group [--resource-name=resourcename] [--dry-run=server|client|none] Examples # Create a cluster role named "pod-reader" that allows user to perform "get", "watch" and "list" on pods kubectl create clusterrole pod-reader --verb=get,list,watch --resource=pods # Create a cluster role named "pod-reader" with ResourceName specified kubectl create clusterrole pod-reader --verb=get --resource=pods --resource-name=readablepod --resource-name=anotherpod # Create a cluster role named "foo" with API Group specified kubectl create clusterrole foo --verb=get,list,watch --resource=rs.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_clusterrole/
    Registered: Fri Nov 15 07:15:04 UTC 2024
    - 438.6K bytes
    - Viewed (0)
Back to top