Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 611 - 620 of 669 for host:kubernetes.io (0.03 sec)

  1. Assign Pods to Nodes using Node Affinity | Kube...

    This page shows how to assign a Kubernetes Pod to a particular node using Node Affinity in a Kubernetes cluster. 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/configure-pod-container/assign-pods-nodes-using-node-affinity/
    Registered: Fri Nov 15 06:50:33 UTC 2024
    - 441.6K bytes
    - Viewed (0)
  2. Assign Pods to Nodes | Kubernetes

    This page shows how to assign a Kubernetes Pod to a particular node in a Kubernetes cluster. 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/configure-pod-container/assign-pods-nodes/
    Registered: Fri Nov 15 06:50:28 UTC 2024
    - 438.2K bytes
    - Viewed (0)
  3. Assign CPU Resources to Containers and Pods | K...

    This page shows how to assign a CPU request and a CPU limit to a container. Containers cannot use more CPU than the configured limit. Provided the system has CPU time free, a container is guaranteed to be allocated as much CPU as it requests. 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/assign-cpu-resource/
    Registered: Fri Nov 15 06:50:43 UTC 2024
    - 449.9K bytes
    - Viewed (0)
  4. Running ZooKeeper, A Distributed System Coordin...

    This tutorial demonstrates running Apache Zookeeper on Kubernetes using StatefulSets, PodDisruptionBudgets, and PodAntiAffinity. Before you begin Before starting this tutorial, you should be familiar with the following Kubernetes concepts: Pods Cluster DNS Headless Services PersistentVolumes PersistentVolume Provisioning StatefulSets PodDisruptionBudgets PodAntiAffinity kubectl CLI You must have a cluster with at least four nodes, and each node requires at least 2 CPUs and 4 GiB of memory. In this tutorial you will cordon and drain the cluster's nodes.
    kubernetes.io/docs/tutorials/stateful-application/zookeeper/
    Registered: Fri Nov 15 07:01:52 UTC 2024
    - 520.5K bytes
    - Viewed (0)
  5. Configure Multiple Schedulers | Kubernetes

    Kubernetes ships with a default scheduler that is described here. If the default scheduler does not suit your needs you can implement your own scheduler. Moreover, you can even run multiple schedulers simultaneously alongside the default scheduler and instruct Kubernetes what scheduler to use for each of your pods. Let's learn how to run multiple schedulers in Kubernetes with an example. A detailed description of how to implement a scheduler is outside the scope of this document.
    kubernetes.io/docs/tasks/extend-kubernetes/configure-multiple-schedulers/
    Registered: Fri Nov 15 07:01:30 UTC 2024
    - 474.8K bytes
    - Viewed (0)
  6. Introduction to kubectl | Kubernetes

    kubectl is the Kubernetes cli version of a swiss army knife, and can do many things. While this Book is focused on using kubectl to declaratively manage applications in Kubernetes, it also covers other kubectl functions. Command Families Most kubectl commands typically fall into one of a few categories: Type Used For Description Declarative Resource Management Deployment and operations (e.g. GitOps) Declaratively manage Kubernetes workloads using resource configuration Imperative Resource Management Development Only Run commands to manage Kubernetes workloads using Command Line arguments and flags Printing Workload State Debugging Print information about workloads Interacting with Containers Debugging Exec, attach, cp, logs Cluster Management Cluster operations Drain and cordon Nodes Declarative Application Management The preferred approach for managing resources is through declarative files called resource configuration used with the kubectl Apply command.
    kubernetes.io/docs/reference/kubectl/introduction/
    Registered: Fri Nov 15 07:14:57 UTC 2024
    - 430.9K bytes
    - Viewed (0)
  7. kubectl set | Kubernetes

    Synopsis Configure application resources. These commands help you make changes to existing application resources. kubectl set SUBCOMMAND Options -h, --help help for set --as string Username to impersonate for the operation. User could be a regular user or a service account in a namespace. --as-group strings Group to impersonate for the operation, this flag can be repeated to specify multiple groups. --as-uid string UID to impersonate for the operation.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_set/
    Registered: Fri Nov 15 07:23:31 UTC 2024
    - 432.5K bytes
    - Viewed (0)
  8. kubectl drain | Kubernetes

    Synopsis Drain node in preparation for maintenance. The given node will be marked unschedulable to prevent new pods from arriving. 'drain' evicts the pods if the API server supports https://kubernetes.io/docs/concepts/workloads/pods/disruptions/ eviction https://kubernetes.io/docs/concepts/workloads/pods/disruptions/ . Otherwise, it will use normal DELETE to delete the pods. The 'drain' evicts or deletes all pods except mirror pods (which cannot be deleted through the API server). If there are daemon set-managed pods, drain will not proceed without --ignore-daemonsets, and regardless it will not delete any daemon set-managed pods, because those pods would be immediately replaced by the daemon set controller, which ignores unschedulable markings.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_drain/
    Registered: Fri Nov 15 07:23:25 UTC 2024
    - 438.2K bytes
    - Viewed (0)
  9. JSONPath Support | Kubernetes

    Kubectl supports JSONPath template. JSONPath template is composed of JSONPath expressions enclosed by curly braces {}. Kubectl uses JSONPath expressions to filter on specific fields in the JSON object and format the output. In addition to the original JSONPath template syntax, the following functions and syntax are valid: Use double quotes to quote text inside JSONPath expressions. Use the range, end operators to iterate lists. Use negative slice indices to step backwards through a list.
    kubernetes.io/docs/reference/kubectl/jsonpath/
    Registered: Fri Nov 15 07:23:03 UTC 2024
    - 438.4K bytes
    - Viewed (0)
  10. kubectl create secret | Kubernetes

    Synopsis Create a secret with specified type. A docker-registry type secret is for accessing a container registry. A generic type secret indicate an Opaque secret type. A tls type secret holds TLS certificate and its associated key. kubectl create secret (docker-registry | generic | tls) Options -h, --help help for secret --as string Username to impersonate for the operation. User could be a regular user or a service account in a namespace.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_secret/
    Registered: Fri Nov 15 07:23:52 UTC 2024
    - 432.8K bytes
    - Viewed (0)
Back to top