Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 451 - 460 of 704 for host:kubernetes.io (0.03 sec)

  1. Volumes | Kubernetes

    Kubernetes volumes provide a way for containers in a pod to access and share data via the filesystem. There are different kinds of volume that you can use for different purposes, such as: populating a configuration file based on a ConfigMap or a Secret providing some temporary scratch space for a pod sharing a filesystem between two different containers in the same pod sharing a filesystem between two different pods (even if those Pods run on different nodes) durably storing data so that it stays available even if the Pod restarts or is replaced passing configuration information to an app running in a container, based on details of the Pod the container is in (for example: telling a sidecar container what namespace the Pod is running in) providing read-only access to data in a different container image Data sharing can be between different local processes within a container, or between different containers, or between Pods.
    kubernetes.io/docs/concepts/storage/volumes/
    Registered: Mon Nov 17 09:06:19 UTC 2025
    - 580.9K bytes
    - Viewed (0)
  2. Security Checklist | Kubernetes

    Baseline checklist for ensuring security in Kubernetes clusters.
    kubernetes.io/docs/concepts/security/security-checklist/
    Registered: Mon Nov 17 09:08:55 UTC 2025
    - 481.4K bytes
    - Viewed (0)
  3. Node Shutdowns | Kubernetes

    In a Kubernetes cluster, a node can be shut down in a planned graceful way or unexpectedly because of reasons such as a power outage or something else external. A node shutdown could lead to workload failure if the node is not drained before the shutdown. A node shutdown can be either graceful or non-graceful. Graceful node shutdown The kubelet attempts to detect node system shutdown and terminates pods running on the node.
    kubernetes.io/docs/concepts/cluster-administration/node-shutdown/
    Registered: Mon Nov 17 09:09:03 UTC 2025
    - 477.6K bytes
    - Viewed (0)
  4. Node Autoscaling | Kubernetes

    Automatically provision and consolidate the Nodes in your cluster to adapt to demand and optimize cost.
    kubernetes.io/docs/concepts/cluster-administration/node-autoscaling/
    Registered: Mon Nov 17 09:08:02 UTC 2025
    - 474.1K bytes
    - Viewed (0)
  5. Kubernetes API Server Bypass Risks | Kubernetes

    Security architecture information relating to the API server and other components
    kubernetes.io/docs/concepts/security/api-server-bypass-risks/
    Registered: Mon Nov 17 09:09:47 UTC 2025
    - 465.5K bytes
    - Viewed (0)
  6. Admission Control in Kubernetes | Kubernetes

    This page provides an overview of admission controllers. An admission controller is a piece of code that intercepts requests to the Kubernetes API server prior to persistence of the resource, but after the request is authenticated and authorized. Several important features of Kubernetes require an admission controller to be enabled in order to properly support the feature. As a result, a Kubernetes API server that is not properly configured with the right set of admission controllers is an incomplete server that will not support all the features you expect.
    kubernetes.io/docs/reference/access-authn-authz/admission-controllers/
    Registered: Mon Nov 17 09:57:52 UTC 2025
    - 524.2K bytes
    - Viewed (0)
  7. Common Expression Language in Kubernetes | Kube...

    The Common Expression Language (CEL) is used in the Kubernetes API to declare validation rules, policy rules, and other constraints or conditions. CEL expressions are evaluated directly in the API server, making CEL a convenient alternative to out-of-process mechanisms, such as webhooks, for many extensibility use cases. Your CEL expressions continue to execute so long as the control plane's API server component remains available. Language overview The CEL language has a straightforward syntax that is similar to the expressions in C, C++, Java, JavaScript and Go.
    kubernetes.io/docs/reference/using-api/cel/
    Registered: Mon Nov 17 09:57:40 UTC 2025
    - 502.4K bytes
    - Viewed (0)
  8. Webhook Mode | Kubernetes

    A WebHook is an HTTP callback: an HTTP POST that occurs when something happens; a simple event-notification via HTTP POST. A web application implementing WebHooks will POST a message to a URL when certain things happen. When specified, mode Webhook causes Kubernetes to query an outside REST service when determining user privileges. Configuration File Format Mode Webhook requires a file for HTTP configuration, specify by the --authorization-webhook-config-file=SOME_FILENAME flag. The configuration file uses the kubeconfig file format.
    kubernetes.io/docs/reference/access-authn-authz/webhook/
    Registered: Mon Nov 17 09:57:45 UTC 2025
    - 477.9K bytes
    - Viewed (0)
  9. kubectl config set-credentials | Kubernetes

    Synopsis Set a user entry in kubeconfig. Specifying a name that already exists will merge new fields on top of existing values. Client-certificate flags: --client-certificate=certfile --client-key=keyfile Bearer token flags: --token=bearer_token Basic auth flags: --username=basic_user --password=basic_password Bearer token and basic auth are mutually exclusive. kubectl config set-credentials NAME [--client-certificate=path/to/certfile] [--client-key=path/to/keyfile] [--token=bearer_token] [--username=basic_user] [--password=basic_password] [--auth-provider=provider_name] [--auth-provider-arg=key=value] [--exec-command=exec_command] [--exec-api-version=exec_api_version] [--exec-arg=arg] [--exec-env=key=value] Examples # Set only the "client-key" field on the "cluster-admin" # entry, without touching other values kubectl config set-credentials cluster-admin --client-key=~/.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_config/kubectl_config_set-credentials/
    Registered: Mon Nov 17 10:11:52 UTC 2025
    - 471K bytes
    - Viewed (0)
  10. kubectl | Kubernetes

    Synopsis kubectl controls the Kubernetes cluster manager. Find more information in Command line tool (kubectl). kubectl [flags] Options --add-dir-header If true, adds the file directory to the header of the log messages --alsologtostderr log to standard error as well as files --as string Username to impersonate for the operation --as-group stringArray Group to impersonate for the operation, this flag can be repeated to specify multiple groups. --azure-container-registry-config string Path to the file containing Azure container registry configuration information.
    kubernetes.io/docs/reference/kubectl/kubectl/
    Registered: Mon Nov 17 10:25:34 UTC 2025
    - 474.9K bytes
    - Viewed (0)
Back to top