Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: テスト test

Results 91 - 100 of 660 for host:kubernetes.io (0.03 sec)

  1. Access Applications in a Cluster | Kubernetes

    Configure load balancing, port forwarding, or setup firewall or DNS configurations to access applications in a cluster.
    kubernetes.io/docs/tasks/access-application-cluster/
    Registered: Fri May 17 07:53:31 UTC 2024
    - 416.9K bytes
    - Viewed (0)
  2. 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 May 17 08:12:27 UTC 2024
    - 423.9K bytes
    - Viewed (0)
  3. 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 May 17 08:12:49 UTC 2024
    - 430.9K bytes
    - Viewed (0)
  4. kubectl create namespace | Kubernetes

    Synopsis Create a namespace with the specified name. kubectl create namespace NAME [--dry-run=server|client|none] Examples # Create a new namespace named my-namespace kubectl create namespace my-namespace 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_namespace/
    Registered: Fri May 17 08:11:46 UTC 2024
    - 428.8K bytes
    - Viewed (0)
  5. kube-apiserver Configuration (v1beta1) | Kubern...

    Package v1beta1 is the v1beta1 version of the API. Resource Types AuthenticationConfiguration AuthorizationConfiguration EgressSelectorConfiguration TracingConfiguration TracingConfiguration Appears in: KubeletConfiguration TracingConfiguration TracingConfiguration TracingConfiguration provides versioned configuration for OpenTelemetry tracing clients. FieldDescription endpoint string Endpoint of the collector this component will report traces to. The connection is insecure, and does not currently support TLS. Recommended is unset, and endpoint is the otlp grpc default, localhost:4317. samplingRatePerMillion int32 SamplingRatePerMillion is the number of samples to collect per million spans.
    kubernetes.io/docs/reference/config-api/apiserver-config.v1beta1/
    Registered: Fri May 17 08:27:58 UTC 2024
    - 453.5K bytes
    - Viewed (0)
  6. Flow control | Kubernetes

    API Priority and Fairness controls the behavior of the Kubernetes API server in an overload situation. You can find more information about it in the API Priority and Fairness documentation. Diagnostics Every HTTP response from an API server with the priority and fairness feature enabled has two extra headers: X-Kubernetes-PF-FlowSchema-UID and X-Kubernetes-PF-PriorityLevel-UID, noting the flow schema that matched the request and the priority level to which it was assigned, respectively.
    kubernetes.io/docs/reference/debug-cluster/flow-control/
    Registered: Fri May 17 08:28:48 UTC 2024
    - 428K bytes
    - Viewed (0)
  7. Declarative Management of Kubernetes Objects Us...

    Kustomize is a standalone tool to customize Kubernetes objects through a kustomization file. Since 1.14, Kubectl also supports the management of Kubernetes objects using a kustomization file. To view Resources found in a directory containing a kustomization file, run the following command: kubectl kustomize <kustomization_directory> To apply those Resources, run kubectl apply with --kustomize or -k flag: kubectl apply -k <kustomization_directory> Before you begin Install kubectl. You need to have a Kubernetes cluster, and the kubectl command-line tool must be configured to communicate with your cluster.
    kubernetes.io/docs/tasks/manage-kubernetes-objects/kustomization/
    Registered: Fri May 17 07:47:58 UTC 2024
    - 519.1K bytes
    - Viewed (0)
  8. 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 May 17 07:49:38 UTC 2024
    - 427.8K bytes
    - Viewed (0)
  9. Define Environment Variables for a Container | ...

    This page shows how to define environment variables for a container in a Kubernetes Pod. 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/inject-data-application/define-environment-variable-container/
    Registered: Fri May 17 07:50:55 UTC 2024
    - 431.8K bytes
    - Viewed (0)
  10. 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 May 17 08:04:52 UTC 2024
    - 429.5K bytes
    - Viewed (0)
Back to top