Skip to content

Commit

Permalink
Remove unicode chars from coredns template (kubernetes-sigs#5848)
Browse files Browse the repository at this point in the history
  • Loading branch information
caruccio authored Mar 27, 2020
1 parent 09308d6 commit 8800eb3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions roles/kubernetes-apps/ansible/templates/coredns-config.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 8800eb3

Please sign in to comment.