Skip to content
Discussion options

You must be logged in to vote

Hi @CptOrange16! I'm Dosu and I’m helping the jaeger team.

I see a potential issue with your configuration. In Jaeger v2, the correct TLS field is insecure: true (not insecure_skip_verify). Looking at the TLS handling code, when insecure: true is set, it properly configures InsecureSkipVerify: true in the Go TLS config.

Try this configuration:

jaeger_storage:
  backends:
    primary_store:
      opensearch:
        server_urls: ["https://opensearch-cluster-master:9200"]
        tls:
          insecure: true  # This is the correct field name
        auth:
          basic:
            username: "admin"
            password: "password"

Note: Remove insecure_skip_verify - it's not a valid fi…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by CptOrange16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant