Last active
August 29, 2015 14:03
-
-
Save rochacon/7c0789c8a1b53ec58d43 to your computer and use it in GitHub Desktop.
Sample of load balanced Deis app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% http GET http://example-app.d.rochacon.me | |
HTTP/1.1 200 OK | |
Connection: keep-alive | |
Content-Length: 32 | |
Content-Type: text/html; charset=UTF-8 | |
Date: Fri, 11 Jul 2014 15:17:31 GMT | |
Server: nginx/1.6.0 | |
X-Deis-Upstream: 10.13.0.134:49153 | |
69b0ee40084e4efdae5d2f9ddfbbfc49 | |
% http GET http://example-app.d.rochacon.me | |
HTTP/1.1 200 OK | |
Connection: keep-alive | |
Content-Length: 32 | |
Content-Type: text/html; charset=UTF-8 | |
Date: Fri, 11 Jul 2014 15:17:35 GMT | |
Server: nginx/1.6.0 | |
X-Deis-Upstream: 10.13.0.134:49154 | |
fa6083b5014644fda6f4024c3aa50204 | |
% fleetctl list-units | |
UNIT STATE LOAD ACTIVE SUB DESC MACHINE | |
deis-builder.service launched loaded active running deis-builder b533a9c9.../10.13.0.134 | |
deis-cache.service launched loaded active running deis-cache b533a9c9.../10.13.0.134 | |
deis-controller.service launched loaded active running deis-controller ffe60615.../10.13.0.132 | |
deis-database.service launched loaded active running deis-database ffe60615.../10.13.0.132 | |
deis-logger.service launched loaded active running deis-logger ffe60615.../10.13.0.132 | |
deis-registry.service launched loaded active running deis-registry ffe60615.../10.13.0.132 | |
deis-router.1.service launched loaded active running deis-router b533a9c9.../10.13.0.134 | |
example-app_v3.web.1-announce.service launched loaded active running example-app_v3.web.1 announce b533a9c9.../10.13.0.134 | |
example-app_v3.web.1-log.service launched loaded active running example-app_v3.web.1 log b533a9c9.../10.13.0.134 | |
example-app_v3.web.1.service launched loaded active running example-app_v3.web.1 b533a9c9.../10.13.0.134 | |
example-app_v3.web.2-announce.service launched loaded active running example-app_v3.web.2 announce b533a9c9.../10.13.0.134 | |
example-app_v3.web.2-log.service launched loaded active running example-app_v3.web.2 log b533a9c9.../10.13.0.134 | |
example-app_v3.web.2.service launched loaded active running example-app_v3.web.2 b533a9c9.../10.13.0.134 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment