Skip to content

Commit

Permalink
Correct Jinja Syntax for etcd-unsupported-arch (kubernetes-sigs#6919)
Browse files Browse the repository at this point in the history
`-%` causes `etcd-unsupported-arch: arm64` to print on COL 1 instead of
COL 6.

Signed-off-by: anthr76 <[email protected]>
  • Loading branch information
anthr76 authored and LuckySB committed Apr 6, 2021
1 parent 2a76ca9 commit b48fdb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ etcd:
{% for key, value in etcd_extra_vars.items() %}
{{ key }}: "{{ value }}"
{% endfor %}
{% if host_architecture != "amd64" -%}
{% if host_architecture != "amd64" %}
etcd-unsupported-arch: {{host_architecture}}
{% endif %}
serverCertSANs:
Expand Down

0 comments on commit b48fdb5

Please sign in to comment.