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
In our organisation we have VPN with Self Signed TLS CA which we import to AWS Cert Manager and use for NGINX Ingress.
so we import Root/Intermediate/Host certificates to keystore like: keytool -import -noprompt -trustcacerts -alias *** -file *** -keystore cacerts -storepass changeit
create secret via helm values and add Java args: -Djavax.net.ssl.trustStore=/etc/secret-volume/cacerts -Djavax.net.ssl.trustStorePassword=changeit
but during run java test we still get: [javax.net](http://javax.net/).ssl.SSLHandshakeException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
The text was updated successfully, but these errors were encountered:
Hello there,
In our organisation we have VPN with Self Signed TLS CA which we import to AWS Cert Manager and use for NGINX Ingress.
so we import Root/Intermediate/Host certificates to keystore like:
keytool -import -noprompt -trustcacerts -alias *** -file *** -keystore cacerts -storepass changeit
create secret via helm values and add Java args:
-Djavax.net.ssl.trustStore=/etc/secret-volume/cacerts -Djavax.net.ssl.trustStorePassword=changeit
but during run java test we still get:
[javax.net](http://javax.net/).ssl.SSLHandshakeException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
The text was updated successfully, but these errors were encountered: