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

This commit is contained in:
ishizuka 2021-11-25 01:56:21 +09:00 committed by GitHub
parent fe0810aff9
commit 7e1873d927
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -65,5 +65,5 @@ data:
} }
{% if dns_etchosts | default(None) %} {% if dns_etchosts | default(None) %}
hosts: | hosts: |
{{ dns_etchosts | indent(width=4, indentfirst=None) }} {{ dns_etchosts | indent(width=4, first=False) }}
{% endif %} {% endif %}

View file

@ -163,5 +163,5 @@ data:
{% endif %} {% endif %}
{% if dns_etchosts | default(None) %} {% if dns_etchosts | default(None) %}
hosts: | hosts: |
{{ dns_etchosts | indent(width=4, indentfirst=None) }} {{ dns_etchosts | indent(width=4, first=False) }}
{% endif %} {% endif %}

View file

@ -879,7 +879,7 @@ spec:
apiVersion: v1 apiVersion: v1
data: data:
internal-ca.pem: | 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 kind: ConfigMap
metadata: metadata:
name: ca-internal-truststore name: ca-internal-truststore