Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: test テスト

Results 81 - 90 of 628 for content_length:[100000 TO 499999] (0.02 sec)

  1. kubectl set serviceaccount | Kubernetes

    Synopsis Update the service account of pod template resources. Possible resources (case insensitive) can be: replicationcontroller (rc), deployment (deploy), daemonset (ds), job, replicaset (rs), statefulset kubectl set serviceaccount (-f FILENAME | TYPE NAME) SERVICE_ACCOUNT Examples # Set deployment nginx-deployment's service account to serviceaccount1 kubectl set serviceaccount deployment nginx-deployment serviceaccount1 # Print the result (in YAML format) of updated nginx deployment with the service account from local file, without hitting the API server kubectl set sa -f nginx-deployment.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_set/kubectl_set_serviceaccount/
    Registered: Fri Jun 07 06:31:39 UTC 2024
    - 428.8K bytes
    - Viewed (0)
  2. Kubernetes Custom Metrics (v1beta2) | Kubernetes

    Package v1beta2 is the v1beta2 version of the custom_metrics API. Resource Types MetricListOptions MetricValue MetricValueList MetricListOptions MetricListOptions is used to select metrics by their label selectors FieldDescription apiVersionstringcustom.metrics.k8s.io/v1beta2 kindstringMetricListOptions labelSelector string A selector to restrict the list of returned objects by their labels. Defaults to everything. metricLabelSelector string A selector to restrict the list of returned metrics by their labels MetricValue Appears in: MetricValueList MetricValue is the metric value for some object
    kubernetes.io/docs/reference/external-api/custom-metrics.v1beta2/
    Registered: Fri Jun 07 06:31:14 UTC 2024
    - 421.2K bytes
    - Viewed (0)
  3. Use a Service to Access an Application in a Clu...

    This page shows how to create a Kubernetes Service object that external clients can use to access an application running in a cluster. The Service provides load balancing for an application that has two running instances. 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/access-application-cluster/service-access-application-cluster/
    Registered: Fri Jun 07 06:05:02 UTC 2024
    - 430.2K bytes
    - Viewed (0)
  4. Managing Secrets using Kustomize | Kubernetes

    Creating Secret objects using kustomization.yaml file.
    kubernetes.io/docs/tasks/configmap-secret/managing-secret-using-kustomize/
    Registered: Fri Jun 07 06:05:15 UTC 2024
    - 424.4K 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 Jun 07 06:07:01 UTC 2024
    - 465.7K bytes
    - Viewed (0)
  6. Running Pods on Only Some Nodes | Kubernetes

    This page demonstrates how can you run Pods on only some Nodes as part of a DaemonSet 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/manage-daemon/pods-some-nodes/
    Registered: Fri Jun 07 06:07:31 UTC 2024
    - 425.4K bytes
    - Viewed (0)
  7. kubectl create quota | Kubernetes

    Synopsis Create a resource quota with the specified name, hard limits, and optional scopes. kubectl create quota NAME [--hard=key1=value1,key2=value2] [--scopes=Scope1,Scope2] [--dry-run=server|client|none] Examples # Create a new resource quota named my-quota kubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2,services=3,replicationcontrollers=2,resourcequotas=1,secrets=5,persistentvolumeclaims=10 # Create a new resource quota named best-effort kubectl create quota best-effort --hard=pods=100 --scopes=BestEffort 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_quota/
    Registered: Fri Jun 07 06:27:46 UTC 2024
    - 429.6K bytes
    - Viewed (0)
  8. kubectl create secret generic | Kubernetes

    Synopsis Create a secret based on a file, directory, or specified literal value. A single secret may package one or more key/value pairs. When creating a secret based on a file, the key will default to the basename of the file, and the value will default to the file content. If the basename is an invalid key or you wish to chose your own, you may specify an alternate key.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_secret_generic/
    Registered: Fri Jun 07 06:27:16 UTC 2024
    - 429.8K bytes
    - Viewed (0)
  9. kubectl rollout resume | Kubernetes

    Synopsis Resume a paused resource. Paused resources will not be reconciled by a controller. By resuming a resource, we allow it to be reconciled again. Currently only deployments support being resumed. kubectl rollout resume RESOURCE Examples # Resume an already paused deployment kubectl rollout resume deployment/nginx 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. Only applies to golang and jsonpath output formats.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_rollout/kubectl_rollout_resume/
    Registered: Fri Jun 07 06:27:36 UTC 2024
    - 427.7K bytes
    - Viewed (0)
  10. kubectl create service nodeport | Kubernetes

    Synopsis Create a NodePort service with the specified name. kubectl create service nodeport NAME [--tcp=port:targetPort] [--dry-run=server|client|none] Examples # Create a new NodePort service named my-ns kubectl create service nodeport my-ns --tcp=5678:8080 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. Only applies to golang and jsonpath output formats. --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.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_service_nodeport/
    Registered: Fri Jun 07 06:24:59 UTC 2024
    - 429.7K bytes
    - Viewed (0)
Back to top