summaryrefslogtreecommitdiffstats
path: root/docs/architecture
diff options
context:
space:
mode:
authorLusheng Ji <lji@research.att.com>2017-09-11 23:38:09 +0000
committerLusheng Ji <lji@research.att.com>2017-09-12 01:42:11 +0000
commit1694802295e445771fe32bd3a14fefb53e3ab9fa (patch)
tree143e17efc193611ed1795e4c77ca2fdef028c818 /docs/architecture
parent64472de4c2e2acc7bf883a3e8267ad5aa38e2cb0 (diff)
Make platformdoc docker container
Issue-Id: DCAEGEN2-60 Change-Id: Id57ab539707a43883ff957a23d2459a9b12df22e Signed-off-by: Lusheng Ji <lji@research.att.com>
Diffstat (limited to 'docs/architecture')
-rw-r--r--docs/architecture/pieces.md7
-rw-r--r--docs/architecture/service-discovery.md15
2 files changed, 0 insertions, 22 deletions
diff --git a/docs/architecture/pieces.md b/docs/architecture/pieces.md
deleted file mode 100644
index 7787359f..00000000
--- a/docs/architecture/pieces.md
+++ /dev/null
@@ -1,7 +0,0 @@
-# Platform technologies
-
-* [Cloudify](http://getcloudify.org/)
-* [Consul](https://www.consul.io/)
-* [Docker](https://www.docker.com/)
-* [CDAP](https://cdap.io/)
-* [Registrator](https://github.com/gliderlabs/registrator)
diff --git a/docs/architecture/service-discovery.md b/docs/architecture/service-discovery.md
deleted file mode 100644
index 25d69fcf..00000000
--- a/docs/architecture/service-discovery.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# Service Discovery
-
-Service discovery is an architecture pattern used for components (micro-services) to locate each other. The DCAE platform uses [server-side discovery](http://microservices.io/patterns/server-side-discovery.html) and is using [Consul](https://www.consul.io/) as the service registry solution.
-
-## Service registration
-
-All components are required to register with Consul in order to be discovered. There are two methods of registration: self and 3rd party. The DCAE platform uses 3rd party registration which means components don't actually make the registration calls but defers that responsibility to a platform service.
-
-### Implementation for Docker
-
-[Registrator](http://gliderlabs.com/registrator/latest/) is an open source application that is responsible for registering all components that run as Docker containers. Registrator watches the local Docker engine's activity log and will register and unregister a Docker container when the container is started and stopped.
-
-### Implementation for CDAP
-
-The CDAP broker is a REST web service that is responsible for registering all components that run as CDAP applications.