forked from gunjeetgulatigit/nameko-devex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.yml
46 lines (42 loc) · 1.09 KB
/
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
38
39
40
41
42
43
44
45
46
---
defaults: &defaults
buildpacks:
- python_buildpack
memory: 2G
disk_quota: 2G
health-check-type: port
no-route: true
# services:
# - nex-rabbitmq
# - nex-postgres
# - nex-redis
env:
APP_ENV: HelloWorld
# Majestic Monolith - All in One
applications:
- name: nex-nameko-devex
<<: *defaults
no-route: false
health-check-type: port
command: FASTAPI=X ./cf_run.sh products.service orders.service
# command: ./cf_run.sh products.service orders.service gateway.service
# Majestic Microservice (need to uncomment above)
# applications:
# - name: nex-namekoexample
# <<: *defaults
# no-route: false
# health-check-type: port
# memory: 128M
# command: bash ./cf_run.sh gateway.service
# - name: nex-namekoexample-orders
# <<: *defaults
# no-route: true
# health-check-type: process
# memory: 128M
# command: bash ./cf_run.sh orders.service
# - name: nex-namekoexample-products
# <<: *defaults
# no-route: true
# health-check-type: process
# memory: 128M
# command: bash ./cf_run.sh products.service