Skip to content

Commit

Permalink
kubeadm-config.v1beta2.yaml.j2: etcd log level arg (kubernetes-sigs#7339
Browse files Browse the repository at this point in the history
)

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.
  • Loading branch information
dujiulun committed Mar 3, 2021
1 parent c9c0c01 commit b7c2265
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ etcd:
quota-backend-bytes: "{{ etcd_quota_backend_bytes }}"
{% endif %}
{% if etcd_log_package_levels is defined %}
log-package_levels: "{{ etcd_log_package_levels }}"
log-package-levels: "{{ etcd_log_package_levels }}"
{% endif %}
{% for key, value in etcd_extra_vars.items() %}
{{ key }}: "{{ value }}"
Expand Down

0 comments on commit b7c2265

Please sign in to comment.