Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/viglesiasce/euca-deploy
Tool for Deploying Eucalyptus
https://github.com/viglesiasce/euca-deploy
Last synced: 2 months ago
JSON representation
Tool for Deploying Eucalyptus
- Host: GitHub
- URL: https://github.com/viglesiasce/euca-deploy
- Owner: viglesiasce
- License: bsd-2-clause
- Created: 2014-11-08T23:09:09.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-30T17:17:30.000Z (about 9 years ago)
- Last Synced: 2023-08-01T06:58:03.270Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 618 KB
- Stars: 1
- Watchers: 4
- Forks: 16
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Euca Deploy
This is a harness for running the Eucalyptus cookbook against a distributed system of nodes without a dependency on a Chef Server. We are using fabric and chef-zero to emulate the functionality of a chef-server.
## Install
### On a CentOS 6 system:
yum install -y python-devel gcc git python-setuptools
easy_install fabric PyYAML
curl -L https://www.opscode.com/chef/install.sh | sudo bash -s -- -P chefdk
git clone https://github.com/viglesiasce/euca-deploy
cd euca-deploy
python setup.py install
## Lifecycle Actions
The cloud lifecycle is broken down into many phases:### Configure
The configuration is written in YAML and uses the Chef environment structure. Examples can be found in the examples directory. For a full list of attributes that can be set look at the [Eucalyptus Cookbook attributes](https://github.com/eucalyptus/eucalyptus-cookbook/blob/testing/attributes/default.rb). Edit the etc/environment.yml file to match your deployment topology and configuration.### Validate
#### Not yet implemented!!!
In this stage we run validations against the configuration file to ensure that the deployment will succeed as we expect.### Prepare
This step ensures that Chef is installed on all servers and that we can SSH to all of them. It is nice to know that we are on good footing before we get going with the deployment.euca-deploy prepare -p
### Bootstrap
This step deploys the CLC and initializes the database. Here we are getting a bit deeper and if complete, we can assume that we've are on good footing to continue deploying the rest of the cloud.euca-deploy bootstrap -p
### Provision
Provisions the rest of the system or update the configuration of an existing system. If you change anything in your environment.yml, you can use this to push that change out to your cloud.euca-deploy provision -p
### Debug
#### Not yet implemented!!!
This step will grab all necessary information from a system in order to provide artifacts for use in debugging a problem.