Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/will123195/devops
https://github.com/will123195/devops
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/will123195/devops
- Owner: will123195
- Created: 2014-07-02T01:17:43.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-07-02T02:31:00.000Z (over 10 years ago)
- Last Synced: 2024-10-06T08:41:21.393Z (3 months ago)
- Size: 129 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# devops service and utility
### Service:
- listen for githooks
- daily/hourly backups
- monitor instances/services
- mirror commits to github/bitbucket### Utiltity:
- deploy code
- liveswap
- check travis build
- create ami's```
Usage: ops []Commands:
ami
config
deploy [] to
instances
lb
register
rotate on
ship to
version
```Config
```js
{
services: [
{
name: "db",
git: ["ssh+git://[email protected]/will123195/db.git"],
baseAmi: "ubuntu-nodejs", // or packerTemplate
production: {
start: "npm run production",
awsInstanceTag: "leveldb",
awsInstanceQty: 3,
openPorts: [1777]
},
staging: {
start: "npm run staging",
awsInstanceTag: "leveldb-staging",
openPorts: [1777]
}
}
],
alerts: {}
}}
```