[Misc] Reduce initial delay for liveness and readiness probes #652
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.

Description
This PR reduces the initial delay seconds for both liveness and readiness probes in the Helm chart configuration to improve startup time and enable faster detection of service availability.
Changes
initialDelaySecondsfrom 120s to 30sinitialDelaySecondsfrom 180s to 30sMotivation
Shorter initial delays allow Kubernetes to detect service availability faster, reducing the time before the service can start receiving traffic. The previous values (120s and 180s) were overly conservative for most deployment scenarios.
-swhen doinggit commit[Bugfix],[Feat], and[CI].