auth
2015-07-18
Parent:fc68085eb40d
auth/services/authd.json
Send events when logins are verified. Add an ActionLoginVerified constant to use as the action when a login has been verified. On second thought, this should probably just be "verified", huh? Then we can reuse it across models. Oops. We also added a call to send a login verified event to NSQ when the login is verified.
1 {
2 "kind":"Service",
3 "apiVersion":"v1",
4 "metadata":{
5 "name":"ducky-authd",
6 "labels":{
7 "name":"authd",
8 "context": "ducky",
9 "repo": "secondbit--authd",
10 "role": "auth"
11 }
12 },
13 "spec":{
14 "ports": [
15 {
16 "name": "http",
17 "port": 80,
18 "targetPort": "http"
19 }
20 ],
21 "selector":{
22 "name":"authd",
23 "context": "ducky",
24 "repo": "secondbit--authd",
25 "role": "auth"
26 },
27 "type": "LoadBalancer"
28 }
29 }