Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 521 - 530 of 669 for host:kubernetes.io (0.03 sec)

  1. Pod Overhead | Kubernetes

    FEATURE STATE: Kubernetes v1.24 [stable] When you run a Pod on a Node, the Pod itself takes an amount of system resources. These resources are additional to the resources needed to run the container(s) inside the Pod. In Kubernetes, Pod Overhead is a way to account for the resources consumed by the Pod infrastructure on top of the container requests & limits. In Kubernetes, the Pod's overhead is set at admission time according to the overhead associated with the Pod's RuntimeClass.
    kubernetes.io/docs/concepts/scheduling-eviction/pod-overhead/
    Registered: Fri Nov 15 06:39:15 UTC 2024
    - 441.6K bytes
    - Viewed (0)
  2. ConfigMaps | Kubernetes

    A ConfigMap is an API object used to store non-confidential data in key-value pairs. Pods can consume ConfigMaps as environment variables, command-line arguments, or as configuration files in a volume. A ConfigMap allows you to decouple environment-specific configuration from your container images, so that your applications are easily portable. Caution:ConfigMap does not provide secrecy or encryption. If the data you want to store are confidential, use a Secret rather than a ConfigMap, or use additional (third party) tools to keep your data private.
    kubernetes.io/docs/concepts/configuration/configmap/
    Registered: Fri Nov 15 06:38:47 UTC 2024
    - 466.9K bytes
    - Viewed (0)
  3. Liveness, Readiness, and Startup Probes | Kuber...

    Kubernetes has various types of probes: Liveness probe Readiness probe Startup probe Liveness probe Liveness probes determine when to restart a container. For example, liveness probes could catch a deadlock when an application is running but unable to make progress. If a container fails its liveness probe repeatedly, the kubelet restarts the container. Liveness probes do not wait for readiness probes to succeed. If you want to wait before executing a liveness probe, you can either define initialDelaySeconds or use a startup probe.
    kubernetes.io/docs/concepts/configuration/liveness-readiness-startup-probes/
    Registered: Fri Nov 15 06:38:57 UTC 2024
    - 427.8K bytes
    - Viewed (0)
  4. DNS for Services and Pods | Kubernetes

    Your workload can discover Services within your cluster using DNS; this page explains how that works.
    kubernetes.io/docs/concepts/services-networking/dns-pod-service/
    Registered: Fri Nov 15 06:30:43 UTC 2024
    - 456.1K bytes
    - Viewed (0)
  5. Pods | Kubernetes

    Pods are the smallest deployable units of computing that you can create and manage in Kubernetes. A Pod (as in a pod of whales or pea pod) is a group of one or more containers, with shared storage and network resources, and a specification for how to run the containers. A Pod's contents are always co-located and co-scheduled, and run in a shared context. A Pod models an application-specific "logical host": it contains one or more application containers which are relatively tightly coupled.
    kubernetes.io/docs/concepts/workloads/pods/
    Registered: Fri Nov 15 06:30:23 UTC 2024
    - 460.6K bytes
    - Viewed (0)
  6. Leases | Kubernetes

    Distributed systems often have a need for leases, which provide a mechanism to lock shared resources and coordinate activity between members of a set. In Kubernetes, the lease concept is represented by Lease objects in the coordination.k8s.io API Group, which are used for system-critical capabilities such as node heartbeats and component-level leader election. Node heartbeats Kubernetes uses the Lease API to communicate kubelet node heartbeats to the Kubernetes API server.
    kubernetes.io/docs/concepts/architecture/leases/
    Registered: Fri Nov 15 06:29:24 UTC 2024
    - 434.9K bytes
    - Viewed (0)
  7. CronJob | Kubernetes

    A CronJob starts one-time Jobs on a repeating schedule.
    kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/
    Registered: Fri Nov 15 06:24:30 UTC 2024
    - 445.1K bytes
    - Viewed (0)
  8. StatefulSets | Kubernetes

    A StatefulSet runs a group of Pods, and maintains a sticky identity for each of those Pods. This is useful for managing applications that need persistent storage or a stable, unique network identity.
    kubernetes.io/docs/concepts/workloads/controllers/statefulset/
    Registered: Fri Nov 15 06:25:27 UTC 2024
    - 464.4K bytes
    - Viewed (0)
  9. Labels and Selectors | Kubernetes

    Labels are key/value pairs that are attached to objects such as Pods. Labels are intended to be used to specify identifying attributes of objects that are meaningful and relevant to users, but do not directly imply semantics to the core system. Labels can be used to organize and to select subsets of objects. Labels can be attached to objects at creation time and subsequently added and modified at any time.
    kubernetes.io/docs/concepts/overview/working-with-objects/labels/
    Registered: Fri Nov 15 06:24:47 UTC 2024
    - 455.7K bytes
    - Viewed (0)
  10. API-initiated Eviction | Kubernetes

    API-initiated eviction is the process by which you use the Eviction API to create an Eviction object that triggers graceful pod termination. You can request eviction by calling the Eviction API directly, or programmatically using a client of the API server, like the kubectl drain command. This creates an Eviction object, which causes the API server to terminate the Pod. API-initiated evictions respect your configured PodDisruptionBudgets and terminationGracePeriodSeconds. Using the API to create an Eviction object for a Pod is like performing a policy-controlled DELETE operation on the Pod.
    kubernetes.io/docs/concepts/scheduling-eviction/api-eviction/
    Registered: Fri Nov 15 06:35:28 UTC 2024
    - 435.6K bytes
    - Viewed (0)
Back to top