jacobsee / applier-cli

[Old repo - new one lives in redhat-cop!] A command-line tool for creating and working with OpenShift-Applier inventories.
Apache License 2.0
3 stars 0 forks source link

Add connection=local to default hosts file #1

Open etsauer opened 5 years ago

etsauer commented 5 years ago

Current hosts file:

[seed-hosts]
localhost

When using localhost as the seed-host, we want to prevent ansible from trying to perform a remote ssh connection to our local machine. The default hosts file should look like this:

[seed-hosts]
localhost ansible_connection=local
jacobsee commented 5 years ago

ansible_connection: local is currently being configured in host_vars/localhost.yml. Do you think it should be moved to the hosts file instead?