The API-Gateway is a microservices architectural pattern. For more information about this pattern, visit: http://microservices.io/patterns/apigateway.html
$ git clone https://github.com/redhat-helloworld-msa/api-gateway $ cd api-gateway/ $ oc new-build --binary --name=api-gateway -l app=api-gateway $ mvn package; oc start-build api-gateway --from-dir=. --follow $ oc new-app api-gateway -l app=api-gateway,hystrix.enabled=true $ oc expose service api-gateway
$ oc set env dc/api-gateway AB_ENABLED=jolokia; oc patch dc/api-gateway -p '{"spec":{"template":{"spec":{"containers":[{"name":"api-gateway","ports":[{"containerPort": 8778,"name":"jolokia"}]}]}}}}' $ oc set probe dc/api-gateway --readiness --get-url=http://:8080/health