Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: テスト test

Results 41 - 50 of 657 for host:kubernetes.io (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. Apply Pod Security Standards at the Cluster Lev...

    Note This tutorial applies only for new clusters. Pod Security is an admission controller that carries out checks against the Kubernetes Pod Security Standards when new pods are created. It is a feature GA'ed in v1.25. This tutorial shows you how to enforce the baseline Pod Security Standard at the cluster level which applies a standard configuration to all namespaces in a cluster. To apply Pod Security Standards to specific namespaces, refer to Apply Pod Security Standards at the namespace level.
    kubernetes.io/docs/tutorials/security/cluster-level-pss/
    Registered: Fri Apr 26 07:51:58 UTC 2024
    - 433.9K bytes
    - Viewed (0)
Back to top