You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add startupProbe to otel-agent container for graceful startup
The otel-agent container can take extra time to bind to port 13133, especially when the cluster is under heavy load or resources are constrained. Without a startup probe, the pod may be restarted prematurely by Kubernetes if the readiness or liveness probes fail during this slow startup period, leading to CrashLoopBackOff errors.
By introducing a startupProbe, we provide a dedicated grace period for the otel-agent to initialize and bind to its health check port before readiness and liveness checks begin. This ensures the pod is not restarted unnecessarily during startup, improving reliability and reducing the risk of CrashLoopBackOff due to transient startup delays.
0 commit comments