influxdata/helm-charts

helm - influxdb configmap can't handle map/array `access-log-status-filters: ["4xx", "5xx"] `

plalwa opened this issue · 2 comments

is there a know work-around for setting array for a property.
When i define this in helm-charts it truncates the " and ,

http:
    access-log-status-filters: ["4xx", "5xx"]

output:

[http]
  access-log-status-filters = [4xx 5xx]

https://github.com/influxdata/helm-charts/blob/master/charts/influxdb/templates/configmap.yaml#L90

Yes, try

  http:
    access-log-status-filters: ["\"4xx\",\"5xx\""]

output:

    [http]
      access-log-status-filters = ["4xx","5xx"]

thanks, it works