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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently we have an "ansible" type of provision, that runs a playbook from an inventory.
It would be better for the user to run these outside of Lima, after the instance is started.
ansible-playbook -i inventory.yaml playbook.yaml
If really wanting to use Ansible for VM provisioning, one could start it from a shell script?
That is, install ansible on the instance and then run the playbook from a data file.
data
Generating an inventory is not needed when run locally, with ansible_connection=local
ansible_connection=local
It is only used when ansible is running on the host, to supply the hosts and groups.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Currently we have an "ansible" type of provision, that runs a playbook from an inventory.
It would be better for the user to run these outside of Lima, after the instance is started.
ansible-playbook -i inventory.yaml playbook.yaml
If really wanting to use Ansible for VM provisioning, one could start it from a shell script?
That is, install ansible on the instance and then run the playbook from a
data
file.Generating an inventory is not needed when run locally, with
ansible_connection=local
It is only used when ansible is running on the host, to supply the hosts and groups.
The text was updated successfully, but these errors were encountered: