-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml
28 lines (27 loc) · 974 Bytes
/
config.yaml
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
---
configs:
use: 'testing'
testing:
# virtual machines ip addresses
billing_vm_addr: 192.168.56.10
inventory_vm_addr: 192.168.56.20
gateway_vm_addr: 192.168.56.30
# virtual machines resources
billing_vm_cpu: 1
inventory_vm_cpu: 1
gateway_vm_cpu: 1
billing_vm_memory: '2048'
inventory_vm_memory: '1024'
gateway_vm_memory: '1024'
# virtual machine names
billing_vm: 'BillingVM'
inventory_vm: 'InventoryVM'
gateway_vm: 'GatewayVM'
# applications path inside the solution folder
billing_app_src: './srcs/billing-app'
inventory_app_src: './srcs/inventory-app'
apigateway_app_src: './srcs/api-gateway-app'
# applications path inside the virtual machine
billing_app_path: '/apps/billing-app'
inventory_app_path: '/apps/inventory-app'
apigateway_app_path: '/apps/api-gateway-app'