项目作者: resmo

项目描述 :
Example project for using ansible and cloudstack
高级语言: Makefile
项目地址: git://github.com/resmo/ansible-cloudstack-example.git
创建时间: 2014-12-25T18:00:09Z
项目社区:https://github.com/resmo/ansible-cloudstack-example

开源协议:

下载


CloudStack Example Playbook

Demo Screencast

What:

Installs yacy search engine on Exoscale.

Cloud Credentionals

  1. $ cat $HOME/.cloudstack.ini
  2. [cloudstack]
  3. endpoint = https://api.exoscale.ch/compute
  4. key = cloudstack api key
  5. secret = cloudstack api secret

Instal by venv

  1. $ git clone https://github.com/resmo/ansible-cloudstack-example.git
  2. $ cd ansible-cloudstack-example
  3. $ python3 -m venv .venv
  4. $ source .venv/bin/activate
  5. $ pip install -r requirements.txt
  6. $ ansible-playbook playbooks/site.yml

Install by virtualenv

  1. $ git clone https://github.com/resmo/ansible-cloudstack-example.git
  2. $ cd ansible-cloudstack-example
  3. $ virtualenv app && source app/bin/activate
  4. $ pip install -r requirements.txt
  5. $ ansible-playbook playbooks/site.yml

Install and run with Docker

  1. $ git clone https://github.com/resmo/ansible-cloudstack-example.git
  2. $ cd ansible-cloudstack-example
  3. $ make build
  4. $ make run
  5. # Cleanup
  6. $ make clean