summaryrefslogtreecommitdiffstats
path: root/platformdoc/docs/architecture/service-discovery.md
diff options
context:
space:
mode:
authorVENKATESH KUMAR <vv770d@att.com>2020-04-02 23:39:28 -0400
committerVENKATESH KUMAR <vv770d@att.com>2020-04-02 23:48:26 -0400
commitc790dcb3bbd3c498e0f838837c212ce185e70da5 (patch)
treecbde7e82480efbdc3a26844e2e03bf4806aeaaa8 /platformdoc/docs/architecture/service-discovery.md
parentcfb11090aa5fbcb7d38870cdeeb7c21e48b077df (diff)
dcae doc cleanup
Remove old markdown platform doc Change-Id: I592775a24d17d7d786708cde008703f4d899946c Signed-off-by: VENKATESH KUMAR <vv770d@att.com> Issue-ID: DCAEGEN2-1891 Signed-off-by: VENKATESH KUMAR <vv770d@att.com>
Diffstat (limited to 'platformdoc/docs/architecture/service-discovery.md')
-rw-r--r--platformdoc/docs/architecture/service-discovery.md15
1 files changed, 0 insertions, 15 deletions
diff --git a/platformdoc/docs/architecture/service-discovery.md b/platformdoc/docs/architecture/service-discovery.md
deleted file mode 100644
index 9831efcf..00000000
--- a/platformdoc/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.