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
Attached my yaml sample.txt that I used for deploying in my cluster
I have deployed my sample application and otel-collector as sidecar.
Framework/Environment Used:
Sample appplication used is Asp.NET core.
Run on EKS Linux
After generating load, I saw traces generated in AWS Xray, but no resources for EKS was generated. I debugged the issue to see what's going on. I got an error saying "The SSL connection could not be established" when a call is made to kubernetes api url via HttpClient and HttpClienHandler.
The text was updated successfully, but these errors were encountered:
… due to exception "The SSL connection could not be established"
Issue Description:
With the current code, it requires an additional step of installing kubernetes self-signed certificate to the trusted store as .NET core expects them to the trsuted store to make a secure connection.
Fix Provided:
ServerCertificationValidationProvider - Safely loads the certificate to the trusted collection along with ServerSideValidation. This would avoid the unnecessary step of installing the certificate manually.
Handler - Creates HttpClientHandler with client certificate.
… due to exception "The SSL connection could not be established"
Issue Description:
With the current code, it requires an additional step of installing kubernetes self-signed certificate to the trusted store as .NET core expects them to the trsuted store to make a secure connection.
Fix Provided:
ServerCertificationValidationProvider - Safely loads the certificate to the trusted collection along with ServerSideValidation. This would avoid the unnecessary step of installing the certificate manually.
Handler - Creates HttpClientHandler with client certificate.
(cherry picked from commit 41e68d3)
AWSEKSResourceDetector fails to detect resources due to api calls when made to extract aws-auth/cluster name from configmap.
Steps that I followed:
I have deployed my sample application and otel-collector as sidecar.
Framework/Environment Used:
After generating load, I saw traces generated in AWS Xray, but no resources for EKS was generated. I debugged the issue to see what's going on. I got an error saying "The SSL connection could not be established" when a call is made to kubernetes api url via HttpClient and HttpClienHandler.
The text was updated successfully, but these errors were encountered: