How to define values file so that the Telegraf conf will have following row
tags = {tag1 = "foo", tag2 = "bar"}
When i define it in Helm values like following :
tags: '{tag1 = "foo", tag2 = "bar"}'
result will be
tags = "{ \"foo\", tag2 = \"bar\" }"
and telegraf will throw error
How to define values file so that the Telegraf conf will have following row
tags = {tag1 = "foo", tag2 = "bar"}When i define it in Helm values like following :
tags: '{tag1 = "foo", tag2 = "bar"}'result will be
tags = "{ \"foo\", tag2 = \"bar\" }"and telegraf will throw error