Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: テスト test %27 [xss]

Results 591 - 600 of 686 for host:kubernetes.io (0.07 sec)

  1. Kubernetes API Concepts | Kubernetes

    The Kubernetes API is a resource-based (RESTful) programmatic interface provided via HTTP. It supports retrieving, creating, updating, and deleting primary resources via the standard HTTP verbs (POST, PUT, PATCH, DELETE, GET). For some resources, the API includes additional subresources that allow fine-grained authorization (such as separate views for Pod details and log retrievals), and can accept and serve those resources in different representations for convenience or efficiency. Kubernetes supports efficient change notifications on resources via watches: in the Kubernetes API, watch is a verb that is used to track changes to an object in Kubernetes as a stream.
    kubernetes.io/docs/reference/using-api/api-concepts/
    Registered: Wed Jun 04 07:14:18 UTC 2025
    - 545.7K bytes
    - Viewed (0)
  2. Using Node Authorization | Kubernetes

    Node authorization is a special-purpose authorization mode that specifically authorizes API requests made by kubelets. Overview The Node authorizer allows a kubelet to perform API operations. This includes: Read operations: services endpoints nodes pods secrets, configmaps, persistent volume claims and persistent volumes related to pods bound to the kubelet's node FEATURE STATE: Kubernetes v1.32 [beta] (enabled by default: true) When the AuthorizeNodeWithSelectors feature is enabled (along with the pre-requisite AuthorizeWithSelectors feature), kubelets are only allowed to read their own Node objects, and are only allowed to read pods bound to their node.
    kubernetes.io/docs/reference/access-authn-authz/node/
    Registered: Wed Jun 04 07:14:27 UTC 2025
    - 452.8K bytes
    - Viewed (0)
  3. kubectl auth whoami | Kubernetes

    Synopsis Experimental: Check who you are and your attributes (groups, extra). This command is helpful to get yourself aware of the current user attributes, especially when dynamic authentication, e.g., token webhook, auth proxy, or OIDC provider, is enabled in the Kubernetes cluster. kubectl auth whoami Examples # Get your subject attributes kubectl auth whoami # Get your subject attributes in JSON format kubectl auth whoami -o json 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_auth/kubectl_auth_whoami/
    Registered: Wed Jun 04 07:18:28 UTC 2025
    - 455K bytes
    - Viewed (0)
  4. Kubeadm | Kubernetes

    Production-Grade Container Orchestration
    kubernetes.io/docs/reference/setup-tools/kubeadm/
    Registered: Wed Jun 04 07:22:52 UTC 2025
    - 448.7K bytes
    - Viewed (0)
  5. 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: Wed Jun 04 07:25:53 UTC 2025
    - 455.9K bytes
    - Viewed (0)
  6. kubectl rollout | Kubernetes

    Production-Grade Container Orchestration
    kubernetes.io/docs/reference/kubectl/generated/kubectl_rollout/
    Registered: Wed Jun 04 07:25:47 UTC 2025
    - 453.7K bytes
    - Viewed (0)
  7. 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: Wed Jun 04 07:26:19 UTC 2025
    - 458.4K bytes
    - Viewed (0)
  8. kubectl drain | Kubernetes

    Production-Grade Container Orchestration
    kubernetes.io/docs/reference/kubectl/generated/kubectl_drain/
    Registered: Wed Jun 04 07:26:31 UTC 2025
    - 457.6K bytes
    - Viewed (0)
  9. 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: Wed Jun 04 07:26:42 UTC 2025
    - 457.4K bytes
    - Viewed (0)
  10. 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/kubectl_create_job/
    Registered: Wed Jun 04 07:26:37 UTC 2025
    - 456.7K bytes
    - Viewed (0)
Back to top