Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

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

Results 1 - 10 of 30 for content_length:[500000 TO 999999] (0.03 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 May 03 07:33:35 UTC 2024
    - 524.6K 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 May 03 07:48:35 UTC 2024
    - 549.9K bytes
    - Viewed (0)
  3. 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 May 03 08:01:24 UTC 2024
    - 557K bytes
    - Viewed (0)
  4. 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 May 03 08:22:34 UTC 2024
    - 545.2K bytes
    - Viewed (0)
  5. 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 May 03 08:30:47 UTC 2024
    - 580.8K bytes
    - Viewed (0)
  6. Validating Admission Policy | Kubernetes

    FEATURE STATE: Kubernetes v1.30 [stable] This page provides an overview of Validating Admission Policy. What is Validating Admission Policy? Validating admission policies offer a declarative, in-process alternative to validating admission webhooks. Validating admission policies use the Common Expression Language (CEL) to declare the validation rules of a policy. Validation admission policies are highly configurable, enabling policy authors to define policies that can be parameterized and scoped to resources as needed by cluster administrators.
    kubernetes.io/docs/reference/access-authn-authz/validating-admission-policy/
    Registered: Fri May 03 07:59:21 UTC 2024
    - 505.7K bytes
    - Viewed (0)
  7. Using RBAC Authorization | Kubernetes

    Role-based access control (RBAC) is a method of regulating access to computer or network resources based on the roles of individual users within your organization. RBAC authorization uses the rbac.authorization.k8s.io API group to drive authorization decisions, allowing you to dynamically configure policies through the Kubernetes API. To enable RBAC, start the API server with the --authorization-mode flag set to a comma-separated list that includes RBAC; for example: kube-apiserver --authorization-mode=Example,RBAC --other-options --more-options API objects The RBAC API declares four kinds of Kubernetes object: Role, ClusterRole, RoleBinding and ClusterRoleBinding.
    kubernetes.io/docs/reference/access-authn-authz/rbac/
    Registered: Fri May 03 08:00:45 UTC 2024
    - 542.2K bytes
    - Viewed (0)
  8. Updating Configuration via a ConfigMap | Kubern...

    This page provides a step-by-step example of updating configuration within a Pod via a ConfigMap and builds upon the Configure a Pod to Use a ConfigMap task. At the end of this tutorial, you will understand how to change the configuration for a running application. This tutorial uses the alpine and nginx images as examples. 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/tutorials/configuration/updating-configuration-via-a-configmap/
    Registered: Fri May 03 08:00:55 UTC 2024
    - 508.9K bytes
    - Viewed (0)
  9. Volumes | Kubernetes

    On-disk files in a container are ephemeral, which presents some problems for non-trivial applications when running in containers. One problem occurs when a container crashes or is stopped. Container state is not saved so all of the files that were created or modified during the lifetime of the container are lost. During a crash, kubelet restarts the container with a clean state. Another problem occurs when multiple containers are running in a Pod and need to share files.
    kubernetes.io/docs/concepts/storage/volumes/
    Registered: Fri May 03 07:30:25 UTC 2024
    - 530.6K bytes
    - Viewed (0)
  10. Secrets | Kubernetes

    A Secret is an object that contains a small amount of sensitive data such as a password, a token, or a key. Such information might otherwise be put in a Pod specification or in a container image. Using a Secret means that you don't need to include confidential data in your application code. Because Secrets can be created independently of the Pods that use them, there is less risk of the Secret (and its data) being exposed during the workflow of creating, viewing, and editing Pods.
    kubernetes.io/docs/concepts/configuration/secret/
    Registered: Fri May 03 07:31:16 UTC 2024
    - 491.3K bytes
    - Viewed (0)
Back to top