diff options
author | Lusheng Ji <lji@research.att.com> | 2018-04-16 11:28:56 -0400 |
---|---|---|
committer | Lusheng Ji <lji@research.att.com> | 2018-04-16 11:30:01 -0400 |
commit | 5aef0ad96c07424138659020de4f9c5f011d5c28 (patch) | |
tree | d318d1b7923fe116ee325f1e81cff9b307109ed9 /heat/R2MVP/docker-compose-3.yaml | |
parent | 6a6df9ea6b3c0002acc375b7eefbea8a63ace3f7 (diff) |
Fix TCA preferences URL typo
Also removing files under R2MVP. All files under R2MVP are under the
heat dir now
Issue-ID: DCAEGEN2-434
Change-Id: I69191e81537a84ededcb78aa9d45c4c0e2d659f1
Signed-off-by: Lusheng Ji <lji@research.att.com>
Diffstat (limited to 'heat/R2MVP/docker-compose-3.yaml')
-rw-r--r-- | heat/R2MVP/docker-compose-3.yaml | 82 |
1 files changed, 0 insertions, 82 deletions
diff --git a/heat/R2MVP/docker-compose-3.yaml b/heat/R2MVP/docker-compose-3.yaml deleted file mode 100644 index b65e37c..0000000 --- a/heat/R2MVP/docker-compose-3.yaml +++ /dev/null @@ -1,82 +0,0 @@ -############################################################################# -# -# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -############################################################################# -version: '2.1' -services: - - inventory: - image: "{{ nexus_docker_repo }}/onap/org.onap.dcaegen2.platform.inventory-api:{{ dcae_docker_inv }}" - restart: always - container_name: "inventory" - hostname: "inventory" - environment: - - "POSTGRES_USER=inventory" - - "POSTGRES_PASSWORD=inventorypwd" - ports: - - "8080:8080" - labels: - - "SERVICE_8080_NAME=inventory" - - "SERVICE_8080_CHECK_HTTP=/dcae-service-types" - - "SERVICE_8080_CHECK_INTERVAL=15s" - - "SERVICE_8080_CHECK_INITIAL_STATUS=passing" - - - service-change-handler: - image: "{{ nexus_docker_repo }}/onap/org.onap.dcaegen2.platform.servicechange-handler:{{ dcae_docker_sch }}" - container_name: "service-change-handler" - hostname: "service-change-handler" - ports: - - "8079:8079" - environment: - - "POSTGRES_USER=inventory" - - "POSTGRES_PASSWORD=inventorypwd" - labels: - - "SERVICE_NAME=service_change_handler" - - "SERVICE_CHECK_SCRIPT=/opt/health.sh" - - "SERVICE_CHECK_INTERVAL=15s" - - "SERVICE_CHECK_INITIAL_STATUS=passing" - - - deployment_handler: - image: "{{ nexus_docker_repo }}/onap/org.onap.dcaegen2.platform.deployment-handler:{{ dcae_docker_dh }}" - restart: always - container_name: "deployment-handler" - hostname: "deployment-handler" - environment: - - "CLOUDIFY_PASSWORD=admin" - - "CLOUDIFY_USER=admin" - ports: - - "8188:8443" - labels: - - "SERVICE_8443_NAME=deployment_handler" - - "SERVICE_8443_CHECK_HTTP=/" - - "SERVICE_8443_CHECK_INTERVAL=15s" - - "SERVICE_8443_CHECK_INITIAL_STATUS=passing" - - - policy_handler: - image: "{{ nexus_docker_repo }}/onap/org.onap.dcaegen2.platform.policy-handler:{{ dcae_docker_ph }}" - restart: always - container_name: "policy-handler" - hostname: "policy-handler" - ports: - - "25577:25577" - labels: - - "SERVICE_25577_NAME=policy_handler" - - "SERVICE_25577_CHECK_HTTP=/healthcheck" - - "SERVICE_25577_CHECK_INTERVAL=15s" - - "SERVICE_25577_CHECK_INITIAL_STATUS=passing" - |