We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Hi,
the autotls role is not working when using key authentication because of a missing comma in the template auto-tls-key.json:
{ "customCA" : false, "configureAllServices" : "true", "sshPort" : 22, {% if freeipa_activated %}"trustedCaCerts" : "/etc/ipa/ca.crt",{% endif %} "userName" : "{{ sudoerUser|default("root") }}", "privateKey": "{{ node_key_one_line|default('~/node_key') }}" "passphrase": "{{ passphrase|default("") }}" }
The template should look like this
{ "customCA" : false, "configureAllServices" : "true", "sshPort" : 22, {% if freeipa_activated %}"trustedCaCerts" : "/etc/ipa/ca.crt",{% endif %} "userName" : "{{ sudoerUser|default("root") }}", "privateKey": "{{ node_key_one_line|default('~/node_key') }}", "passphrase": "{{ passphrase|default("") }}" }
Regards
Uli
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
the autotls role is not working when using key authentication because of a missing comma in the template auto-tls-key.json:
The template should look like this
Regards
Uli
The text was updated successfully, but these errors were encountered: