Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 501 - 510 of 669 for host:kubernetes.io (0.08 sec)

  1. Delete a StatefulSet | Kubernetes

    This task shows you how to delete a StatefulSet. Before you begin This task assumes you have an application running on your cluster represented by a StatefulSet. Deleting a StatefulSet You can delete a StatefulSet in the same way you delete other resources in Kubernetes: use the kubectl delete command, and specify the StatefulSet either by file or by name. kubectl delete -f <file.yaml> kubectl delete statefulsets <statefulset-name> You may need to delete the associated headless service separately after the StatefulSet itself is deleted.
    kubernetes.io/docs/tasks/run-application/delete-stateful-set/
    Registered: Fri Nov 15 06:54:37 UTC 2024
    - 431.2K bytes
    - Viewed (0)
  2. IPv4/IPv6 dual-stack | Kubernetes

    Kubernetes lets you configure single-stack IPv4 networking, single-stack IPv6 networking, or dual stack networking with both network families active. This page explains how.
    kubernetes.io/docs/concepts/services-networking/dual-stack/
    Registered: Fri Nov 15 06:27:21 UTC 2024
    - 463.4K bytes
    - Viewed (0)
  3. Recommended Labels | Kubernetes

    You can visualize and manage Kubernetes objects with more tools than kubectl and the dashboard. A common set of labels allows tools to work interoperably, describing objects in a common manner that all tools can understand. In addition to supporting tooling, the recommended labels describe applications in a way that can be queried. The metadata is organized around the concept of an application. Kubernetes is not a platform as a service (PaaS) and doesn't have or enforce a formal notion of an application.
    kubernetes.io/docs/concepts/overview/working-with-objects/common-labels/
    Registered: Fri Nov 15 06:26:37 UTC 2024
    - 446.2K bytes
    - Viewed (0)
  4. Concepts | Kubernetes

    The Concepts section helps you learn about the parts of the Kubernetes system and the abstractions Kubernetes uses to represent your cluster, and helps you obtain a deeper understanding of how Kubernetes works.
    kubernetes.io/docs/concepts/
    Registered: Fri Nov 15 06:26:45 UTC 2024
    - 426.9K bytes
    - Viewed (0)
  5. Taints and Tolerations | Kubernetes

    Node affinity is a property of Pods that attracts them to a set of nodes (either as a preference or a hard requirement). Taints are the opposite -- they allow a node to repel a set of pods. Tolerations are applied to pods. Tolerations allow the scheduler to schedule pods with matching taints. Tolerations allow scheduling but don't guarantee scheduling: the scheduler also evaluates other parameters as part of its function.
    kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/
    Registered: Fri Nov 15 06:34:51 UTC 2024
    - 454.2K bytes
    - Viewed (0)
  6. Deploy and Access the Kubernetes Dashboard | Ku...

    Deploy the web UI (Kubernetes Dashboard) and access it.
    kubernetes.io/docs/tasks/access-application-cluster/web-ui-dashboard/
    Registered: Fri Nov 15 06:59:40 UTC 2024
    - 437.9K bytes
    - Viewed (0)
  7. Extending Kubernetes | Kubernetes

    Different ways to change the behavior of your Kubernetes cluster.
    kubernetes.io/docs/concepts/extend-kubernetes/
    Registered: Fri Nov 15 06:33:34 UTC 2024
    - 446K bytes
    - Viewed (0)
  8. Coordinated Leader Election | Kubernetes

    FEATURE STATE: Kubernetes v1.31 [alpha] (enabled by default: false) Kubernetes 1.31 includes an alpha feature that allows control plane components to deterministically select a leader via coordinated leader election. This is useful to satisfy Kubernetes version skew constraints during cluster upgrades. Currently, the only builtin selection strategy is OldestEmulationVersion, preferring the leader with the lowest emulation version, followed by binary version, followed by creation timestamp. Enabling coordinated leader election Ensure that CoordinatedLeaderElection feature gate is enabled when you start the API Server: and that the coordination.
    kubernetes.io/docs/concepts/cluster-administration/coordinated-leader-election/
    Registered: Fri Nov 15 06:32:44 UTC 2024
    - 428.4K bytes
    - Viewed (0)
  9. Cluster Autoscaling | Kubernetes

    Automatically manage the nodes in your cluster to adapt to demand.
    kubernetes.io/docs/concepts/cluster-administration/cluster-autoscaling/
    Registered: Fri Nov 15 06:31:55 UTC 2024
    - 429.8K bytes
    - Viewed (0)
  10. Extending the Kubernetes API | Kubernetes

    Custom resources are extensions of the Kubernetes API. Kubernetes provides two ways to add custom resources to your cluster: The CustomResourceDefinition (CRD) mechanism allows you to declaratively define a new custom API with an API group, kind, and schema that you specify. The Kubernetes control plane serves and handles the storage of your custom resource. CRDs allow you to create new types of resources for your cluster without writing and running a custom API server.
    kubernetes.io/docs/concepts/extend-kubernetes/api-extension/
    Registered: Fri Nov 15 06:31:59 UTC 2024
    - 427.5K bytes
    - Viewed (0)
Back to top