-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.yml
37 lines (33 loc) · 959 Bytes
/
manifest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
defaults: &defaults
timeout: 120
memory: 768M
disk_quota: 2G
path: .
stack: cflinuxfs2
buildpack: https://github.com/cloudfoundry/buildpack-python.git
services:
- Feedcrunch-DB-Prod
- RabbitMQ-Prod
- Redis-Prod
applications:
- name: Feedcrunch-Front-Prod
<<: *defaults
routes:
- route: www.feedcrunch.io
- route: feedcrunch.eu-gb.mybluemix.net
- route: feedcrunch-api-prod.eu-gb.mybluemix.net
instances: 2
command: chmod +x ./scripts/bluemix/launch_server.sh && ./scripts/bluemix/launch_server.sh
- name: Feedcrunch-Orchester-Prod
<<: *defaults
memory: 1G
instances: 1
command: chmod +x ./scripts/bluemix/launch_orchester.sh && ./scripts/bluemix/launch_orchester.sh
health-check-type: process
no-route: true
- name: Feedcrunch-Worker-Prod
<<: *defaults
instances: 3
command: chmod +x ./scripts/bluemix/launch_worker.sh && ./scripts/bluemix/launch_worker.sh
health-check-type: process
no-route: true