diff --git a/user_documentation/rst/deployment.rst b/user_documentation/rst/deployment.rst index 4379141..3206136 100644 --- a/user_documentation/rst/deployment.rst +++ b/user_documentation/rst/deployment.rst @@ -27,8 +27,7 @@ For the MiCADO master: For the host where the Ansible playbook is executed (differs depending on local or remote): * Ansible 2.4 or greater -* Git - +* curl Ansible ------- @@ -47,16 +46,16 @@ To install Ansible on Ubuntu 16.04, use these commands: To install Ansible on other operation systems follow the `official installation guide `__. -Git ---- +curl +---- -To install Git on Ubuntu, use this command: +To install curl on Ubuntu, use this command: :: - sudo apt-get install git-all + sudo apt-get install curl -To install Git on other operating systems follow the `official installation guide `__. +To install curl on other operating systems follow the `official installation guide `__. Installation ============ @@ -68,9 +67,9 @@ Step 1: Download the ansible playbook. :: - git clone https://github.com/micado-scale/ansible-micado.git ansible-micado - cd ansible-micado - git checkout v0.6.1 + curl --output ansible-micado-0.6.1.tar.gz -L https://github.com/micado-scale/ansible-micado/releases/download/v0.6.1/ansible-micado-0.6.1.tar.gz + tar -zxvf ansible-micado-0.6.1.tar.gz + cd ansible-micado-0.6.1/ Step 2: Specify cloud credential for instantiating MiCADO workers. ------------------------------------------------------------------