-
Notifications
You must be signed in to change notification settings - Fork 344
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
how to ignore server certificate check when connect to a self signed existing ES cluster #685
Comments
Also, how can I map the options from the cli options to the options to be specified inside the operator? |
It should be sufficient to use
The options:
es:
server-urls: https://13.x.x.x:9200 becomes:
|
Thanks for the tip. Here is the output when I describe deployment
But I still have the error as
|
Are you able to replace the IP in the connection string with a hostname? |
yep. here is the error message now
I have one existing cluster in another namespace in the same k8s cluster. I think somehow the ignore certificate validation is not set, otherwise, it does not need to check the cert at all and there should not be one message as btw, I tried both cluster IP and the public IP from the same service and both have the same error as |
does this need to set |
@pavolloffay looks like there's some inconsistency, as pointed out by @yuecong: Looks like there's a place where TLS=true means that client auth is enabled (which isn't the case). |
By the way, this seems to be a problem with Jaeger itself, not the operator. |
Agree this is related to Jaeger rather than the operator as it will be true for all type of deployment. I will work around it for now to use client cert. would like to help to test once it is fixed. Thanks |
I am closing this jaegertracing/jaeger#1918 will support insecure TLS without |
I have one existing ES cluster( 7.x) and running in https mode with a self-signed cert.
I can connect it using
I configured the ES backend as
But I got the error as
How can I config jaeger to connect to a self-signed ES server? My server also supports client cert authenticate if it is the only way to do so.
Thanks
The text was updated successfully, but these errors were encountered: