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 <hello@anthonyrabbito.com>
  • Loading branch information
anthr76 committed Mar 26, 2021
1 parent 6fa3565 commit edfa3e9
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 edfa3e9

Please sign in to comment.