Hello,
Does Ansible have enterprise version or is completely Opensource and free to use with no license.
We are looking to implement Ansible in our organization and am gathering some info on
If ansible has any enterprise version or support package apart from community support
Thanks
Mehul
Commercial support exists https://www.ansible.com/consulting the core software is all Open Source and the Tower ( https://www.ansible.com/tower ) is a commercial product. Try https://www.ansible.com/ for more info.
How about security updates and patches ?
Mehul
Please find in the documentation at https://docs.ansible.com/ansible/intro_installation.html#installing-the-control-machine the instructions for installing and updating from the various release repositories.
Andrew Latham wrote:
Please find in the documentation at
https://docs.ansible.com/ansible/intro_installation.html#installing-the-control-machine
the instructions for installing and updating from the various release repositories.
Unfortunately this documentation says nothing about the incompability to Jinja2 2.9+ [1]
requiring pinning the installation to Jinja2 2.8.x. Some of my Jinja2 templates
definitely do not work with Jinja2 2.9+.
Since most modern Linux distributions now ship with OS packages for Jinja2 2.9+ my own
installation instructions requires setting up a virtualenv:
$ virtualenv-2.7 /path/to/ansible
$ /path/to/ansible/bin/pip2 install --upgrade ansible Jinja2==2.8.1 dnspython
Ciao, Michael.
[1] https://github.com/ansible/ansible/issues/20063