Skip to content
Snippets Groups Projects
Unverified Commit b7c22659 authored by Du9L.com's avatar Du9L.com Committed by GitHub
Browse files

kubeadm-config.v1beta2.yaml.j2: etcd log level arg (#7339)

According to [etcd's docs](https://etcd.io/docs/v3.4.0/op-guide/configuration/#--log-package-levels), argument 'log-package-levels' should not contain underscores.
parent c9c0c01d
No related branches found
No related tags found
No related merge requests found
...@@ -59,7 +59,7 @@ etcd: ...@@ -59,7 +59,7 @@ etcd:
quota-backend-bytes: "{{ etcd_quota_backend_bytes }}" quota-backend-bytes: "{{ etcd_quota_backend_bytes }}"
{% endif %} {% endif %}
{% if etcd_log_package_levels is defined %} {% if etcd_log_package_levels is defined %}
log-package_levels: "{{ etcd_log_package_levels }}" log-package-levels: "{{ etcd_log_package_levels }}"
{% endif %} {% endif %}
{% for key, value in etcd_extra_vars.items() %} {% for key, value in etcd_extra_vars.items() %}
{{ key }}: "{{ value }}" {{ key }}: "{{ value }}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment