Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

AutoDeploy

StackShare

An automated deployment system which is similar to AWS CodeDeploy but is hostable inside an enterprise.

The target is to minimize the manual prone errors of code deployment.

The project will have the following componemts:

  • Deployment Daemon (to run under root role so it can restart servers).
  • Deployment Client (which can communicate with the server giving it the scripts to run).
  • Deployment Interface (to see the progress and it can be used to deploy certain code versions).

The deployment configuration will be based on YAML Format.

The client should be callable from CI systems (like Jenkins) to deploy the code after a successful build.

##Events:##

The following events will be handled by the system:

  1. beforeInstall: This event will run after the code is downloaded, normal will be used to stop servers/decrypt files
  2. Install: doing the deployment operation itself
  3. afterInstall: Actions required after Installing like reloading a server.
  4. Validation: An optiomal step to make sure that everything is OK.

Every event should have the following format:

events:
   event-name
       - location: script-location
         runas: user-name

Requirments

For the Server:

  • pyyaml (>3.0)
  • pycrypto

For the web-application

  • django 1.8.1+
  • django-table-2
  • django-table-report
You can’t perform that action at this time.