Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: テスト test

Results 1 - 10 of 694 for content_length:[100000 TO 499999] (0.02 sec)

  1. kubectl config get-users | Kubernetes

    Synopsis Display users defined in the kubeconfig. kubectl config get-users [flags] Examples # List the users that kubectl knows about kubectl config get-users Options -h, --help help for get-users --as string Username to impersonate for the operation. User could be a regular user or a service account in a namespace. --as-group strings Group to impersonate for the operation, this flag can be repeated to specify multiple groups. --as-uid string UID to impersonate for the operation.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_config_get-users/
    Registered: Fri Jan 05 07:57:38 UTC 2024
    - 383.7K bytes
    - Viewed (0)
  2. kubectl create cronjob | Kubernetes

    Synopsis Create a cron job with the specified name. kubectl create cronjob NAME --image=image --schedule='0/5 * * * ?' -- [COMMAND] [args...] [flags] Examples # Create a cron job kubectl create cronjob my-job --image=busybox --schedule="*/1 * * * *" # Create a cron job with a command kubectl create cronjob my-job --image=busybox --schedule="*/1 * * * *" -- date 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_cronjob/
    Registered: Fri Jan 05 08:00:28 UTC 2024
    - 387.6K bytes
    - Viewed (0)
  3. 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_approve/
    Registered: Fri Jan 05 07:58:21 UTC 2024
    - 386.5K bytes
    - Viewed (0)
  4. kubectl auth can-i | Kubernetes

    Synopsis Check whether an action is allowed. VERB is a logical Kubernetes API verb like 'get', 'list', 'watch', 'delete', etc. TYPE is a Kubernetes resource. Shortcuts and groups will be resolved. NONRESOURCEURL is a partial URL that starts with "/". NAME is the name of a particular Kubernetes resource. This command pairs nicely with impersonation. See --as global flag. kubectl auth can-i VERB [TYPE | TYPE/NAME | NONRESOURCEURL] Examples # Check to see if I can create pods in any namespace kubectl auth can-i create pods --all-namespaces # Check to see if I can list deployments in my current namespace kubectl auth can-i list deployments.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_auth_can-i/
    Registered: Fri Jan 05 07:55:39 UTC 2024
    - 386.7K bytes
    - Viewed (0)
  5. kubectl auth reconcile | Kubernetes

    Synopsis Reconciles rules for RBAC role, role binding, cluster role, and cluster role binding objects. Missing objects are created, and the containing namespace is created for namespaced objects, if required. Existing roles are updated to include the permissions in the input objects, and remove extra permissions if --remove-extra-permissions is specified. Existing bindings are updated to include the subjects in the input objects, and remove extra subjects if --remove-extra-subjects is specified.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_auth_reconcile/
    Registered: Fri Jan 05 07:56:27 UTC 2024
    - 386.8K bytes
    - Viewed (0)
  6. kubectl create job | Kubernetes

    Synopsis Create a job with the specified name. kubectl create job NAME --image=image [--from=cronjob/name] -- [COMMAND] [args...] Examples # Create a job kubectl create job my-job --image=busybox # Create a job with a command kubectl create job my-job --image=busybox -- date # Create a job from a cron job named "a-cronjob" kubectl create job test-job --from=cronjob/a-cronjob 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_job/
    Registered: Fri Jan 05 08:01:53 UTC 2024
    - 387.3K bytes
    - Viewed (0)
  7. 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_serviceaccount/
    Registered: Fri Jan 05 08:31:48 UTC 2024
    - 387.6K bytes
    - Viewed (0)
  8. 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_poddisruptionbudget/
    Registered: Fri Jan 05 08:29:34 UTC 2024
    - 390.3K bytes
    - Viewed (0)
  9. kubectl rollout status | Kubernetes

    Synopsis Show the status of the rollout. By default 'rollout status' will watch the status of the latest rollout until it's done. If you don't want to wait for the rollout to finish then you can use --watch=false. Note that if a new rollout starts in-between, then 'rollout status' will continue watching the latest revision. If you want to pin to a specific revision and abort if it is rolled over by another revision, use --revision=N where N is the revision you need to watch for.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_rollout_status/
    Registered: Fri Jan 05 08:29:58 UTC 2024
    - 385.7K bytes
    - Viewed (0)
  10. 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_undo/
    Registered: Fri Jan 05 08:30:01 UTC 2024
    - 386.8K bytes
    - Viewed (0)
Back to top