Kubernetes Configuration Patterns 101

Vino Alex
Nov 23, 2022

--

Topic 3: Probes

Kubernetes uses Probes to determine the State of the Application Services of a Container. Probes are a diagnostic performed periodically by the kubelet on a container. As per the Probe configuration, the kubelet executes code within the Container or makes a network request.

A proper Probe Configuration can add an `auto healing` pattern to the Container Apps.

--

--