A monkey driven cloud management
Project description
Mico is a tool-toy to manage a number of hosts deployed in cloud services (currently only support Amazon AWS), and also allows you to deploy new hosts with specified template or create autoscaling groups and manage them easily.
Installation
As usual, mico is available from pypi, and can be installed using pip or easy_install:
pip install mico
Or:
easy_install mico
Configure Mico
Mico just need an AWS key ID and AWS secret key to run. By default mico just take this variables from the OS environment:
export AWS_ACCESS_KEY_ID="*foo*" export AWS_SECRET_ACCESS_KEY="*bar*"
Creating templates
Mico works using the concept of template. A template is just a python code (with steroids which we call libraries), the template can implements a number of functions. Here are a simple and stupid template (stupid.py)
def hello():
print "Hello world!"
def bye():
print "Bye cruel world!"
def hola(args):
print "Hola %s" % args
Once, your template is created, you need to put it into a mico template path (by default uses /etc/mico and ~/.config/mico/, and the current working directory.
Then you can just run mico:
mico -H my_new_host stupid:hello Hello world! mico -H my_new_host stupid:bye Bye cruel world! mico stupid:hola everyone Hola everyone
You can see more complex (and useful!) templates in examples directory.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mico-0.1.tar.gz
.
File metadata
- Download URL: mico-0.1.tar.gz
- Upload date:
- Size: 34.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 977ca1a4d143567910d6df00b59e44285e35e4d34e3d8f1eabd065e78c11b544 |
|
MD5 | 92a78f33e219797a18c9fca9bf946e88 |
|
BLAKE2b-256 | 8e8adbdb177e4da52176545e7435f00b71d1104b7a7f6aefa02bc7f3c47f9c66 |
File details
Details for the file mico-0.1.linux-x86_64.tar.gz
.
File metadata
- Download URL: mico-0.1.linux-x86_64.tar.gz
- Upload date:
- Size: 78.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5c3349b5cf5972ad44990a1ee911dbf487d4d934affcec98eaac03efef6246e |
|
MD5 | b2ce4a3ba317efe1e0ded4cdedfc3d71 |
|
BLAKE2b-256 | 7c94b649c354bf6f4b42f82dcef180170980a0c2ac812c497364bc94b6899b98 |