-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.yml
55 lines (51 loc) · 1.2 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
47
48
49
50
51
52
53
54
55
---
defaults: &defaults
stack: cflinuxfs3
disk_quota: 512M
memory: 256M
health-check-type: http
health-check-http-endpoint: /healthcheck
applications:
- name: ((api_gateway))
<<: *defaults
instances: ((instances))
buildpacks:
- binary_buildpack
memory: 1G
routes:
- route: ((api_gateway)).((external_domain))
health-check-type: port
health-check-http-endpoint: null
command: ./entrypoint.sh
path: ./api-gateway
- name: ((users_api))
<<: *defaults
instances: ((instances))
buildpacks:
- https://github.com/cloudfoundry/python-buildpack.git
routes:
- route: ((users_api)).((internal_domain))
services:
- ((postgres_instance_name))
path: ./users-api
- name: ((guids_api))
<<: *defaults
instances: ((instances))
buildpacks:
- https://github.com/cloudfoundry/python-buildpack.git
routes:
- route: ((guids_api)).((internal_domain))
path: ./guids-api
- name: ((product_api))
<<: *defaults
instances: ((instances))
buildpacks:
- https://github.com/cloudfoundry/python-buildpack.git
routes:
- route: ((product_api)).((internal_domain))
path: ./product-api
services:
- ((s3_instance_name))
- ((redis_instance_name))
env:
CONFIG_ENV: production