Sort: Relevance · Newest · 10 hits · 27 of 30 left today
#1

Configure Liveness Readiness Startup Probes (part 2/2)

kubernetes/website · content/en/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes.md

```yaml readinessProbe: exec: command: - cat - /tmp/healthy initialDelaySeconds: 5 periodSeconds: 5 ``` Configuration for HTTP and TCP readiness probes also remains identical to liveness probes. Readiness and liveness probes can be used in parallel for the sam…

Read at source

#2

Probes (part 2/2)

kubernetes/website · content/en/docs/concepts/workloads/pods/probes.md

`failureThreshold` : After a probe fails `failureThreshold` times in a row, Kubernetes considers that the overall check has failed: the container is _not_ ready/healthy/live. Defaults to 3. Minimum value is 1. For the case of a startup or liveness probe, if at least `failureThres…

Read at source

#3

Probes (part 1/2)

kubernetes/website · content/en/docs/concepts/workloads/pods/probes.md

--- title: Liveness, Readiness, and Startup Probes content_type: concept weight: 65 math: true --- Kubernetes lets you define _probes_ to continuously monitor the health of containers in a Pod. A probe is a diagnostic performed periodically by the {{< glossary…

Read at source

#4

Health Checking of Istio Services

https://istio.io/latest/docs/ops/configuration/mesh/app-health-check/

Health Checking of Istio Services Kubernetes liveness and readiness probes describes several ways to configure liveness and readiness probes: The command approach works with no changes required, but HTTP requests, TCP probes, and gRPC probes require Istio to make changes to the p…

Read at source

#5

Liveness Readiness Startup Probes (part 2/2)

kubernetes/website · content/en/docs/concepts/configuration/liveness-readiness-startup-probes.md

`failureThreshold` : After a probe fails `failureThreshold` times in a row, Kubernetes considers that the overall check has failed: the container is _not_ ready/healthy/live. Defaults to 3. Minimum value is 1. For the case of a startup or liveness probe, if at least `failureThres…

Read at source

#6

Pod Lifecycle (part 3/4)

https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/

In your kubelet configuration, under crashLoopBackOff set the maxContainerRestartPeriod field between "1s" and "300s" . As described above in Container restart policy, delays on that node will still start at 10s and increase exponentially by 2x each restart, but will now be cappe…

Read at source

#7

README

kubernetes/enhancements · keps/sig-etcd/4331-livez-readyz/README.md

# KEP-4331: Livez and Readyz Probes - [Summary](#summary) - [Motivation](#motivation) - [Goals](#goals) - [Non-Goals](#non-goals) - [Proposal](#proposal) - [Definition for livez and readyz](#definition-for-livez-and-readyz) - [Design Details](#design-details) …

Read at source

#8

README (part 2/4)

kubernetes/enhancements · keps/sig-node/4438-container-restart-termination/README.md

<!-- What are the risks of this proposal, and how do we mitigate? Think broadly. For example, consider both security and how this will impact the larger Kubernetes ecosystem. How will security be reviewed, and by whom? How will UX be reviewed, and by whom? Consider including f…

Read at source

#9

README (part 3/3)

kubernetes/enhancements · keps/sig-node/2238-liveness-probe-grace-period/README.md

* **Will enabling / using this feature result in non-negligible increase of resource usage (CPU, RAM, disk, IO, ...) in any components?** Things to keep in mind include: additional in-memory state, additional non-trivial computations, excessive access to disks (including incr…

Read at source

#10

README

kubernetes/enhancements · keps/sig-node/950-liveness-probe-holdoff/README.md

# Add pod-startup liveness-probe holdoff for slow-starting pods ## Table of Contents - [Release Signoff Checklist](#release-signoff-checklist) - [Summary](#summary) - [Motivation](#motivation) - [Goals](#goals) - [Non-Goals](#non-goals) - [Proposal](#proposal) …

Read at source