ducky/subscriptions

Paddy 2015-09-27 Parent:fe8f092cc149

13:1ff031bebf9e Go to Latest

ducky/subscriptions/replication-controllers/subscriptionsd.json

Add golint comments. Comment on some more of our exported types, functions, and variables, both to make golint happy and because uncommented code never ever ends well.

History
1 {
2 "kind":"ReplicationController",
3 "apiVersion":"v1",
4 "metadata":{
5 "name": "ducky-subscriptionsd",
6 "labels": {
7 "name": "subscriptionsd",
8 "context": "ducky",
9 "repo": "ducky--subscriptionsd",
10 "role": "subscriptions"
11 }
12 },
13 "spec":{
14 "replicas":1,
15 "selector":{
16 "context": "ducky",
17 "name":"subscriptionsd",
18 "repo": "ducky--subscriptionsd",
19 "role": "subscriptions"
20 },
21 "template":{
22 "metadata":{
23 "labels":{
24 "context": "ducky",
25 "name":"subscriptionsd",
26 "repo": "ducky--subscriptionsd",
27 "role": "subscriptions"
28 }
29 },
30 "spec":{
31 "volumes": [
32 {
33 "name": "stripe-volume",
34 "secret": {
35 "secretName": "stripe"
36 }
37 },
38 {
39 "name": "subscriptions-volume",
40 "secret": {
41 "secretName": "subscriptions"
42 }
43 }
44 ],
45 "containers":[
46 {
47 "name":"ducky-subscriptionsd",
48 "image": "ducky/subscriptionsd:latest",
49 "volumeMounts": [
50 {
51 "name": "stripe-volume",
52 "readOnly": true,
53 "mountPath": "/private/kubernetes/stripe"
54 },
55 {
56 "name": "subscriptions-volume",
57 "readOnly": true,
58 "mountPath": "/private/kubernetes/subscriptions"
59 }
60 ],
61 "ports":[
62 {
63 "name": "http",
64 "containerPort":9001
65 }
66 ]
67 }
68 ]
69 }
70 }
71 }
72 }