Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: ใƒ†ใ‚นใƒˆ test

Results 1 - 10 of 29 for content_length:[500000 TO 999999] (0.02 sec)

  1. 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 19 07:28:34 UTC 2024
    - 523.7K bytes
    - Viewed (0)
  2. Declarative Management of Kubernetes Objects Us...

    Kubernetes objects can be created, updated, and deleted by storing multiple object configuration files in a directory and using kubectl apply to recursively create and update those objects as needed. This method retains writes made to live objects without merging the changes back into the object configuration files. kubectl diff also gives you a preview of what changes apply will make. 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/declarative-config/
    Registered: Fri Apr 19 07:46:57 UTC 2024
    - 549.3K bytes
    - Viewed (0)
  3. Feature Gates | Kubernetes

    This page contains an overview of the various feature gates an administrator can specify on different Kubernetes components. See feature stages for an explanation of the stages for a feature. Overview Feature gates are a set of key=value pairs that describe Kubernetes features. You can turn these features on or off using the --feature-gates command line flag on each Kubernetes component. Each Kubernetes component lets you enable or disable a set of feature gates that are relevant to that component.
    kubernetes.io/docs/reference/command-line-tools-reference/feature-gates/
    Registered: Fri Apr 19 08:17:16 UTC 2024
    - 544.6K bytes
    - Viewed (0)
  4. Glossary | Kubernetes

    Glossary This glossary is intended to be a comprehensive, standardized list of Kubernetes terminology. It includes te...
    kubernetes.io/docs/reference/glossary/
    Registered: Fri Apr 19 08:25:19 UTC 2024
    - 580.3K bytes
    - Viewed (0)
  5. Dynamic Admission Control | Kubernetes

    In addition to compiled-in admission plugins, admission plugins can be developed as extensions and run as webhooks configured at runtime. This page describes how to build, configure, use, and monitor admission webhooks. What are admission webhooks? Admission webhooks are HTTP callbacks that receive admission requests and do something with them. You can define two types of admission webhooks, validating admission webhook and mutating admission webhook. Mutating admission webhooks are invoked first, and can modify objects sent to the API server to enforce custom defaults.
    kubernetes.io/docs/reference/access-authn-authz/extensible-admission-controllers/
    Registered: Fri Apr 19 07:56:57 UTC 2024
    - 556.5K bytes
    - Viewed (0)
  6. Ingress | Kubernetes

    Make your HTTP (or HTTPS) network service available using a protocol-aware configuration mechanism, that understands web concepts like URIs, hostnames, paths, and more. The Ingress concept lets you map traffic to different backends based on rules you define via the Kubernetes API.
    kubernetes.io/docs/concepts/services-networking/ingress/
    Registered: Fri Apr 19 07:22:49 UTC 2024
    - 506K bytes
    - Viewed (2)
  7. 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 Apr 19 07:46:34 UTC 2024
    - 517.8K bytes
    - Viewed (0)
  8. Jobs | Kubernetes

    Jobs represent one-off tasks that run to completion and then stop.
    kubernetes.io/docs/concepts/workloads/controllers/job/
    Registered: Fri Apr 19 07:24:31 UTC 2024
    - 523.8K bytes
    - Viewed (0)
  9. Deployments | Kubernetes

    A Deployment manages a set of Pods to run an application workload, usually one that doesn't maintain state.
    kubernetes.io/docs/concepts/workloads/controllers/deployment/
    Registered: Fri Apr 19 07:24:58 UTC 2024
    - 506.6K bytes
    - Viewed (0)
  10. 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 Apr 19 07:41:20 UTC 2024
    - 522.5K bytes
    - Viewed (0)
Back to top