Posts

Showing posts with the label RDO

OpenStack instance deployment using Ansible

This document will help to deploy the Openstack  instances using Ansible. 1. Follow the steps and configure CentOS 7 based ansible  provisioning server for OpenStack. 2. Create  'rdo' directory under '/opt' directory:        # mkdir  /opt/rdo 3. Create 'img-upload.yaml' under '/opt/rdo' directory and add the below content: --- - name: Image Upload activity   hosts: localhost   tasks:   - name: Download cirros image     get_url:       url: http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-disk.img       dest: /tmp/cirros-0.3.4-x86_64-disk.img   - name: Upload cirros image to openstack     os_image:       name: Ansible_Demo       container_format: bare       disk_format: qcow2       state: present  ...