Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 231 - 240 of 669 for host:kubernetes.io (0.2 sec)

  1. Install Tools | Kubernetes

    Set up Kubernetes tools on your computer.
    kubernetes.io/docs/tasks/tools/
    Registered: Fri Nov 15 06:40:00 UTC 2024
    - 426.4K bytes
    - Viewed (0)
  2. Install and Set Up kubectl on Windows | Kubernetes

    Before you begin You must use a kubectl version that is within one minor version difference of your cluster. For example, a v1.31 client can communicate with v1.30, v1.31, and v1.32 control planes. Using the latest compatible version of kubectl helps avoid unforeseen issues. Install kubectl on Windows The following methods exist for installing kubectl on Windows: Install kubectl binary on Windows (via direct download or curl) Install on Windows using Chocolatey, Scoop, or winget Install kubectl binary on Windows (via direct download or curl) You have two options for installing kubectl on your Windows device
    kubernetes.io/docs/tasks/tools/install-kubectl-windows/
    Registered: Fri Nov 15 06:40:16 UTC 2024
    - 444K bytes
    - Viewed (0)
  3. Resource Bin Packing | Kubernetes

    In the scheduling-plugin NodeResourcesFit of kube-scheduler, there are two scoring strategies that support the bin packing of resources: MostAllocated and RequestedToCapacityRatio. Enabling bin packing using MostAllocated strategy The MostAllocated strategy scores the nodes based on the utilization of resources, favoring the ones with higher allocation. For each resource type, you can set a weight to modify its influence in the node score. To set the MostAllocated strategy for the NodeResourcesFit plugin, use a scheduler configuration similar to the following:
    kubernetes.io/docs/concepts/scheduling-eviction/resource-bin-packing/
    Registered: Fri Nov 15 06:39:34 UTC 2024
    - 445.4K bytes
    - Viewed (0)
  4. User Namespaces | Kubernetes

    FEATURE STATE: Kubernetes v1.30 [beta] This page explains how user namespaces are used in Kubernetes pods. A user namespace isolates the user running inside the container from the one in the host. A process running as root in a container can run as a different (non-root) user in the host; in other words, the process has full privileges for operations inside the user namespace, but is unprivileged for operations outside the namespace.
    kubernetes.io/docs/concepts/workloads/pods/user-namespaces/
    Registered: Fri Nov 15 06:29:03 UTC 2024
    - 438.8K bytes
    - Viewed (0)
  5. Deployments | Kubernetes

    A Deployment manages a set of Pods to run an application workload, usually one that doesn't maintain state.
    kubernetes.io/docs/concepts/workloads/controllers/deployment/
    Registered: Fri Nov 15 06:29:14 UTC 2024
    - 517.3K bytes
    - Viewed (0)
  6. Automatic Cleanup for Finished Jobs | Kubernetes

    A time-to-live mechanism to clean up old Jobs that have finished execution.
    kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/
    Registered: Fri Nov 15 06:29:20 UTC 2024
    - 428.6K bytes
    - Viewed (0)
  7. Containers | Kubernetes

    Technology for packaging an application along with its runtime dependencies.
    kubernetes.io/docs/concepts/containers/
    Registered: Fri Nov 15 06:29:30 UTC 2024
    - 427.1K bytes
    - Viewed (0)
  8. Managing Workloads | Kubernetes

    You've deployed your application and exposed it via a Service. Now what? Kubernetes provides a number of tools to help you manage your application deployment, including scaling and updating. Organizing resource configurations Many applications require multiple resources to be created, such as a Deployment along with a Service. Management of multiple resources can be simplified by grouping them together in the same file (separated by --- in YAML). For example:
    kubernetes.io/docs/concepts/workloads/management/
    Registered: Fri Nov 15 06:29:52 UTC 2024
    - 459.9K bytes
    - Viewed (0)
  9. Object Names and IDs | Kubernetes

    Each object in your cluster has a Name that is unique for that type of resource. Every Kubernetes object also has a UID that is unique across your whole cluster. For example, you can only have one Pod named myapp-1234 within the same namespace, but you can have one Pod and one Deployment that are each named myapp-1234. For non-unique user-provided attributes, Kubernetes provides labels and annotations. Names A client-provided string that refers to an object in a resource URL, such as /api/v1/pods/some-name.
    kubernetes.io/docs/concepts/overview/working-with-objects/names/
    Registered: Fri Nov 15 06:30:00 UTC 2024
    - 433.7K bytes
    - Viewed (0)
  10. DaemonSet | Kubernetes

    A DaemonSet defines Pods that provide node-local facilities. These might be fundamental to the operation of your cluster, such as a networking helper tool, or be part of an add-on.
    kubernetes.io/docs/concepts/workloads/controllers/daemonset/
    Registered: Fri Nov 15 06:30:18 UTC 2024
    - 452.4K bytes
    - Viewed (0)
Back to top