DevOps Interview DropAdvanced TierScenario+50 XP on read

What happens if an Auto Scaling instance never becomes healthy?

#Infrastructure#AWS#Kubernetes#Troubleshooting

Core Summary

An unhealthy instance in Auto Scaling will be eventually terminated and replaced, but how long you wait depends on your health check configuration and cooldown settings. If the instance is stuck unhealthy, it consumes resources and may keep getting replaced in a loop. The fix is: diagnose why it is unhealthy, fix the root cause (usually startup configuration or resource limits), or increase the health check timeout if it is just slow to boot.

Hints

Hint 1: Health checks look for a green signal; if they never get it, the instance is terminated

Hint 2: Check: startup logs, resource limits, health check endpoint

Hint 3: Long termination times mean wasted resources and longer recovery

Reported in interviews at AWS, Amazon, Google Cloud