We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For now, there is no way to supply repetitive arguments options to the operand
I am expecting the following arguments to query pod, how to specify this in jaeger CR?
--query.additional-headers=access-control-allow-origin:blerg --query.additional-headers=whatever:thing
spec: query: options: query: additional-headers: "whatever:thing"
AFAIK, in YAML we cannot supply the same key multiple times https://github.com/jaegertracing/jaeger-operator/blob/v1.21.3/pkg/apis/jaegertracing/v1/options.go#L96~L99
The text was updated successfully, but these errors were encountered:
i think something like this could be an option:
... spec: query: options: query: additional-headers: - "whatever:thing" - "access-control-allow-origin:blerg"
If that is ok, I can work on this issue.
Sorry, something went wrong.
rubenvp8510
Successfully merging a pull request may close this issue.
For now, there is no way to supply repetitive arguments options to the operand
I am expecting the following arguments to query pod, how to specify this in jaeger CR?
AFAIK, in YAML we cannot supply the same key multiple times
https://github.com/jaegertracing/jaeger-operator/blob/v1.21.3/pkg/apis/jaegertracing/v1/options.go#L96~L99
The text was updated successfully, but these errors were encountered: