|
2 | 2 |
|
3 | 3 | # GameOn! Java Microservices deployment on Kubernetes Cluster |
4 | 4 |
|
5 | | -This project demonstrates deployment of a Microservices based application Game On! on to Kubernetes cluster. Game On! is a throwback text-based adventure built to help you explore microservice architectures and related concepts. GameOn! users start by creating a simple room, the building block of any adventure game. A user can create in text a simple room in any one of various languages in just a few minutes. |
| 5 | +This project demonstrates deployment of a Microservices based application [Game On!](https://gameontext.org/#/) on to Kubernetes cluster. Game On! is a throwback text-based adventure built to help you explore microservice architectures and related concepts. GameOn! users start by creating a simple room, the building block of any adventure game. A user can create in text a simple room in any one of various languages in just a few minutes. |
6 | 6 |
|
7 | 7 | There are several microservices used in this app |
8 | 8 |
|
9 | 9 | ### Core MicroServices: |
10 | 10 |
|
11 | 11 | - [Proxy](https://github.com/gameontext/gameon-proxy): HAProxy based, and is responsible for surfacing the collection of APIs as a single facade for the entire application. |
12 | 12 | - [WebApp](https://github.com/gameontext/gameon-webapp): Webapp is a simple nginx process that serves the static files that comprise the front-end of the UI. |
| 13 | + |
| 14 | +#####Java MicroServices |
| 15 | + |
| 16 | +The five main Java microservices are: |
| 17 | + |
13 | 18 | - [Player](https://github.com/gameontext/gameon-player): Players, are represented by the player Java microservice service, which provides a public API for CRUD operations, and for managing API tokens. |
14 | 19 | - [Auth](https://github.com/gameontext/gameon-auth): Java microservice to allow players to connect and identify themselves via a selected "social login" |
15 | | -- [Mediator](https://github.com/gameontext/gameon-mediator)**: The Mediator service is implemented in Java using WebSphere Liberty, and connects players to rooms over Websockets |
| 20 | +- [Mediator](https://github.com/gameontext/gameon-mediator): The Mediator service is implemented in Java using WebSphere Liberty, and connects players to rooms over Websockets |
16 | 21 | - [Map](https://github.com/gameontext/gameon-map): The Map service is a Java EE application running on WebSphere Liberty that provides a public REST API using JAX-RS. It stores data in a NoSQL data store, either couchdb or Cloudant |
17 | 22 | - [Room](https://github.com/gameontext/gameon-room): Java based room implementation |
18 | 23 |
|
19 | 24 | ### Platform Services: |
20 | | -- [Amalgam8](https://www.amalgam8.io/): Amalgam8 supplies Registry, and a Controller, via which it implements the Service Discovery, and Service Proxying |
| 25 | + |
| 26 | +- [Amalgam8](https://www.amalgam8.io/): Content-based Routing Fabric for Polyglot Microservices. Amalgam8 supplies Registry, and a Controller, via which it implements the Service Discovery, and Service Proxying |
21 | 27 | - [Kafka](https://kafka.apache.org): Publish/Subscribe solution used by Amalgam8 |
22 | 28 |
|
23 | 29 | Everything would be hosted on a Kubernetes Cluster where you can access your own GameOn app from anywhere. |
|
0 commit comments