Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: テスト test

Results 31 - 40 of 630 for content_length:[100000 TO 499999] (0.02 sec)

  1. kubectl certificate approve | Kubernetes

    Synopsis Approve a certificate signing request. kubectl certificate approve allows a cluster admin to approve a certificate signing request (CSR). This action tells a certificate signing controller to issue a certificate to the requester with the attributes requested in the CSR. SECURITY NOTICE: Depending on the requested attributes, the issued certificate can potentially grant a requester access to cluster resources or to authenticate as a requested identity. Before approving a CSR, ensure you understand what the signed certificate can do.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_certificate/kubectl_certificate_approve/
    Registered: Fri May 24 07:57:27 UTC 2024
    - 427.9K bytes
    - Viewed (0)
  2. kubectl config set-cluster | Kubernetes

    Synopsis Set a cluster entry in kubeconfig. Specifying a name that already exists will merge new fields on top of existing values for those fields. kubectl config set-cluster NAME [--server=server] [--certificate-authority=path/to/certificate/authority] [--insecure-skip-tls-verify=true] [--tls-server-name=example.com] Examples # Set only the server field on the e2e cluster entry without touching other values kubectl config set-cluster e2e --server=https://1.2.3.4 # Embed certificate authority data for the e2e cluster entry kubectl config set-cluster e2e --embed-certs --certificate-authority=~/.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_config/kubectl_config_set-cluster/
    Registered: Fri May 24 07:56:50 UTC 2024
    - 426.7K bytes
    - Viewed (0)
  3. kubectl events | Kubernetes

    Synopsis Display events. Prints a table of the most important information about events. You can request events for a namespace, for all namespace, or filtered to only those pertaining to a specified resource. kubectl events [(-o|--output=)json|yaml|name|go-template|go-template-file|template|templatefile|jsonpath|jsonpath-as-json|jsonpath-file] [--for TYPE/NAME] [--watch] [--types=Normal,Warning] Examples # List recent events in the default namespace kubectl events # List recent events in all namespaces kubectl events --all-namespaces # List recent events for the specified pod, then wait for more events and list them as they arrive kubectl events --for pod/web-pod-13je7 --watch # List recent events in YAML format kubectl events -oyaml # List recent only events of type 'Warning' or 'Normal' kubectl events --types=Warning,Normal Options -A, --all-namespaces If present, list the requested object(s) across all namespaces.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_events/
    Registered: Fri May 24 08:00:27 UTC 2024
    - 427.3K bytes
    - Viewed (0)
  4. kubectl rollout history | Kubernetes

    Synopsis View previous rollout revisions and configurations. kubectl rollout history (TYPE NAME | TYPE/NAME) [flags] Examples # View the rollout history of a deployment kubectl rollout history deployment/abc # View the details of daemonset revision 3 kubectl rollout history daemonset/abc --revision=3 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_history/
    Registered: Fri May 24 08:00:34 UTC 2024
    - 427.5K bytes
    - Viewed (0)
  5. kubectl create clusterrolebinding | Kubernetes

    Synopsis Create a cluster role binding for a particular cluster role. kubectl create clusterrolebinding NAME --clusterrole=NAME [--user=username] [--group=groupname] [--serviceaccount=namespace:serviceaccountname] [--dry-run=server|client|none] Examples # Create a cluster role binding for user1, user2, and group1 using the cluster-admin cluster role kubectl create clusterrolebinding cluster-admin --clusterrole=cluster-admin --user=user1 --user=user2 --group=group1 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_create/kubectl_create_clusterrolebinding/
    Registered: Fri May 24 07:58:48 UTC 2024
    - 430.1K bytes
    - Viewed (0)
  6. kubectl proxy | Kubernetes

    Synopsis Creates a proxy server or application-level gateway between localhost and the Kubernetes API server. It also allows serving static content over specified HTTP path. All incoming data enters through one port and gets forwarded to the remote Kubernetes API server port, except for the path matching the static content path. kubectl proxy [--port=PORT] [--www=static-dir] [--www-prefix=prefix] [--api-prefix=prefix] Examples # To proxy all of the Kubernetes API and nothing else kubectl proxy --api-prefix=/ # To proxy only part of the Kubernetes API and also some static files # You can get pods info with 'curl localhost:8001/api/v1/pods' kubectl proxy --www=/my/files --www-prefix=/static/ --api-prefix=/api/ # To proxy the entire Kubernetes API at a different root # You can get pods info with 'curl localhost:8001/custom/api/v1/pods' kubectl proxy --api-prefix=/custom/ # Run a proxy to the Kubernetes API server on port 8011, serving static content from .
    kubernetes.io/docs/reference/kubectl/generated/kubectl_proxy/
    Registered: Fri May 24 07:59:30 UTC 2024
    - 428.7K bytes
    - Viewed (0)
  7. kubectl plugin list | Kubernetes

    Synopsis List all available plugin files on a user's PATH. Available plugin files are those that are: - executable - anywhere on the user's PATH - begin with "kubectl-" kubectl plugin list [flags] Examples # List all available plugins kubectl plugin list Options -h, --help help for list --name-only If true, display only the binary name of each plugin, rather than its full path --as string Username to impersonate for the operation.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_plugin/kubectl_plugin_list/
    Registered: Fri May 24 08:03:34 UTC 2024
    - 424.9K bytes
    - Viewed (0)
  8. kubectl wait | Kubernetes

    Synopsis Experimental: Wait for a specific condition on one or many resources. The command takes multiple resources and waits until the specified condition is seen in the Status field of every given resource. Alternatively, the command can wait for the given set of resources to be deleted by providing the "delete" keyword as the value to the --for flag. A successful message will be printed to stdout indicating when the specified condition has been met.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_wait/
    Registered: Fri May 24 08:03:40 UTC 2024
    - 427.9K bytes
    - Viewed (0)
  9. kubectl run | Kubernetes

    Synopsis Create and run a particular image in a pod. kubectl run NAME --image=image [--env="key=value"] [--port=port] [--dry-run=server|client] [--overrides=inline-json] [--command] -- [COMMAND] [args...] Examples # Start a nginx pod kubectl run nginx --image=nginx # Start a hazelcast pod and let the container expose port 5701 kubectl run hazelcast --image=hazelcast/hazelcast --port=5701 # Start a hazelcast pod and set environment variables "DNS_DOMAIN=cluster" and "POD_NAMESPACE=default" in the container kubectl run hazelcast --image=hazelcast/hazelcast --env="DNS_DOMAIN=cluster" --env="POD_NAMESPACE=default" # Start a hazelcast pod and set labels "app=hazelcast" and "env=prod" in the container kubectl run hazelcast --image=hazelcast/hazelcast --labels="app=hazelcast,env=prod" # Dry run; print the corresponding API objects without creating them kubectl run nginx --image=nginx --dry-run=client # Start a nginx pod, but overload the spec with a partial set of values parsed from JSON kubectl run nginx --image=nginx --overrides='{ "apiVersion": "v1", "spec": { .
    kubernetes.io/docs/reference/kubectl/generated/kubectl_run/
    Registered: Fri May 24 08:04:37 UTC 2024
    - 432.5K bytes
    - Viewed (0)
  10. kubectl rollout pause | Kubernetes

    Synopsis Mark the provided resource as paused. Paused resources will not be reconciled by a controller. Use "kubectl rollout resume" to resume a paused resource. Currently only deployments support being paused. kubectl rollout pause RESOURCE Examples # Mark the nginx deployment as paused # Any current state of the deployment will continue its function; new updates # to the deployment will not have an effect as long as the deployment is paused kubectl rollout pause 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.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_rollout/kubectl_rollout_pause/
    Registered: Fri May 24 08:02:50 UTC 2024
    - 428.5K bytes
    - Viewed (0)
Back to top