Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(586)

Side by Side Diff: logdog/appengine/cmd/coordinator/vmuser/module.cfg

Issue 2988083002: [logdog] Begin migrating to Makefile. (Closed)
Patch Set: git checkout view Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Deploy tool Component for the LogDog Coordinator default module.
2 appengine_module <
3 module_name: ""
4 go_module <
5 entry_package: "github.com/luci/luci-go/logdog/appengine/cmd/coordinator/vmu ser"
6 >
7
8 managed_vm <
9 scopes: "https://www.googleapis.com/auth/userinfo.email"
10 scopes: "https://www.googleapis.com/auth/devstorage.full_control"
11 scopes: "https://www.googleapis.com/auth/cloud-platform"
12 scopes: "https://www.googleapis.com/auth/bigtable.data"
13 >
14
15 # Debug endpoints for profiling access.
16 handlers <
17 handler <
18 url: "/debug/*"
19 secure: SECURE_ALWAYS
20 login: LOGIN_ADMIN
21 >
22
23 handler <
24 url: "/.*"
25 secure: SECURE_ALWAYS
26 >
27 >
28
29 resources <
30 # These "query endpoint" indexes support timestamp-based querying. These
31 # should be kept in sync with the indexes in:
32 # logdog/appengine/coordinator/coordinatorTest/context.go
33 index <
34 kind: "LogStream"
35 property <
36 name: "Prefix"
37 >
38 property: <
39 name: "Created"
40 direction: DESCENDING
41 >
42 >
43
44 index <
45 kind: "LogStream"
46 property <
47 name: "Name"
48 >
49 property <
50 name: "Created"
51 direction: DESCENDING
52 >
53 >
54
55 index <
56 kind: "LogStream"
57 property <
58 name: "State"
59 >
60 property <
61 name: "Created"
62 direction: DESCENDING
63 >
64 >
65
66 index <
67 kind: "LogStream"
68 property <
69 name: "Purged"
70 >
71 property <
72 name: "Created"
73 direction: DESCENDING
74 >
75 >
76
77 index <
78 kind: "LogStream"
79 property <
80 name: "ProtoVersion"
81 >
82 property <
83 name: "Created"
84 direction: DESCENDING
85 >
86 >
87
88 index <
89 kind: "LogStream"
90 property <
91 name: "ContentType"
92 >
93 property <
94 name: "Created"
95 direction: DESCENDING
96 >
97 >
98
99 index <
100 kind: "LogStream"
101 property <
102 name: "StreamType"
103 >
104 property <
105 name: "Created"
106 direction: DESCENDING
107 >
108 >
109
110 index <
111 kind: "LogStream"
112 property <
113 name: "Timestamp"
114 >
115 property <
116 name: "Created"
117 direction: DESCENDING
118 >
119 >
120
121 index <
122 kind: "LogStream"
123 property <
124 name: "_C"
125 >
126 property <
127 name: "Created"
128 direction: DESCENDING
129 >
130 >
131
132 index <
133 kind: "LogStream"
134 property <
135 name: "_Tags"
136 >
137 property <
138 name: "Created"
139 direction: DESCENDING
140 >
141 >
142 >
143 >
OLDNEW
« no previous file with comments | « logdog/appengine/cmd/coordinator/vmuser/index.yaml ('k') | logdog/appengine/cmd/coordinator/vmuser/queue.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698