Skip to content
Snippets Groups Projects
Unverified Commit 7e1873d9 authored by ishizuka's avatar ishizuka Committed by GitHub
Browse files

DeprecationWarning occurs when indentfirst=None is specified in coredns-config.yml.j2 (#8224)

parent fe0810af
No related branches found
No related tags found
No related merge requests found
......@@ -65,5 +65,5 @@ data:
}
{% if dns_etchosts | default(None) %}
hosts: |
{{ dns_etchosts | indent(width=4, indentfirst=None) }}
{{ dns_etchosts | indent(width=4, first=False) }}
{% endif %}
......@@ -163,5 +163,5 @@ data:
{% endif %}
{% if dns_etchosts | default(None) %}
hosts: |
{{ dns_etchosts | indent(width=4, indentfirst=None) }}
{{ dns_etchosts | indent(width=4, first=False) }}
{% endif %}
......@@ -879,7 +879,7 @@ spec:
apiVersion: v1
data:
internal-ca.pem: |
{{ cert_manager_trusted_internal_ca | indent(width=4, indentfirst=False) }}
{{ cert_manager_trusted_internal_ca | indent(width=4, first=False) }}
kind: ConfigMap
metadata:
name: ca-internal-truststore
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment