Remove unicode chars from coredns template (#5848)

This commit is contained in:
Mateus Caruccio 2020-03-27 15:39:54 -03:00 committed by GitHub
parent 09308d6125
commit 8800eb3492
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,13 +11,13 @@ data:
{% if coredns_external_zones is defined and coredns_external_zones|length > 0 %}
{% for block in coredns_external_zones %}
{{ block['zones'] | join(' ') }} {
        log
        errors
        forward . {{ block['nameservers'] | join(' ') }}
        loadbalance
        cache {{ block['cache'] | default(5) }}
        reload
    }
log
errors
forward . {{ block['nameservers'] | join(' ') }}
loadbalance
cache {{ block['cache'] | default(5) }}
reload
}
{% endfor %}
{% endif %}
.:53 {