We can use Git to clone the Ceph Ansible repository, as follows:
git clone https://github.com/ceph/ceph-ansible.gitgit checkout stable-3.2sudo cp -a ceph-ansible/* /etc/ansible/
We also need to install a few extra packages that ceph-ansible requires:
sudo apt-get install python-pip
sudo pip install notario netaddr
Let's also explore some key folders in the Git repository:
- group_vars: We've already covered what ...