Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.

Commit

Permalink
Updating Jinja syntax to match updates to ansible version.
Browse files Browse the repository at this point in the history
The newer version on Jinja has changed the syntax for the indent filter.
  • Loading branch information
rmkraus committed Jul 1, 2021
1 parent 816e11c commit 572d780
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ baseDomain: "{{ openshift_installer_base_domain }}"
noProxy: "{{ ','.join(openshift_installer_proxy_noproxy) }}"
{% endif %}{% if openshift_installer_proxy_ca | length > 0 %}
additionalTrustBundle: |
{{ openshift_installer_proxy_ca | indent(4, indentfirst=True) }}
{{ openshift_installer_proxy_ca | indent(4, first=True) }}
{% endif %}compute:
- hyperthreading: Enabled
name: worker
Expand Down

0 comments on commit 572d780

Please sign in to comment.