Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: %27 テスト [xss] test

Results 301 - 310 of 686 for host:kubernetes.io (0.03 sec)

  1. kubectl create poddisruptionbudget | Kubernetes

    Synopsis Create a pod disruption budget with the specified name, selector, and desired minimum available pods. kubectl create poddisruptionbudget NAME --selector=SELECTOR --min-available=N [--dry-run=server|client|none] Examples # Create a pod disruption budget named my-pdb that will select all pods with the app=rails label # and require at least one of them being available at any point in time kubectl create poddisruptionbudget my-pdb --selector=app=rails --min-available=1 # Create a pod disruption budget named my-pdb that will select all pods with the app=nginx label # and require at least half of the pods selected to be available at any point in time kubectl create pdb my-pdb --selector=app=nginx --min-available=50% 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_create/kubectl_create_poddisruptionbudget/
    Registered: Wed Jun 04 07:33:05 UTC 2025
    - 459.1K bytes
    - Viewed (0)
  2. kubectl rollout undo | Kubernetes

    Synopsis Roll back to a previous rollout. kubectl rollout undo (TYPE NAME | TYPE/NAME) [flags] Examples # Roll back to the previous deployment kubectl rollout undo deployment/abc # Roll back to daemonset revision 3 kubectl rollout undo daemonset/abc --to-revision=3 # Roll back to the previous deployment with dry-run kubectl rollout undo --dry-run=server deployment/abc 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_rollout/kubectl_rollout_undo/
    Registered: Wed Jun 04 07:31:53 UTC 2025
    - 456.3K bytes
    - Viewed (0)
  3. kube-controller-manager | Kubernetes

    Synopsis The Kubernetes controller manager is a daemon that embeds the core control loops shipped with Kubernetes. In applications of robotics and automation, a control loop is a non-terminating loop that regulates the state of the system. In Kubernetes, a controller is a control loop that watches the shared state of the cluster through the apiserver and makes changes attempting to move the current state towards the desired state. Examples of controllers that ship with Kubernetes today are the replication controller, endpoints controller, namespace controller, and serviceaccounts controller.
    kubernetes.io/docs/reference/command-line-tools-reference/kube-controller-manager/
    Registered: Wed Jun 04 07:34:14 UTC 2025
    - 501.6K bytes
    - Viewed (0)
  4. Blog guidelines | Kubernetes

    These guidelines cover the main Kubernetes blog and the Kubernetes contributor blog. All blog content must also adhere to the overall policy in the content guide. Before you begin Make sure you are familiar with the introduction sections of contributing to Kubernetes blogs, not just to learn about the two official blogs and the differences between them, but also to get an overview of the process. Original content The Kubernetes project accepts original content only, in English.
    kubernetes.io/docs/contribute/blog/guidelines/
    Registered: Wed Jun 04 07:35:40 UTC 2025
    - 454.9K bytes
    - Viewed (0)
  5. kube-apiserver Audit Configuration (v1) | Kuber...

    Resource Types Event EventList Policy PolicyList Event Appears in: EventList Event captures all the information that can be included in an API audit log. FieldDescription apiVersionstringaudit.k8s.io/v1 kindstringEvent level [Required] Level AuditLevel at which event was generated auditID [Required] k8s.io/apimachinery/pkg/types.UID Unique audit ID, generated for each request. stage [Required] Stage Stage of the request handling when this event instance was generated. requestURI [Required] string RequestURI is the request URI as sent by the client to a server.
    kubernetes.io/docs/reference/config-api/apiserver-audit.v1/
    Registered: Wed Jun 04 07:34:29 UTC 2025
    - 461.3K bytes
    - Viewed (0)
  6. Coarse Parallel Processing Using a Work Queue |...

    In this example, you will run a Kubernetes Job with multiple parallel worker processes. In this example, as each pod is created, it picks up one unit of work from a task queue, completes it, deletes it from the queue, and exits. Here is an overview of the steps in this example: Start a message queue service. In this example, you use RabbitMQ, but you could use another one. In practice you would set up a message queue service once and reuse it for many jobs.
    kubernetes.io/docs/tasks/job/coarse-parallel-processing-work-queue/
    Registered: Wed Jun 04 07:03:46 UTC 2025
    - 472.1K bytes
    - Viewed (0)
  7. Assign Pod-level CPU and memory resources | Kub...

    FEATURE STATE: Kubernetes v1.32 [alpha] (enabled by default: false) This page shows how to specify CPU and memory resources for a Pod at pod-level in addition to container-level resource specifications. A Kubernetes node allocates resources to a pod based on the pod's resource requests. These requests can be defined at the pod level or individually for containers within the pod. When both are present, the pod-level requests take precedence.
    kubernetes.io/docs/tasks/configure-pod-container/assign-pod-level-resources/
    Registered: Wed Jun 04 07:00:29 UTC 2025
    - 481.2K bytes
    - Viewed (0)
  8. Specifying a Disruption Budget for your Applica...

    FEATURE STATE: Kubernetes v1.21 [stable] This page shows how to limit the number of concurrent disruptions that your application experiences, allowing for higher availability while permitting the cluster administrator to manage the clusters nodes. Before you begin Your Kubernetes server must be at or later than version v1.21. To check the version, enter kubectl version. You are the owner of an application running on a Kubernetes cluster that requires high availability.
    kubernetes.io/docs/tasks/run-application/configure-pdb/
    Registered: Wed Jun 04 07:03:18 UTC 2025
    - 471.4K bytes
    - Viewed (0)
  9. Migrate Kubernetes Objects Using Storage Versio...

    FEATURE STATE: Kubernetes v1.30 [alpha] (enabled by default: false) Kubernetes relies on API data being actively re-written, to support some maintenance activities related to at rest storage. Two prominent examples are the versioned schema of stored resources (that is, the preferred storage schema changing from v1 to v2 for a given resource) and encryption at rest (that is, rewriting stale data based on a change in how the data should be encrypted).
    kubernetes.io/docs/tasks/manage-kubernetes-objects/storage-version-migration/
    Registered: Wed Jun 04 07:03:42 UTC 2025
    - 490.5K bytes
    - Viewed (0)
  10. Job with Pod-to-Pod Communication | Kubernetes

    In this example, you will run a Job in Indexed completion mode configured such that the pods created by the Job can communicate with each other using pod hostnames rather than pod IP addresses. Pods within a Job might need to communicate among themselves. The user workload running in each pod could query the Kubernetes API server to learn the IPs of the other Pods, but it's much simpler to rely on Kubernetes' built-in DNS resolution.
    kubernetes.io/docs/tasks/job/job-with-pod-to-pod-communication/
    Registered: Wed Jun 04 07:03:30 UTC 2025
    - 458.2K bytes
    - Viewed (0)
Back to top