Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: test テスト

Results 51 - 60 of 629 for content_length:[100000 TO 499999] (0.02 sec)

  1. Configure Pod Initialization | Kubernetes

    This page shows how to use an Init Container to initialize a Pod before an application Container runs. 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/configure-pod-initialization/
    Registered: Fri Apr 26 07:39:49 UTC 2024
    - 427K bytes
    - Viewed (0)
  2. Limit Storage Consumption | Kubernetes

    This example demonstrates how to limit the amount of storage consumed in a namespace. The following resources are used in the demonstration: ResourceQuota, LimitRange, and PersistentVolumeClaim. 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/administer-cluster/limit-storage-consumption/
    Registered: Fri Apr 26 07:39:54 UTC 2024
    - 421.8K bytes
    - Viewed (0)
  3. Troubleshooting Clusters | Kubernetes

    Debugging common cluster issues.
    kubernetes.io/docs/tasks/debug/debug-cluster/
    Registered: Fri Apr 26 07:40:23 UTC 2024
    - 443.1K bytes
    - Viewed (0)
  4. Debug Pods | Kubernetes

    This guide is to help users debug applications that are deployed into Kubernetes and not behaving correctly. This is not a guide for people who want to debug their cluster. For that you should check out this guide. Diagnosing the problem The first step in troubleshooting is triage. What is the problem? Is it your Pods, your Replication Controller or your Service? Debugging Pods Debugging Replication Controllers Debugging Services Debugging Pods The first step in debugging a Pod is taking a look at it.
    kubernetes.io/docs/tasks/debug/debug-application/debug-pods/
    Registered: Fri Apr 26 07:41:33 UTC 2024
    - 426K bytes
    - Viewed (0)
  5. Using CoreDNS for Service Discovery | Kubernetes

    This page describes the CoreDNS upgrade process and how to install CoreDNS instead of kube-dns. 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/administer-cluster/coredns/
    Registered: Fri Apr 26 07:41:12 UTC 2024
    - 418.7K bytes
    - Viewed (0)
  6. Using ABAC Authorization | Kubernetes

    Attribute-based access control (ABAC) defines an access control paradigm whereby access rights are granted to users through the use of policies which combine attributes together. Policy File Format To enable ABAC mode, specify --authorization-policy-file=SOME_FILENAME and --authorization-mode=ABAC on startup. The file format is one JSON object per line. There should be no enclosing list or map, only one map per line. Each line is a "policy object", where each such object is a map with the following properties:
    kubernetes.io/docs/reference/access-authn-authz/abac/
    Registered: Fri Apr 26 07:56:16 UTC 2024
    - 427.6K bytes
    - Viewed (0)
  7. kubectl create ingress | Kubernetes

    Synopsis Create an ingress with the specified name. kubectl create ingress NAME --rule=host/path=service:port[,tls[=secret]] Examples # Create a single ingress called 'simple' that directs requests to foo.com/bar to svc # svc1:8080 with a TLS secret "my-cert" kubectl create ingress simple --rule="foo.com/bar=svc1:8080,tls=my-cert" # Create a catch all ingress of "/path" pointing to service svc:port and Ingress Class as "otheringress" kubectl create ingress catch-all --class=otheringress --rule="/path=svc:port" # Create an ingress with two annotations: ingress.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_ingress/
    Registered: Fri Apr 26 08:06:01 UTC 2024
    - 428.9K bytes
    - Viewed (0)
  8. kubectl cordon | Kubernetes

    Synopsis Mark node as unschedulable. kubectl cordon NODE Examples # Mark node "foo" as unschedulable kubectl cordon foo Options --dry-run string[="unchanged"]     Default: "none" Must be "none", "server", or "client". If client strategy, only print the object that would be sent, without sending it. If server strategy, submit server-side request without persisting the resource. -h, --help help for cordon -l, --selector string Selector (label query) to filter on, supports '=', '==', and '!
    kubernetes.io/docs/reference/kubectl/generated/kubectl_cordon/
    Registered: Fri Apr 26 08:05:39 UTC 2024
    - 422K bytes
    - Viewed (0)
  9. Indexed Job for Parallel Processing with Static...

    FEATURE STATE: Kubernetes v1.24 [stable] In this example, you will run a Kubernetes Job that uses multiple parallel worker processes. Each worker is a different container running in its own Pod. The Pods have an index number that the control plane sets automatically, which allows each Pod to identify which part of the overall task to work on. The pod index is available in the annotation batch.kubernetes.io/job-completion-index as a string representing its decimal value.
    kubernetes.io/docs/tasks/job/indexed-parallel-processing-static/
    Registered: Fri Apr 26 07:46:28 UTC 2024
    - 438.3K bytes
    - Viewed (0)
  10. Scale a StatefulSet | Kubernetes

    This task shows how to scale a StatefulSet. Scaling a StatefulSet refers to increasing or decreasing the number of replicas. Before you begin StatefulSets are only available in Kubernetes version 1.5 or later. To check your version of Kubernetes, run kubectl version. Not all stateful applications scale nicely. If you are unsure about whether to scale your StatefulSets, see StatefulSet concepts or StatefulSet tutorial for further information. You should perform scaling only when you are confident that your stateful application cluster is completely healthy.
    kubernetes.io/docs/tasks/run-application/scale-stateful-set/
    Registered: Fri Apr 26 07:46:46 UTC 2024
    - 419.9K bytes
    - Viewed (0)
Back to top