Skip to content

Commit cd28bd3

Browse files
authored
Merge pull request #513 from CodeNow/add-big-poppa
Add big-poppa stuff
2 parents d7e8cb4 + 65128d6 commit cd28bd3

File tree

19 files changed

+205
-1
lines changed

19 files changed

+205
-1
lines changed

ansible/api-core.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
- hosts: charon
55
- hosts: rabbitmq
66
- hosts: redis
7+
- hosts: big-poppa
78
- hosts: swarm-manager
89
- hosts: consul
910

ansible/big-poppa-http.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
- hosts: rabbitmq
3+
- hosts: consul
4+
- hosts: mongodb
5+
- hosts: github-varnish
6+
7+
- hosts: big-poppa
8+
vars_files:
9+
- group_vars/alpha-big-poppa-http.yml
10+
roles:
11+
- role: notify
12+
rollbar_token: "{{ big_poppa_http_rollbar_token }}"
13+
tags: [ notify ]
14+
- { role: builder, tags: [ build ] }
15+
- { role: container_kill_start }

ansible/big-poppa-worker.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
- hosts: rabbitmq
3+
- hosts: consul
4+
- hosts: mongodb
5+
- hosts: github-varnish
6+
7+
- hosts: big-poppa
8+
vars_files:
9+
- group_vars/alpha-big-poppa-worker.yml
10+
roles:
11+
- role: notify
12+
rollbar_token: "{{ big_poppa_worker_rollbar_token }}"
13+
tags: [ notify ]
14+
- { role: builder, tags: [ build ] }
15+
- { role: container_kill_start }

ansible/big-poppa.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- include: big-poppa-http.yml
2+
- include: big-poppa-worker.yml

ansible/delta-hosts/hosts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,13 @@ delta-app-services
113113
[github-varnish]
114114
delta-app-services
115115

116+
[big-poppa]
117+
delta-app-services
118+
116119
[delta:children]
117120
api
118121
bastion
122+
big-poppa
119123
charon
120124
consul
121125
dock

ansible/delta-hosts/variables

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,20 @@ api_s3_context_bucket=runnable.context.resources.production
1515
api_intercom_app_id=wqzm3rju
1616
api_intercom_api_key=46e75ada5d21f248787689b35fe80e11efe9303a
1717

18+
[big-poppa:vars]
19+
big_poppa_pg_pass=189a4a90-60d9-11e6-92c9-7b1a5b7c8417
20+
big_poppa_pg_host=delta-big-poppa.cnksgdqarobf.us-west-2.rds.amazonaws.com
21+
big_poppa_pg_port=5432
22+
big_poppa_pg_user=cwallace
23+
big_poppa_github_token=e11a1264130fb62ce045bf03118bf123f980c205
24+
big_poppa_http_rollbar_token=1f1eeea0b1334aaeb50fb7bc4a43241a
25+
big_poppa_worker_rollbar_token=98cabb8440024e3a8242cf3220b802c9
26+
big_poppa_intercom_key=0df3322fda46a34e93ba6a43603a8fc3ef740d84
27+
big_poppa_intercom_id=wqzm3rju
28+
big_poppa_mongo_auth=api:72192e5a-a5e1-11e5-add9-0270db32f7ad
29+
big_poppa_mongo_database=delta
30+
big_poppa_mongo_replset_name=delta-rs0
31+
1832
[docks:vars]
1933
docker_config=docks
2034
docks_rollbar_key=d1af6567ed0f464fb1d676f38fd31751

ansible/epsilon-hosts/hosts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ socket-server
1818
[api]
1919
epsilon-api
2020

21+
[big-poppa]
22+
epsilon-app-services
23+
2124
[consul]
2225
epsilon-consul-a
2326
epsilon-consul-b
@@ -107,6 +110,7 @@ epsilon-app-services
107110
[epsilon:children]
108111
api
109112
bastion
113+
big-poppa
110114
charon
111115
consul
112116
dock

ansible/epsilon-hosts/variables

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ api_rollbar_key=a90d9c262c7c48cfabbd32fd0a1bc61c
1212
api_workers_rollbar_key=3edfe8fe4fd640ae9fdbbe08fcb9f121
1313
api_s3_context_bucket=runnable.context.resources.production-beta
1414

15+
[big-poppa:vars]
16+
big_poppa_pg_pass=
17+
big_poppa_pg_host=
18+
big_poppa_github_token=e11a1264130fb62ce045bf03118bf123f980c205
19+
big_poppa_http_rollbar_token=1f1eeea0b1334aaeb50fb7bc4a43241a
20+
big_poppa_worker_rollbar_token=98cabb8440024e3a8242cf3220b802c9
21+
1522
[docks:vars]
1623
docker_config=docks
1724
docks_rollbar_key=d1af6567ed0f464fb1d676f38fd31751

ansible/eru.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
- hosts: mongodb
44
- hosts: redis
55
- hosts: rabbitmq
6+
- hosts: big-poppa
67
- hosts: socket-server-proxy
78

89
- hosts: eru

ansible/gamma-hosts/hosts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ socket-server
2020
[api]
2121
gamma-api
2222

23+
[big-poppa]
24+
gamma-app-services
25+
2326
[consul]
2427
gamma-consul-a
2528
gamma-consul-b

0 commit comments

Comments
 (0)