diff options
author | Lusheng Ji <lji@research.att.com> | 2018-04-03 10:12:20 -0400 |
---|---|---|
committer | Lusheng Ji <lji@research.att.com> | 2018-04-03 10:12:29 -0400 |
commit | e38070d498938a65d354c9bfb29372815a2f9da1 (patch) | |
tree | c1788552c7dd281b1ed85bca331e3889aa0472c3 /heat | |
parent | 53f311061281ebb6de118a92620e3de6e0a1c56c (diff) |
Add Heat MVP deployment artifact
Issue-ID: DCAEGEN2-206
Change-Id: Id37c00b38218940c6c9095e8941f7bbfc63edacb
Signed-off-by: Lusheng Ji <lji@research.att.com>
Diffstat (limited to 'heat')
-rw-r--r-- | heat/R2MVP/docker-compose.yaml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/heat/R2MVP/docker-compose.yaml b/heat/R2MVP/docker-compose.yaml new file mode 100644 index 0000000..e05667d --- /dev/null +++ b/heat/R2MVP/docker-compose.yaml @@ -0,0 +1,22 @@ +version: '2' +services: + db: + image: postgres + ports: + - "5432:5432" + environment: + POSTGRES_USER: "user" + POSTGRES_PASSWORD: "pass" + ves: + image: {{ nexus_docker_repo }}/onap/org.onap.dcaegen2.collectors.ves.vescollector:1.2.0 + expose: + - 8080 + 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 }} + expose: + - 11011 + |