-
Notifications
You must be signed in to change notification settings - Fork 90
/
manifest.yml
45 lines (41 loc) · 1.02 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
---
defaults: &defaults
buildpacks:
- python_buildpack
memory: 256M
disk_quota: 4G
health-check-type: process
no-route: true
services:
- nex-rabbitmq
- nex-postgres
- nex-redis
env:
APP_ENV: HelloWorld
# Majestic Monolith - All in One
applications:
- name: nex-namekoexample
<<: *defaults
no-route: false
health-check-type: port
command: bash ./run.sh gateway.service products.service orders.service
# Majestic Microservice (need to uncomment above)
# applications:
# - name: nex-namekoexample
# <<: *defaults
# no-route: false
# health-check-type: port
# memory: 128M
# command: bash ./run.sh gateway.service
# - name: nex-namekoexample-orders
# <<: *defaults
# no-route: true
# health-check-type: process
# memory: 128M
# command: bash ./run.sh orders.service
# - name: nex-namekoexample-products
# <<: *defaults
# no-route: true
# health-check-type: process
# memory: 128M
# command: bash ./run.sh products.service