Hi Hari Prasad,
Welcome to the Microsoft Q&A Platform. Thank you for posting your query here.
Based upon your query, It looks like the health probes are being added to the default probe in your App Gateway because the annotations in your Helm chart are not properly set this might cause issue. Specifically, the health-probe-path
and health-probe-interval
annotations are empty, so AGIC is using the default health probe settings.
To fix this, you need to provide values for these annotations. For example, set health-probe-path
to a valid path like /healthz
and health-probe-interval
to a value like 10
. This way, a new health probe will be created for each service with these specific settings.
You should also consider setting the health-probe-protocol
annotation to specify whether the probe should use HTTP or HTTPS.
If an answer has been helpful, please consider accepting the answer and "Upvote" to help increase visibility of this question for other members of the Microsoft Q&A community.