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

Unified Diff: appengine/swarming/proto/config.proto

Issue 1942143002: swarming: isolate defaults (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@swarming-ns-re
Patch Set: swarming: isolate defaults and output Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: appengine/swarming/proto/config.proto
diff --git a/appengine/swarming/proto/config.proto b/appengine/swarming/proto/config.proto
index f14cd2b2e44e3f5bb8b4cef262cb0a448f75d321..85119b76da23ed195767f8cda795c1b877dc4771 100644
--- a/appengine/swarming/proto/config.proto
+++ b/appengine/swarming/proto/config.proto
@@ -17,4 +17,18 @@ message SettingsCfg {
// Enable ts_mon based monitoring.
optional bool enable_ts_monitoring = 4;
+
+ // Configuration for swarming-isolate integration.
+ optional IsolateSettings isolate = 5;
+}
+
+// Configuration for swarming-isolate integration.
+message IsolateSettings {
+ // Default isolate server host to use if it is not specified in a task,
+ // e.g. "isolateserver.appspot.com"
M-A Ruel 2016/05/10 15:27:41 have it include the protocol
nodir 2016/05/10 18:49:49 Done.
+ optional string default_server_host = 1;
M-A Ruel 2016/05/10 15:27:40 default_server
nodir 2016/05/10 18:49:49 Done.
+
+ // Default namespace to use if it is not specified in a task,
+ // e.g. "default-gzip"
+ optional string default_namespace = 2;
}

Powered by Google App Engine
This is Rietveld 408576698