helm - influxdb configmap can't handle map/array `access-log-status-filters: ["4xx", "5xx"] `
plalwa opened this issue · 2 comments
plalwa commented
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
alespour commented
Yes, try
http:
access-log-status-filters: ["\"4xx\",\"5xx\""]
output:
[http]
access-log-status-filters = ["4xx","5xx"]
plalwa commented
thanks, it works