AKS

What is Restart Policy in AKS (Azure Kubernetes Service)?

In AKS, the restart policy defines how Kubernetes restarts containers inside a Pod when they exit (fail or stop). Restart Policy is Defined at the Pod Level It’s set in the Pod spec under .spec.restartPolicy. There are 3 types: Restart Policy Description Always Always restarts the container if it fails (default for regular Pods). OnFailure

What is Restart Policy in AKS (Azure Kubernetes Service)? Read More »