Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 431 - 440 of 670 for host:kubernetes.io (0.05 sec)

  1. Developing Cloud Controller Manager | Kubernetes

    FEATURE STATE: Kubernetes v1.11 [beta] The cloud-controller-manager is a Kubernetes control plane component that embeds cloud-specific control logic. The cloud controller manager lets you link your cluster into your cloud provider's API, and separates out the components that interact with that cloud platform from components that only interact with your cluster. By decoupling the interoperability logic between Kubernetes and the underlying cloud infrastructure, the cloud-controller-manager component enables cloud providers to release features at a different pace compared to the main Kubernetes project.
    kubernetes.io/docs/tasks/administer-cluster/developing-cloud-controller-manager/
    Registered: Tue Nov 26 03:34:35 UTC 2024
    - 427.9K bytes
    - Viewed (0)
  2. Migrate Kubernetes Objects Using Storage Versio...

    FEATURE STATE: Kubernetes v1.30 [alpha] (enabled by default: false) Kubernetes relies on API data being actively re-written, to support some maintenance activities related to at rest storage. Two prominent examples are the versioned schema of stored resources (that is, the preferred storage schema changing from v1 to v2 for a given resource) and encryption at rest (that is, rewriting stale data based on a change in how the data should be encrypted).
    kubernetes.io/docs/tasks/manage-kubernetes-objects/storage-version-migration/
    Registered: Tue Nov 26 04:06:36 UTC 2024
    - 467.8K bytes
    - Viewed (0)
  3. Run a Single-Instance Stateful Application | Ku...

    This page shows you how to run a single-instance stateful application in Kubernetes using a PersistentVolume and a Deployment. The application is MySQL. Objectives Create a PersistentVolume referencing a disk in your environment. Create a MySQL Deployment. Expose MySQL to other pods in the cluster at a known DNS name. 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/run-application/run-single-instance-stateful-application/
    Registered: Tue Nov 26 04:05:57 UTC 2024
    - 448K bytes
    - Viewed (0)
  4. EndpointSlices | Kubernetes

    The EndpointSlice API is the mechanism that Kubernetes uses to let your Service scale to handle large numbers of backends, and allows the cluster to update its list of healthy backends efficiently.
    kubernetes.io/docs/concepts/services-networking/endpoint-slices/
    Registered: Tue Nov 26 03:05:15 UTC 2024
    - 441K bytes
    - Viewed (0)
  5. Kubernetes Object Management | Kubernetes

    The kubectl command-line tool supports several different ways to create and manage Kubernetes objects. This document provides an overview of the different approaches. Read the Kubectl book for details of managing objects by Kubectl. Management techniques Warning:A Kubernetes object should be managed using only one technique. Mixing and matching techniques for the same object results in undefined behavior. Management technique Operates on Recommended environment Supported writers Learning curve Imperative commands Live objects Development projects 1+ Lowest Imperative object configuration Individual files Production projects 1 Moderate Declarative object configuration Directories of files Production projects 1+ Highest Imperative commands When using imperative commands, a user operates directly on live objects in a cluster.
    kubernetes.io/docs/concepts/overview/working-with-objects/object-management/
    Registered: Tue Nov 26 03:09:02 UTC 2024
    - 436K bytes
    - Viewed (0)
  6. Mixed Version Proxy | Kubernetes

    FEATURE STATE: Kubernetes v1.28 [alpha] (enabled by default: false) Kubernetes 1.31 includes an alpha feature that lets an API Server proxy a resource requests to other peer API servers. This is useful when there are multiple API servers running different versions of Kubernetes in one cluster (for example, during a long-lived rollout to a new release of Kubernetes). This enables cluster administrators to configure highly available clusters that can be upgraded more safely, by directing resource requests (made during the upgrade) to the correct kube-apiserver.
    kubernetes.io/docs/concepts/architecture/mixed-version-proxy/
    Registered: Tue Nov 26 03:09:23 UTC 2024
    - 432.3K bytes
    - Viewed (0)
  7. Ephemeral Volumes | Kubernetes

    This document describes ephemeral volumes in Kubernetes. Familiarity with volumes is suggested, in particular PersistentVolumeClaim and PersistentVolume. Some applications need additional storage but don't care whether that data is stored persistently across restarts. For example, caching services are often limited by memory size and can move infrequently used data into storage that is slower than memory with little impact on overall performance. Other applications expect some read-only input data to be present in files, like configuration data or secret keys.
    kubernetes.io/docs/concepts/storage/ephemeral-volumes/
    Registered: Tue Nov 26 03:15:57 UTC 2024
    - 445.1K bytes
    - Viewed (0)
  8. Scheduling Framework | Kubernetes

    FEATURE STATE: Kubernetes v1.19 [stable] The scheduling framework is a pluggable architecture for the Kubernetes scheduler. It consists of a set of "plugin" APIs that are compiled directly into the scheduler. These APIs allow most scheduling features to be implemented as plugins, while keeping the scheduling "core" lightweight and maintainable. Refer to the design proposal of the scheduling framework for more technical information on the design of the framework.
    kubernetes.io/docs/concepts/scheduling-eviction/scheduling-framework/
    Registered: Tue Nov 26 03:15:30 UTC 2024
    - 440K bytes
    - Viewed (0)
  9. Pod Scheduling Readiness | Kubernetes

    FEATURE STATE: Kubernetes v1.30 [stable] Pods were considered ready for scheduling once created. Kubernetes scheduler does its due diligence to find nodes to place all pending Pods. However, in a real-world case, some Pods may stay in a "miss-essential-resources" state for a long period. These Pods actually churn the scheduler (and downstream integrators like Cluster AutoScaler) in an unnecessary manner. By specifying/removing a Pod's .spec.schedulingGates, you can control when a Pod is ready to be considered for scheduling.
    kubernetes.io/docs/concepts/scheduling-eviction/pod-scheduling-readiness/
    Registered: Tue Nov 26 03:15:50 UTC 2024
    - 436.1K bytes
    - Viewed (0)
  10. Cluster Networking | Kubernetes

    Networking is a central part of Kubernetes, but it can be challenging to understand exactly how it is expected to work. There are 4 distinct networking problems to address: Highly-coupled container-to-container communications: this is solved by Pods and localhost communications. Pod-to-Pod communications: this is the primary focus of this document. Pod-to-Service communications: this is covered by Services. External-to-Service communications: this is also covered by Services. Kubernetes is all about sharing machines among applications.
    kubernetes.io/docs/concepts/cluster-administration/networking/
    Registered: Tue Nov 26 03:15:43 UTC 2024
    - 429.4K bytes
    - Viewed (0)
Back to top