devops stuff
This commit is contained in:
parent
810845441c
commit
d68c6f1d4e
2
Vagrantfile
vendored
2
Vagrantfile
vendored
|
@ -12,6 +12,6 @@ end
|
||||||
|
|
||||||
Vagrant::Config.run do |config|
|
Vagrant::Config.run do |config|
|
||||||
config.vm.forward_port 80, 8000
|
config.vm.forward_port 80, 8000
|
||||||
|
config.vm.forward_port 5432, 5432
|
||||||
config.vm.forward_port 10000, 10000
|
config.vm.forward_port 10000, 10000
|
||||||
config.vm.forward_port 20000, 20000
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -19,4 +19,5 @@ rethinkdb==1.10.0-0
|
||||||
simplejson==3.3.0
|
simplejson==3.3.0
|
||||||
sockjs-tornado==1.0.0
|
sockjs-tornado==1.0.0
|
||||||
supervisor==3.0
|
supervisor==3.0
|
||||||
|
SQLAlchemy==0.8.3
|
||||||
tornado==3.1.1
|
tornado==3.1.1
|
|
@ -1,18 +1,26 @@
|
||||||
redis-lea-repo:
|
redis-lea-repo:
|
||||||
pkgrepo.managed:
|
pkgrepo.managed:
|
||||||
- name: 'deb http://ppa.launchpad.net/chris-lea/redis-server/ubuntu precise main'
|
- ppa: chris-lea/redis-server
|
||||||
|
- required_in: redis-server
|
||||||
|
|
||||||
nodejs-lea-repo:
|
nodejs-lea-repo:
|
||||||
pkgrepo.managed:
|
pkgrepo.managed:
|
||||||
- name: 'deb http://ppa.launchpad.net/chris-lea/node.js/ubuntu precise main'
|
- ppa: chris-lea/node.js
|
||||||
|
|
||||||
python-redis-lea-repo:
|
python-redis-lea-repo:
|
||||||
pkgrepo.managed:
|
pkgrepo.managed:
|
||||||
- name: 'deb http://ppa.launchpad.net/chris-lea/python-redis/ubuntu precise main'
|
- ppa: chris-lea/python-redis
|
||||||
|
|
||||||
nginx-stable-repo:
|
nginx-stable-repo:
|
||||||
pkgrepo.managed:
|
pkgrepo.managed:
|
||||||
- name: 'deb http://ppa.launchpad.net/nginx/stable/ubuntu precise main'
|
- ppa: nginx/stable
|
||||||
|
- required_in: nginx
|
||||||
|
|
||||||
|
postgres-repo:
|
||||||
|
pkgrepo.managed:
|
||||||
|
- name: deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main
|
||||||
|
- key_url: https://www.postgresql.org/media/keys/ACCC4CF8.asc
|
||||||
|
- required_in: postgresql
|
||||||
|
|
||||||
common-pkgs:
|
common-pkgs:
|
||||||
pkg.installed:
|
pkg.installed:
|
||||||
|
@ -41,3 +49,4 @@ common-pkgs:
|
||||||
- pkgrepo.managed: redis-lea-repo
|
- pkgrepo.managed: redis-lea-repo
|
||||||
- pkgrepo.managed: python-redis-lea-repo
|
- pkgrepo.managed: python-redis-lea-repo
|
||||||
- pkgrepo.managed: nginx-stable-repo
|
- pkgrepo.managed: nginx-stable-repo
|
||||||
|
- pkgrepo.managed: postgres-repo
|
16
srv/salt/postgres/init.sls
Normal file
16
srv/salt/postgres/init.sls
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
postgresql:
|
||||||
|
pkg.installed:
|
||||||
|
- name: postgresql-9.3
|
||||||
|
|
||||||
|
|
||||||
|
createdb:
|
||||||
|
cmd.run:
|
||||||
|
- name: createdb -T template1 realms
|
||||||
|
- user: postgres
|
||||||
|
- require:
|
||||||
|
- pkg.installed: postgresql-9.3
|
||||||
|
|
||||||
|
initdb:
|
||||||
|
cmd.run:
|
||||||
|
- name: psql realms < /srv/salt/postgres/init.sql
|
||||||
|
- user: postgres
|
26
srv/salt/postgres/init.sql
Normal file
26
srv/salt/postgres/init.sql
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
DROP TABLE IF EXISTS users;
|
||||||
|
CREATE TABLE users (
|
||||||
|
id SERIAL,
|
||||||
|
username VARCHAR(100),
|
||||||
|
password VARCHAR(255),
|
||||||
|
email VARCHAR(255),
|
||||||
|
joined TIMESTAMP
|
||||||
|
);
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS sites;
|
||||||
|
CREATE TABLE sites (
|
||||||
|
name VARCHAR(255),
|
||||||
|
pages INT,
|
||||||
|
views INT,
|
||||||
|
created TIMESTAMP
|
||||||
|
);
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS pages;
|
||||||
|
CREATE TABLE pages (
|
||||||
|
id VARCHAR(255), -- <site name>/<path>
|
||||||
|
edits INT,
|
||||||
|
views INT,
|
||||||
|
author INT,
|
||||||
|
created TIMESTAMP,
|
||||||
|
modified TIMESTAMP
|
||||||
|
);
|
|
@ -14,6 +14,7 @@ virtualenvwrapper:
|
||||||
|
|
||||||
bower:
|
bower:
|
||||||
npm.installed:
|
npm.installed:
|
||||||
|
- user: root
|
||||||
- require:
|
- require:
|
||||||
- pkg.installed: common-pkgs
|
- pkg.installed: common-pkgs
|
||||||
|
|
||||||
|
@ -26,3 +27,9 @@ realms-repo:
|
||||||
- user: deploy
|
- user: deploy
|
||||||
- identity: /home/deploy/.ssh/id_rsa
|
- identity: /home/deploy/.ssh/id_rsa
|
||||||
|
|
||||||
|
/home/deploy/virtualenvs/realms:
|
||||||
|
virtualenv.managed:
|
||||||
|
- requirements: /home/deploy/realms/requirements.txt
|
||||||
|
- cwd: /home/deploy/realms
|
||||||
|
- runas: deploy
|
||||||
|
|
||||||
|
|
|
@ -2,9 +2,8 @@ base:
|
||||||
'*':
|
'*':
|
||||||
- common
|
- common
|
||||||
- users
|
- users
|
||||||
- nodejs
|
|
||||||
- redis
|
- redis
|
||||||
- nginx
|
- nginx
|
||||||
- rethinkdb
|
- postgres
|
||||||
- realms
|
- realms
|
||||||
- supervisor
|
- supervisor
|
|
@ -42,3 +42,5 @@ bashrc-append:
|
||||||
file.append:
|
file.append:
|
||||||
- name: /home/deploy/.bashrc
|
- name: /home/deploy/.bashrc
|
||||||
- text: . ~/.bash_profile
|
- text: . ~/.bash_profile
|
||||||
|
- user: deploy
|
||||||
|
- group: deploy
|
Loading…
Reference in a new issue