Open djm4686 opened 3 months ago
Aggregators with a list containing floats such as:
aggregators: - quantile: quantiles: [0.25, 0.5, 0.75, 0.9, 0.95, 0.99]
Are not parsed properly by helm templates. The above results in a configmap like so:
[[aggregators.quantile]] quantiles = [ 0, 0, 0, 0, 0, 0 ]
This is due to the _helpers.tpl template improperly coercing types for lists containing ints or floats.
Aggregators with a list containing floats such as:
Are not parsed properly by helm templates. The above results in a configmap like so:
This is due to the _helpers.tpl template improperly coercing types for lists containing ints or floats.