-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enabling TLS for grpc causes the readiness probe to fail #3
Comments
Once the chart was rendering healthy pods I wanted to tweak the readiness probe to be able to remove the required Context, the release I am working with is named The following command, run from the healthy container, succeeds:
While this command does not:
This tells me that the hardcoded alternate server name (provided via If I remove the |
In case anybody is wondering, the reason I am not using |
After a bit of digging. This This issue remains valid as the tls options need to be applied to the When TLS is enabled, the chart needs to add a |
Adding the
-tls
flag to the probe command along with and adding0.0.0.0
as an IP SAN to the certificate via kustomization fixed the issue.The text was updated successfully, but these errors were encountered: