Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: テスト test

Results 21 - 30 of 658 for host:kubernetes.io (0.02 sec)

  1. 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 Apr 26 08:09:16 UTC 2024
    - 426.7K bytes
    - Viewed (0)
  2. kubectl create role | Kubernetes

    Synopsis Create a role with single rule. kubectl create role NAME --verb=verb --resource=resource.group/subresource [--resource-name=resourcename] [--dry-run=server|client|none] Examples # Create a role named "pod-reader" that allows user to perform "get", "watch" and "list" on pods kubectl create role pod-reader --verb=get --verb=list --verb=watch --resource=pods # Create a role named "pod-reader" with ResourceName specified kubectl create role pod-reader --verb=get --resource=pods --resource-name=readablepod --resource-name=anotherpod # Create a role named "foo" with API Group specified kubectl create role foo --verb=get,list,watch --resource=rs.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_role/
    Registered: Fri Apr 26 08:06:46 UTC 2024
    - 428.2K 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 Apr 26 08:08:35 UTC 2024
    - 425.4K bytes
    - Viewed (0)
  4. Persistent Volumes | Kubernetes

    This document describes persistent volumes in Kubernetes. Familiarity with volumes, StorageClasses and VolumeAttributesClasses is suggested. Introduction Managing storage is a distinct problem from managing compute instances. The PersistentVolume subsystem provides an API for users and administrators that abstracts details of how storage is provided from how it is consumed. To do this, we introduce two new API resources: PersistentVolume and PersistentVolumeClaim. A PersistentVolume (PV) is a piece of storage in the cluster that has been provisioned by an administrator or dynamically provisioned using Storage Classes.
    kubernetes.io/docs/concepts/storage/persistent-volumes/
    Registered: Fri Apr 26 07:26:33 UTC 2024
    - 523.5K bytes
    - Viewed (0)
  5. Encrypting Confidential Data at Rest | Kubernetes

    All of the APIs in Kubernetes that let you write persistent API resource data support at-rest encryption. For example, you can enable at-rest encryption for Secrets. This at-rest encryption is additional to any system-level encryption for the etcd cluster or for the filesystem(s) on hosts where you are running the kube-apiserver. This page shows how to enable and configure encryption of API data at rest. Note: This task covers encryption for resource data stored using the Kubernetes API.
    kubernetes.io/docs/tasks/administer-cluster/encrypt-data/
    Registered: Fri Apr 26 07:35:51 UTC 2024
    - 479.4K bytes
    - Viewed (0)
  6. Changing the Container Runtime on a Node from D...

    This task outlines the steps needed to update your container runtime to containerd from Docker. It is applicable for cluster operators running Kubernetes 1.23 or earlier. This also covers an example scenario for migrating from dockershim to containerd. Alternative container runtimes can be picked from this page. Before you begin Note: This section links to third party projects that provide functionality required by Kubernetes. The Kubernetes project authors aren't responsible for these projects, which are listed alphabetically.
    kubernetes.io/docs/tasks/administer-cluster/migrating-from-dockershim/change-runtime-containerd/
    Registered: Fri Apr 26 07:36:23 UTC 2024
    - 429.5K bytes
    - Viewed (0)
  7. Verify Signed Kubernetes Artifacts | Kubernetes

    FEATURE STATE: Kubernetes v1.26 [beta] Before you begin You will need to have the following tools installed: cosign (install guide) curl (often provided by your operating system) jq (download jq) Verifying binary signatures The Kubernetes release process signs all binary artifacts (tarballs, SPDX files, standalone binaries) by using cosign's keyless signing. To verify a particular binary, retrieve it together with its signature and certificate: URL=https://dl.k8s.io/release/v1.30.0/bin/linux/amd64 BINARY=kubectl FILES=( "$BINARY" "$BINARY.sig" "$BINARY.
    kubernetes.io/docs/tasks/administer-cluster/verify-signed-artifacts/
    Registered: Fri Apr 26 07:37:20 UTC 2024
    - 429.7K bytes
    - Viewed (0)
  8. Configure RunAsUserName for Windows pods and co...

    FEATURE STATE: Kubernetes v1.18 [stable] This page shows how to use the runAsUserName setting for Pods and containers that will run on Windows nodes. This is roughly equivalent of the Linux-specific runAsUser setting, allowing you to run applications in a container as a different username than the default. Before you begin 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/configure-pod-container/configure-runasusername/
    Registered: Fri Apr 26 07:37:30 UTC 2024
    - 430.7K bytes
    - Viewed (0)
  9. Configure a Pod to Use a Volume for Storage | K...

    This page shows how to configure a Pod to use a Volume for storage. A Container's file system lives only as long as the Container does. So when a Container terminates and restarts, filesystem changes are lost. For more consistent storage that is independent of the Container, you can use a Volume. This is especially important for stateful applications, such as key-value stores (such as Redis) and databases. Before you begin 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/configure-pod-container/configure-volume-storage/
    Registered: Fri Apr 26 07:37:35 UTC 2024
    - 427.9K bytes
    - Viewed (0)
  10. Using a Service to Expose Your App | Kubernetes

    Learn about a Service in Kubernetes. Understand how labels and selectors relate to a Service. Expose an application outside a Kubernetes cluster.
    kubernetes.io/docs/tutorials/kubernetes-basics/expose/expose-intro/
    Registered: Fri Apr 26 07:52:40 UTC 2024
    - 425.3K bytes
    - Viewed (0)
Back to top