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
Describe the bug
The operator does not generate some arguments from the custom resources. In particular, the arguments that type is int and *bool are not created.
Steps to reproduce the issue:
Apply the Thanos resource like the one below to a cluster that has the Thanos operator.
Expected behavior
The thanos-query-front Deployment should have the arguments - --query-range.partial-response and --query-range.max-retries-per-request=1 - under the args field.
Additional context
Thanos operator version: 0.3.7
The text was updated successfully, but these errors were encountered:
I guess there is a bug in the GetArgs function that generate arguments from the custom resource. In particular, in the case of the int type, the val variable is not assigned, and the *bool type is not handled. I'll make a PR to fix it.
Describe the bug
The operator does not generate some arguments from the custom resources. In particular, the arguments that type is
int
and*bool
are not created.Steps to reproduce the issue:
thanos-query-front
Deployment; you can figure out theargs
field misses some arguments like the one below.Expected behavior
The
thanos-query-front
Deployment should have the arguments ---query-range.partial-response
and--query-range.max-retries-per-request=1
- under theargs
field.Additional context
0.3.7
The text was updated successfully, but these errors were encountered: