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

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: rebased Created 4 years, 7 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
« no previous file with comments | « appengine/swarming/handlers_endpoints_test.py ('k') | appengine/swarming/proto/config_pb2.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/swarming/proto/config.proto
diff --git a/appengine/swarming/proto/config.proto b/appengine/swarming/proto/config.proto
index f14cd2b2e44e3f5bb8b4cef262cb0a448f75d321..b0406e9d3254eb97587cfa82757623fcac82f5e6 100644
--- a/appengine/swarming/proto/config.proto
+++ b/appengine/swarming/proto/config.proto
@@ -17,4 +17,19 @@ 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 {
+ // URL of the default isolate server to use if it is not specified in a
+ // task. Must start with "https://" or "http://".
+ // e.g. "https://isolateserver.appspot.com"
+ optional string default_server = 1;
+
+ // Default namespace to use if it is not specified in a task,
+ // e.g. "default-gzip"
+ optional string default_namespace = 2;
}
« no previous file with comments | « appengine/swarming/handlers_endpoints_test.py ('k') | appengine/swarming/proto/config_pb2.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698