-
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
Enable adding user-defined environment variables to collector/query #396
Comments
It's a design decision. The operator does not allow users to change created objects. All changes are reverted. All configuration is only available via jaeger CR. |
Is there a possibility to add env variables through Jeager CR? |
I don't think there is. Let's take this by use cases what properties would you like make configurable? |
First thing would be to have ability to add new environment variables per component e.g.
|
That would allow users to arbitrary change jaeger configuration. Is the goal to configure only |
From my side for now it is only GOMAXPROCS. In case that this controlled by operator I will not need to change that. Thanks for quick response. |
Do you have any recommendations on the value? Should we set it to resource requests? |
In our deployments, GOMAXPROCS value was always matching the resource limits, but in that case request limits/requests need to be fixed |
I am wondering whether this library https://github.com/uber-go/automaxprocs would offer a better solution rather than setting it explicitly on the manifest. |
It seems like it would be more flexible solution. |
I'm closing this, as it was added to Jaeger itself. It should be available whenever the next version is released, probably 1.13. |
During the testing I found out that there is no possibility to update the environment variable part of deployment.
From what I am seeing in the operator code that part of deployment spec is constant, in the meaning of hard coded list of variables which take changeable values from jaeger cr spec.
My questions are:
The text was updated successfully, but these errors were encountered: