summaryrefslogtreecommitdiffstats
path: root/heat/R2MVP/docker-compose-2.yaml
blob: 57bdd3f09d4d84d6c5d45216c08a9bc55680a9df (plain)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
version: '2.1'
services:
   ves:
      image: {{ nexus_docker_repo }}/onap/org.onap.dcaegen2.collectors.ves.vescollector:1.2.0
      container_name: "ves"
      hostname: "ves"
      environment:
       - DMAAPHOST={{ mr_ip_addr }}
       - CONSUL_HOST=consul
       - CONSUL_PORT=8500
       - CONFIG_BINDING_SERVICE=config_binding_service
       - SERVICE_NAME=ves
       - HOSTNAME=ves
      ports:
       - "8080:8080"
       - "8443:8443"

   tca:
      image: {{ nexus_docker_repo }}/onap/org.onap.dcaegen2.deployments.tca-cdap-container:1.0.0
      container_name: tca
      hostname: tca
      environment:
       - DMAAPHOST={{ mr_ip_addr }}
       - DMAAPPORT=3904
       - DMAAPPUBTOPIC=unauthenticated.TCA_EVENT_OUTPUT
       - DMAAPSUBTOPIC=unauthenticated.SEC_MEASUREMENT_OUTPUT
       - AAIHOST={{ aai1_ip_addr }}
       - AAIPORT=8443
       - CONSUL_HOST=consul
       - CONSUL_PORT=8500
       - CBS_HOST=cbs
       - CBS_PORT=10000
       - SERVICE_NAME=tca
       - CONFIG_BINDING_SERVICE=config_binding_service
       # set the parameter below to enable REDIS caching. 
       #- REDISHOSTPORT=redis-cluster:6379
      ports:
       - "11011:11011"
       - "11015:11015"

   holmes-engine:
      image: {{ nexus_docker_repo }}/onap/holmes/engine-management:latest
      container_name: he
      hostname: he
      environment:
       - URL_JDBC=db:5432
       - JDBC_USERNAME=holmes
       - JDBC_PASSWORD=holmespwd
       - MSB_ADDR={{ msb_ip_addr }}
       - CONSUL_HOST=consul
       - CONSUL_PORT=8500
       - HOSTNAME=he
      ports:
       - "9102:9102"

   holmes-rule:
      image: {{ nexus_docker_repo }}/onap/holmes/rule-management:latest
      container_name: hr
      hostname: hr
      environment:
       - URL_JDBC=db:5432
       - JDBC_USERNAME=holmes
       - JDBC_PASSWORD=holmespwd
       - MSB_ADDR={{ msb_ip_addr }}
       - CONSUL_HOST=consul
       - CONSUL_PORT=8500
       - HOSTNAME=hr
      ports:
       - "9101:9101"