yaml converts that to 1e7 in the toml file, which then influx chokes on parsing because it expects an integer.
If you put the helm value in quotes to keep it, the quotes get preserved into the toml as well as "10000000", and influx can still not parse that value.
Using influxdata/influxdb 4.12.5
If you pass large integer values eg:
yaml converts that to
1e7
in the toml file, which then influx chokes on parsing because it expects an integer.If you put the helm value in quotes to keep it, the quotes get preserved into the toml as well as
"10000000"
, and influx can still not parse that value.