Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: test テスト

Results 51 - 60 of 657 for timestamp:[now/d-7d TO *] (0.02 sec)

  1. CSI Volume Cloning | Kubernetes

    This document describes the concept of cloning existing CSI Volumes in Kubernetes. Familiarity with Volumes is suggested. Introduction The CSI Volume Cloning feature adds support for specifying existing PVCs in the dataSource field to indicate a user would like to clone a Volume. A Clone is defined as a duplicate of an existing Kubernetes Volume that can be consumed as any standard Volume would be. The only difference is that upon provisioning, rather than creating a "new" empty Volume, the back end device creates an exact duplicate of the specified Volume.
    kubernetes.io/docs/concepts/storage/volume-pvc-datasource/
    Registered: Fri May 10 07:27:20 UTC 2024
    - 422.6K bytes
    - Viewed (0)
  2. Scheduler Performance Tuning | Kubernetes

    FEATURE STATE: Kubernetes v1.14 [beta] kube-scheduler is the Kubernetes default scheduler. It is responsible for placement of Pods on Nodes in a cluster. Nodes in a cluster that meet the scheduling requirements of a Pod are called feasible Nodes for the Pod. The scheduler finds feasible Nodes for a Pod and then runs a set of functions to score the feasible Nodes, picking a Node with the highest score among the feasible ones to run the Pod.
    kubernetes.io/docs/concepts/scheduling-eviction/scheduler-perf-tuning/
    Registered: Fri May 10 07:27:24 UTC 2024
    - 424.5K bytes
    - Viewed (0)
  3. Dynamic Resource Allocation | Kubernetes

    FEATURE STATE: Kubernetes v1.26 [alpha] Dynamic resource allocation is an API for requesting and sharing resources between pods and containers inside a pod. It is a generalization of the persistent volumes API for generic resources. Third-party resource drivers are responsible for tracking and allocating resources, with additional support provided by Kubernetes via structured parameters (introduced in Kubernetes 1.30). When a driver uses structured parameters, Kubernetes handles scheduling and resource allocation without having to communicate with the driver.
    kubernetes.io/docs/concepts/scheduling-eviction/dynamic-resource-allocation/
    Registered: Fri May 10 07:27:45 UTC 2024
    - 440.1K bytes
    - Viewed (0)
  4. Cloud Native Security and Kubernetes | Kubernetes

    Concepts for keeping your cloud-native workload secure.
    kubernetes.io/docs/concepts/security/cloud-native-security/
    Registered: Fri May 10 07:26:53 UTC 2024
    - 426.5K bytes
    - Viewed (0)
  5. Configure a Pod to Use a ConfigMap | Kubernetes

    Many applications rely on configuration which is used during either application initialization or runtime. Most times, there is a requirement to adjust values assigned to configuration parameters. ConfigMaps are a Kubernetes mechanism that let you inject configuration data into application pods. The ConfigMap concept allow you to decouple configuration artifacts from image content to keep containerized applications portable. For example, you can download and run the same container image to spin up containers for the purposes of local development, system test, or running a live end-user workload.
    kubernetes.io/docs/tasks/configure-pod-container/configure-pod-configmap/
    Registered: Fri May 10 07:46:22 UTC 2024
    - 523K bytes
    - Viewed (0)
  6. Declarative Management of Kubernetes Objects Us...

    Kustomize is a standalone tool to customize Kubernetes objects through a kustomization file. Since 1.14, Kubectl also supports the management of Kubernetes objects using a kustomization file. To view Resources found in a directory containing a kustomization file, run the following command: kubectl kustomize <kustomization_directory> To apply those Resources, run kubectl apply with --kustomize or -k flag: kubectl apply -k <kustomization_directory> Before you begin Install kubectl. 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/manage-kubernetes-objects/kustomization/
    Registered: Fri May 10 07:47:03 UTC 2024
    - 518.2K bytes
    - Viewed (0)
  7. kubectl debug | Kubernetes

    Synopsis Debug cluster resources using interactive debugging containers. 'debug' provides automation for common debugging tasks for cluster objects identified by resource and name. Pods will be used by default if no resource is specified. The action taken by 'debug' varies depending on what resource is specified. Supported actions include: Workload: Create a copy of an existing pod with certain attributes changed, for example changing the image tag to a new version.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_debug/
    Registered: Fri May 10 08:13:36 UTC 2024
    - 427.2K bytes
    - Viewed (0)
  8. kubectl logs | Kubernetes

    Synopsis Print the logs for a container in a pod or specified resource. If the pod has only one container, the container name is optional. kubectl logs [-f] [-p] (POD | TYPE/NAME) [-c CONTAINER] Examples # Return snapshot logs from pod nginx with only one container kubectl logs nginx # Return snapshot logs from pod nginx with multi containers kubectl logs nginx --all-containers=true # Return snapshot logs from all containers in pods defined by label app=nginx kubectl logs -l app=nginx --all-containers=true # Return snapshot of previous terminated ruby container logs from pod web-1 kubectl logs -p -c ruby web-1 # Begin streaming the logs of the ruby container in pod web-1 kubectl logs -f -c ruby web-1 # Begin streaming the logs from all containers in pods defined by label app=nginx kubectl logs -f -l app=nginx --all-containers=true # Display only the most recent 20 lines of output in pod nginx kubectl logs --tail=20 nginx # Show all logs from pod nginx written in the last hour kubectl logs --since=1h nginx # Show logs from a kubelet with an expired serving certificate kubectl logs --insecure-skip-tls-verify-backend nginx # Return snapshot logs from first container of a job named hello kubectl logs job/hello # Return snapshot logs from container nginx-1 of a deployment named nginx kubectl logs deployment/nginx -c nginx-1 Options --all-containers Get all containers' logs in the pod(s).
    kubernetes.io/docs/reference/kubectl/generated/kubectl_logs/
    Registered: Fri May 10 08:12:24 UTC 2024
    - 429.3K bytes
    - Viewed (0)
  9. kubectl create namespace | Kubernetes

    Synopsis Create a namespace with the specified name. kubectl create namespace NAME [--dry-run=server|client|none] Examples # Create a new namespace named my-namespace kubectl create namespace my-namespace 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_namespace/
    Registered: Fri May 10 08:13:50 UTC 2024
    - 427.9K bytes
    - Viewed (0)
  10. kubectl create ingress | Kubernetes

    Synopsis Create an ingress with the specified name. kubectl create ingress NAME --rule=host/path=service:port[,tls[=secret]] Examples # Create a single ingress called 'simple' that directs requests to foo.com/bar to svc # svc1:8080 with a TLS secret "my-cert" kubectl create ingress simple --rule="foo.com/bar=svc1:8080,tls=my-cert" # Create a catch all ingress of "/path" pointing to service svc:port and Ingress Class as "otheringress" kubectl create ingress catch-all --class=otheringress --rule="/path=svc:port" # Create an ingress with two annotations: ingress.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_ingress/
    Registered: Fri May 10 08:13:15 UTC 2024
    - 430K bytes
    - Viewed (0)
Back to top