- SaltStack 2014.1.0 RC3.
- Ubuntu Server 12.04 LTS.
- NGINX Extras from NGINX Stable PPA.
- uWSGI.
- Beaver.
- New Relic Server Monitoring.
- New Relic Plug-in "newrelic-plugin-agent".
- Ubuntu Server 12.04 LTS.
- PostgreSQL 9.2 from Apt Repository.
- Beaver.
- New Relic Server Monitoring.
- New Relic Plug-in "newrelic-plugin-agent".
- Ubuntu Server 12.04 LTS.
- Redis from PPA.
- New Relic Server Monitoring.
- New Relic Plug-in "newrelic-plugin-agent".
- Ubuntu Server 12.04 LTS.
- NGINX Extras from NGINX Stable PPA.
- Barman from PPA.
- Beaver.
- Logstash.
- Kibana 3.
- New Relic Server Monitoring.
- New Relic Plug-in "newrelic-plugin-agent".
lnup/
├── LICENSE
├── README.md
├── git-media
│ ├── LNUP.graffle
│ ├── LNUP.png
│ ├── communication_flow.graffle
│ └── communication_flow.png
├── map
│ ├── development.map
│ ├── production.map
│ └── staging.map
├── pillar
│ ├── dev_settings.sls
│ ├── global_settings.sls
│ ├── prod_settings.sls
│ ├── stag_settings.sls
│ └── top.sls
└── salt
├── node-types
│ ├── lb
│ │ └── init.sls
│ ├── postgres
│ │ └── init.sls
│ ├── redis
│ │ └── init.sls
│ ├── util
│ │ └── init.sls
│ └── web
│ └── init.sls
├── packages
│ ├── barman.sls
│ ├── beaver
│ │ ├── beaver_config.sls
│ │ ├── files
│ │ │ ├── beaver.conf.jinja
│ │ │ └── beaver.upstart.jinja
│ │ └── init.sls
│ ├── git.sls
│ ├── kibana.sls
│ ├── libcap-dev.sls
│ ├── libldap2-dev.sls
│ ├── libpq-dev.sls
│ ├── libsasl2-dev.sls
│ ├── libssl-dev.sls
│ ├── logstash
│ │ ├── files
│ │ │ └── logstash.upstart.jinja
│ │ └── init.sls
│ ├── new_relic.sls
│ ├── newrelic_plugin_agent
│ │ ├── files
│ │ │ ├── newrelic-plugin-agent-monitor.cfg.jinja
│ │ │ └── newrelic_plugin_agent.startup
│ │ ├── init.sls
│ │ └── newrelic-plugin-agent-monitor.sls
│ ├── nginx
│ │ ├── files
│ │ │ ├── maintenance.html
│ │ │ ├── nginx.conf
│ │ │ └── nginx.upstart
│ │ ├── init.sls
│ │ ├── nginx_config.sls
│ │ └── nginx_maintenance_page.sls
│ ├── openjdk-7-jre-headless.sls
│ ├── postgres.sls
│ ├── postgresql-client-92.sls
│ ├── postgresql-client-common.sls
│ ├── python
│ │ ├── python-dev
│ │ │ └── init.sls
│ │ ├── python-ldap
│ │ │ └── init.sls
│ │ ├── python-mysqldb
│ │ │ └── init.sls
│ │ ├── python-pip
│ │ │ ├── init.sls
│ │ │ └── pip.conf
│ │ ├── python-psycopg2
│ │ │ └── init.sls
│ │ ├── python-software-properties
│ │ │ └── init.sls
│ │ └── python-virtualenv
│ │ └── init.sls
│ ├── redis.sls
│ ├── set_time.sls
│ ├── ssh_keys.sls
│ ├── updates.sls
│ ├── uwsgi
│ │ ├── files
│ │ │ ├── uwsgi.upstart
│ │ │ └── uwsgi.yaml.jinja
│ │ └── init.sls
│ ├── uwsgitop.sls
│ └── vim.sls
├── project
│ └── app
│ ├── common
│ │ ├── app_user.sls
│ │ └── files
│ │ └── ssh_private_key.jinja
│ ├── lb
│ │ ├── files
│ │ │ ├── 503.html
│ │ │ ├── nginx_app_vhost.conf.jinja
│ │ │ ├── ssl.crt
│ │ │ └── ssl.key
│ │ └── init.sls
│ ├── postgres
│ │ ├── files
│ │ │ ├── pg_hba.conf.jinja
│ │ │ └── postgresql.conf.jinja
│ │ └── init.sls
│ ├── redis
│ │ └── init.sls
│ ├── util
│ │ ├── files
│ │ │ ├── barman.conf.jinja
│ │ │ ├── config.js.jinja
│ │ │ ├── logstash_indexer.conf.jinja
│ │ │ └── nginx_kibana_vhost.conf.jinja
│ │ └── init.sls
│ └── web
│ ├── files
│ │ ├── celeryd.default.jinja
│ │ ├── celeryd.jinja
│ │ ├── ldap.conf.jinja
│ │ ├── newrelic.ini.jinja
│ │ └── uwsgi_app_vhost.yaml.jinja
│ └── init.sls
└── top.sls
42 directories, 88 files
- Barman has to be kick-started for the first time.
- Django collect static is manual.
- Untested Load Balancer.
- No PGBouncer.
- No Extra Web-head... at the moment.
- No Extra Postgres.
- Make node-types into roles, so if you wanted you could have everything on one server.
salt -C 'G@datacenter:ord and G@env:prod' cmd.run 'ps faux | grep [b]eaver'
salt -C 'G@node_type:util and G@datacenter:ord and G@env:prod' cmd.run 'ps faux | grep [n]ginx'
salt -C 'G@node_type:util and G@datacenter:ord and G@env:prod' cmd.run 'ps faux | grep [l]ogstash'
salt -C 'G@node_type:util and G@datacenter:ord and G@env:prod' cmd.run 'barman check <<app name>>'
salt -C 'G@node_type:util and G@datacenter:ord and G@env:prod' cmd.run 'barman list-backup <<app name>>'
salt -C 'G@node_type:util and G@datacenter:ord and G@env:prod' cmd.run 'tail -n15 /var/log/barman/barman.log'
salt -C 'G@node_type:redis and G@datacenter:ord and G@env:prod' cmd.run 'ps faux | grep [r]edis'
salt -C 'G@node_type:postgres and G@datacenter:ord and G@env:prod' cmd.run 'tail -n15 /etc/postgresql/9.2/main/pg_hba.conf'
salt -C 'G@node_type:postgres and G@datacenter:ord and G@env:prod' cmd.run 'tail -n15 /etc/postgresql/9.2/main/postgresql.conf'
salt -C 'G@datacenter:ord and G@env:prod' cmd.run 'ps faux | grep [n]ew'
salt -C 'G@node_type:web and G@datacenter:ord and G@env:prod' cmd.run 'ps faux | grep [u]ws'
salt -C 'G@node_type:lb and G@datacenter:ord and G@env:prod' cmd.run 'ps faux | grep [n]ginx'
salt -C 'G@node_type:web and G@datacenter:ord and G@env:prod' cmd.run 'tail -n15 /var/log/uwsgi.log'