18562: Rename config to AlwaysUsePreemptibleInstances.
[arvados.git] / lib / config / config.default.yml
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 # Do not use this file for site configuration. Create
6 # /etc/arvados/config.yml instead.
7 #
8 # The order of precedence (highest to lowest):
9 # 1. Legacy component-specific config files (deprecated)
10 # 2. /etc/arvados/config.yml
11 # 3. config.default.yml
12
13 Clusters:
14   xxxxx:
15     # Token used internally by Arvados components to authenticate to
16     # one another. Use a string of at least 50 random alphanumerics.
17     SystemRootToken: ""
18
19     # Token to be included in all healthcheck requests. Disabled by default.
20     # Server expects request header of the format "Authorization: Bearer xxx"
21     ManagementToken: ""
22
23     Services:
24
25       # In each of the service sections below, the keys under
26       # InternalURLs are the endpoints where the service should be
27       # listening, and reachable from other hosts in the
28       # cluster. Example:
29       #
30       # InternalURLs:
31       #   "http://host1.example:12345": {}
32       #   "http://host2.example:12345": {}
33
34       RailsAPI:
35         InternalURLs: {SAMPLE: {}}
36         ExternalURL: ""
37       Controller:
38         InternalURLs: {SAMPLE: {}}
39         ExternalURL: ""
40       Websocket:
41         InternalURLs: {SAMPLE: {}}
42         ExternalURL: ""
43       Keepbalance:
44         InternalURLs: {SAMPLE: {}}
45         ExternalURL: ""
46       GitHTTP:
47         InternalURLs: {SAMPLE: {}}
48         ExternalURL: ""
49       GitSSH:
50         InternalURLs: {SAMPLE: {}}
51         ExternalURL: ""
52       DispatchCloud:
53         InternalURLs: {SAMPLE: {}}
54         ExternalURL: ""
55       DispatchLSF:
56         InternalURLs: {SAMPLE: {}}
57         ExternalURL: ""
58       Keepproxy:
59         InternalURLs: {SAMPLE: {}}
60         ExternalURL: ""
61       WebDAV:
62         InternalURLs: {SAMPLE: {}}
63         # Base URL for Workbench inline preview.  If blank, use
64         # WebDAVDownload instead, and disable inline preview.
65         # If both are empty, downloading collections from workbench
66         # will be impossible.
67         #
68         # It is important to properly configure the download service
69         # to migitate cross-site-scripting (XSS) attacks.  A HTML page
70         # can be stored in collection.  If an attacker causes a victim
71         # to visit that page through Workbench, it will be rendered by
72         # the browser.  If all collections are served at the same
73         # domain, the browser will consider collections as coming from
74         # the same origin and having access to the same browsing data,
75         # enabling malicious Javascript on that page to access Arvados
76         # on behalf of the victim.
77         #
78         # This is mitigating by having separate domains for each
79         # collection, or limiting preview to circumstances where the
80         # collection is not accessed with the user's regular
81         # full-access token.
82         #
83         # Serve preview links using uuid or pdh in subdomain
84         # (requires wildcard DNS and TLS certificate)
85         #   https://*.collections.uuid_prefix.arvadosapi.com
86         #
87         # Serve preview links using uuid or pdh in main domain
88         # (requires wildcard DNS and TLS certificate)
89         #   https://*--collections.uuid_prefix.arvadosapi.com
90         #
91         # Serve preview links by setting uuid or pdh in the path.
92         # This configuration only allows previews of public data or
93         # collection-sharing links, because these use the anonymous
94         # user token or the token is already embedded in the URL.
95         # Other data must be handled as downloads via WebDAVDownload:
96         #   https://collections.uuid_prefix.arvadosapi.com
97         #
98         ExternalURL: ""
99
100       WebDAVDownload:
101         InternalURLs: {SAMPLE: {}}
102         # Base URL for download links. If blank, serve links to WebDAV
103         # with disposition=attachment query param.  Unlike preview links,
104         # browsers do not render attachments, so there is no risk of XSS.
105         #
106         # If WebDAVDownload is blank, and WebDAV uses a
107         # single-origin form, then Workbench will show an error page
108         #
109         # Serve download links by setting uuid or pdh in the path:
110         #   https://download.uuid_prefix.arvadosapi.com
111         #
112         ExternalURL: ""
113
114       Keepstore:
115         InternalURLs:
116           SAMPLE:
117             # Rendezvous is normally empty/omitted. When changing the
118             # URL of a Keepstore service, Rendezvous should be set to
119             # the old URL (with trailing slash omitted) to preserve
120             # rendezvous ordering.
121             Rendezvous: ""
122         ExternalURL: ""
123       Composer:
124         InternalURLs: {SAMPLE: {}}
125         ExternalURL: ""
126       WebShell:
127         InternalURLs: {SAMPLE: {}}
128         # ShellInABox service endpoint URL for a given VM.  If empty, do not
129         # offer web shell logins.
130         #
131         # E.g., using a path-based proxy server to forward connections to shell hosts:
132         # https://webshell.uuid_prefix.arvadosapi.com
133         #
134         # E.g., using a name-based proxy server to forward connections to shell hosts:
135         # https://*.webshell.uuid_prefix.arvadosapi.com
136         ExternalURL: ""
137       Workbench1:
138         InternalURLs: {SAMPLE: {}}
139         ExternalURL: ""
140       Workbench2:
141         InternalURLs: {SAMPLE: {}}
142         ExternalURL: ""
143       Health:
144         InternalURLs: {SAMPLE: {}}
145         ExternalURL: ""
146
147     PostgreSQL:
148       # max concurrent connections per arvados server daemon
149       ConnectionPool: 32
150       Connection:
151         # All parameters here are passed to the PG client library in a connection string;
152         # see https://www.postgresql.org/docs/current/static/libpq-connect.html#LIBPQ-PARAMKEYWORDS
153         host: ""
154         port: ""
155         user: ""
156         password: ""
157         dbname: ""
158         SAMPLE: ""
159     API:
160       # Limits for how long a client token created by regular users can be valid,
161       # and also is used as a default expiration policy when no expiration date is
162       # specified.
163       # Default value zero means token expirations don't get clamped and no
164       # default expiration is set.
165       MaxTokenLifetime: 0s
166
167       # Maximum size (in bytes) allowed for a single API request.  This
168       # limit is published in the discovery document for use by clients.
169       # Note: You must separately configure the upstream web server or
170       # proxy to actually enforce the desired maximum request size on the
171       # server side.
172       MaxRequestSize: 134217728
173
174       # Limit the number of bytes read from the database during an index
175       # request (by retrieving and returning fewer rows than would
176       # normally be returned in a single response).
177       # Note 1: This setting never reduces the number of returned rows to
178       # zero, no matter how big the first data row is.
179       # Note 2: Currently, this is only checked against a specific set of
180       # columns that tend to get large (collections.manifest_text,
181       # containers.mounts, workflows.definition). Other fields (e.g.,
182       # "properties" hashes) are not counted against this limit.
183       MaxIndexDatabaseRead: 134217728
184
185       # Maximum number of items to return when responding to a APIs that
186       # can return partial result sets using limit and offset parameters
187       # (e.g., *.index, groups.contents). If a request specifies a "limit"
188       # parameter higher than this value, this value is used instead.
189       MaxItemsPerResponse: 1000
190
191       # Maximum number of concurrent requests to accept in a single
192       # service process, or 0 for no limit.
193       MaxConcurrentRequests: 0
194
195       # Maximum number of 64MiB memory buffers per Keepstore server process, or
196       # 0 for no limit. When this limit is reached, up to
197       # (MaxConcurrentRequests - MaxKeepBlobBuffers) HTTP requests requiring
198       # buffers (like GET and PUT) will wait for buffer space to be released.
199       # Any HTTP requests beyond MaxConcurrentRequests will receive an
200       # immediate 503 response.
201       #
202       # MaxKeepBlobBuffers should be set such that (MaxKeepBlobBuffers * 64MiB
203       # * 1.1) fits comfortably in memory. On a host dedicated to running
204       # Keepstore, divide total memory by 88MiB to suggest a suitable value.
205       # For example, if grep MemTotal /proc/meminfo reports MemTotal: 7125440
206       # kB, compute 7125440 / (88 * 1024)=79 and set MaxKeepBlobBuffers: 79
207       MaxKeepBlobBuffers: 128
208
209       # API methods to disable. Disabled methods are not listed in the
210       # discovery document, and respond 404 to all requests.
211       # Example: {"jobs.create":{}, "pipeline_instances.create": {}}
212       DisabledAPIs: {}
213
214       # Interval (seconds) between asynchronous permission view updates. Any
215       # permission-updating API called with the 'async' parameter schedules a an
216       # update on the permission view in the future, if not already scheduled.
217       AsyncPermissionsUpdateInterval: 20s
218
219       # Maximum number of concurrent outgoing requests to make while
220       # serving a single incoming multi-cluster (federated) request.
221       MaxRequestAmplification: 4
222
223       # Maximum wall clock time to spend handling an incoming request.
224       RequestTimeout: 5m
225
226       # Websocket will send a periodic empty event after 'SendTimeout'
227       # if there is no other activity to maintain the connection /
228       # detect dropped connections.
229       SendTimeout: 60s
230
231       WebsocketClientEventQueue: 64
232       WebsocketServerEventQueue: 4
233
234       # Timeout on requests to internal Keep services.
235       KeepServiceRequestTimeout: 15s
236
237       # Vocabulary file path, local to the node running the controller.
238       # This JSON file should contain the description of what's allowed
239       # as object's metadata. Its format is described at:
240       # https://doc.arvados.org/admin/metadata-vocabulary.html
241       VocabularyPath: ""
242
243     Users:
244       # Config parameters to automatically setup new users.  If enabled,
245       # this users will be able to self-activate.  Enable this if you want
246       # to run an open instance where anyone can create an account and use
247       # the system without requiring manual approval.
248       #
249       # The params AutoSetupNewUsersWith* are meaningful only when AutoSetupNewUsers is turned on.
250       # AutoSetupUsernameBlacklist is a list of usernames to be blacklisted for auto setup.
251       AutoSetupNewUsers: false
252       AutoSetupNewUsersWithVmUUID: ""
253       AutoSetupNewUsersWithRepository: false
254       AutoSetupUsernameBlacklist:
255         arvados: {}
256         git: {}
257         gitolite: {}
258         gitolite-admin: {}
259         root: {}
260         syslog: {}
261         SAMPLE: {}
262
263       # When NewUsersAreActive is set to true, new users will be active
264       # immediately.  This skips the "self-activate" step which enforces
265       # user agreements.  Should only be enabled for development.
266       NewUsersAreActive: false
267
268       # Newly activated users (whether set up by an admin or via
269       # AutoSetupNewUsers) immediately become visible to other active
270       # users.
271       #
272       # On a multi-tenant cluster, where the intent is for users to be
273       # invisible to one another unless they have been added to the
274       # same group(s) via Workbench admin interface, change this to
275       # false.
276       ActivatedUsersAreVisibleToOthers: true
277
278       # The e-mail address of the user you would like to become marked as an admin
279       # user on their first login.
280       AutoAdminUserWithEmail: ""
281
282       # If AutoAdminFirstUser is set to true, the first user to log in when no
283       # other admin users exist will automatically become an admin user.
284       AutoAdminFirstUser: false
285
286       # Email address to notify whenever a user creates a profile for the
287       # first time
288       UserProfileNotificationAddress: ""
289       AdminNotifierEmailFrom: arvados@example.com
290       EmailSubjectPrefix: "[ARVADOS] "
291       UserNotifierEmailFrom: arvados@example.com
292       UserNotifierEmailBcc: {}
293       NewUserNotificationRecipients: {}
294       NewInactiveUserNotificationRecipients: {}
295
296       # Set AnonymousUserToken to enable anonymous user access. Populate this
297       # field with a long random string. Then run "bundle exec
298       # ./script/get_anonymous_user_token.rb" in the directory where your API
299       # server is running to record the token in the database.
300       AnonymousUserToken: ""
301
302       # If a new user has an alternate email address (local@domain)
303       # with the domain given here, its local part becomes the new
304       # user's default username. Otherwise, the user's primary email
305       # address is used.
306       PreferDomainForUsername: ""
307
308       UserSetupMailText: |
309         <% if not @user.full_name.empty? -%>
310         <%= @user.full_name %>,
311         <% else -%>
312         Hi there,
313         <% end -%>
314
315         Your Arvados account has been set up.  You can log in at
316
317         <%= Rails.configuration.Services.Workbench1.ExternalURL %>
318
319         Thanks,
320         Your Arvados administrator.
321
322       # If RoleGroupsVisibleToAll is true, all role groups are visible
323       # to all active users.
324       #
325       # If false, users must be granted permission to role groups in
326       # order to see them. This is more appropriate for a multi-tenant
327       # cluster.
328       RoleGroupsVisibleToAll: true
329
330     AuditLogs:
331       # Time to keep audit logs, in seconds. (An audit log is a row added
332       # to the "logs" table in the PostgreSQL database each time an
333       # Arvados object is created, modified, or deleted.)
334       #
335       # Currently, websocket event notifications rely on audit logs, so
336       # this should not be set lower than 300 (5 minutes).
337       MaxAge: 336h
338
339       # Maximum number of log rows to delete in a single SQL transaction.
340       #
341       # If MaxDeleteBatch is 0, log entries will never be
342       # deleted by Arvados. Cleanup can be done by an external process
343       # without affecting any Arvados system processes, as long as very
344       # recent (<5 minutes old) logs are not deleted.
345       #
346       # 100000 is a reasonable batch size for most sites.
347       MaxDeleteBatch: 0
348
349       # Attributes to suppress in events and audit logs.  Notably,
350       # specifying {"manifest_text": {}} here typically makes the database
351       # smaller and faster.
352       #
353       # Warning: Using any non-empty value here can have undesirable side
354       # effects for any client or component that relies on event logs.
355       # Use at your own risk.
356       UnloggedAttributes: {}
357
358     SystemLogs:
359
360       # Logging threshold: panic, fatal, error, warn, info, debug, or
361       # trace
362       LogLevel: info
363
364       # Logging format: json or text
365       Format: json
366
367       # Maximum characters of (JSON-encoded) query parameters to include
368       # in each request log entry. When params exceed this size, they will
369       # be JSON-encoded, truncated to this size, and logged as
370       # params_truncated.
371       MaxRequestLogParamsSize: 2000
372
373     Collections:
374
375       # Enable access controls for data stored in Keep. This should
376       # always be set to true on a production cluster.
377       BlobSigning: true
378
379       # BlobSigningKey is a string of alphanumeric characters used to
380       # generate permission signatures for Keep locators. It must be
381       # identical to the permission key given to Keep. IMPORTANT: This
382       # is a site secret. It should be at least 50 characters.
383       #
384       # Modifying BlobSigningKey will invalidate all existing
385       # signatures, which can cause programs to fail (e.g., arv-put,
386       # arv-get, and Crunch jobs).  To avoid errors, rotate keys only
387       # when no such processes are running.
388       BlobSigningKey: ""
389
390       # Enable garbage collection of unreferenced blobs in Keep.
391       BlobTrash: true
392
393       # Time to leave unreferenced blobs in "trashed" state before
394       # deleting them, or 0 to skip the "trashed" state entirely and
395       # delete unreferenced blobs.
396       #
397       # If you use any Amazon S3 buckets as storage volumes, this
398       # must be at least 24h to avoid occasional data loss.
399       BlobTrashLifetime: 336h
400
401       # How often to check for (and delete) trashed blocks whose
402       # BlobTrashLifetime has expired.
403       BlobTrashCheckInterval: 24h
404
405       # Maximum number of concurrent "trash blob" and "delete trashed
406       # blob" operations conducted by a single keepstore process. Each
407       # of these can be set to 0 to disable the respective operation.
408       #
409       # If BlobTrashLifetime is zero, "trash" and "delete trash"
410       # happen at once, so only the lower of these two values is used.
411       BlobTrashConcurrency: 4
412       BlobDeleteConcurrency: 4
413
414       # Maximum number of concurrent "create additional replica of
415       # existing blob" operations conducted by a single keepstore
416       # process.
417       BlobReplicateConcurrency: 4
418
419       # Default replication level for collections. This is used when a
420       # collection's replication_desired attribute is nil.
421       DefaultReplication: 2
422
423       # BlobSigningTTL determines the minimum lifetime of transient
424       # data, i.e., blocks that are not referenced by
425       # collections. Unreferenced blocks exist for two reasons:
426       #
427       # 1) A data block must be written to a disk/cloud backend device
428       # before a collection can be created/updated with a reference to
429       # it.
430       #
431       # 2) Deleting or updating a collection can remove the last
432       # remaining reference to a data block.
433       #
434       # If BlobSigningTTL is too short, long-running
435       # processes/containers will fail when they take too long (a)
436       # between writing blocks and writing collections that reference
437       # them, or (b) between reading collections and reading the
438       # referenced blocks.
439       #
440       # If BlobSigningTTL is too long, data will still be stored long
441       # after the referring collections are deleted, and you will
442       # needlessly fill up disks or waste money on cloud storage.
443       #
444       # Modifying BlobSigningTTL invalidates existing signatures; see
445       # BlobSigningKey note above.
446       #
447       # The default is 2 weeks.
448       BlobSigningTTL: 336h
449
450       # When running keep-balance, this is the destination filename for
451       # the list of lost block hashes if there are any, one per line.
452       # Updated automically during each successful run.
453       BlobMissingReport: ""
454
455       # keep-balance operates periodically, i.e.: do a
456       # scan/balance operation, sleep, repeat.
457       #
458       # BalancePeriod determines the interval between start times of
459       # successive scan/balance operations. If a scan/balance operation
460       # takes longer than BalancePeriod, the next one will follow it
461       # immediately.
462       #
463       # If SIGUSR1 is received during an idle period between operations,
464       # the next operation will start immediately.
465       BalancePeriod: 10m
466
467       # Limits the number of collections retrieved by keep-balance per
468       # API transaction. If this is zero, page size is
469       # determined by the API server's own page size limits (see
470       # API.MaxItemsPerResponse and API.MaxIndexDatabaseRead).
471       BalanceCollectionBatch: 0
472
473       # The size of keep-balance's internal queue of
474       # collections. Higher values use more memory and improve throughput
475       # by allowing keep-balance to fetch the next page of collections
476       # while the current page is still being processed. If this is zero
477       # or omitted, pages are processed serially.
478       BalanceCollectionBuffers: 1000
479
480       # Maximum time for a rebalancing run. This ensures keep-balance
481       # eventually gives up and retries if, for example, a network
482       # error causes a hung connection that is never closed by the
483       # OS. It should be long enough that it doesn't interrupt a
484       # long-running balancing operation.
485       BalanceTimeout: 6h
486
487       # Maximum number of replication_confirmed /
488       # storage_classes_confirmed updates to write to the database
489       # after a rebalancing run. When many updates are needed, this
490       # spreads them over a few runs rather than applying them all at
491       # once.
492       BalanceUpdateLimit: 100000
493
494       # Default lifetime for ephemeral collections: 2 weeks. This must not
495       # be less than BlobSigningTTL.
496       DefaultTrashLifetime: 336h
497
498       # Interval (seconds) between trash sweeps. During a trash sweep,
499       # collections are marked as trash if their trash_at time has
500       # arrived, and deleted if their delete_at time has arrived.
501       TrashSweepInterval: 60s
502
503       # If true, enable collection versioning.
504       # When a collection's preserve_version field is true or the current version
505       # is older than the amount of seconds defined on PreserveVersionIfIdle,
506       # a snapshot of the collection's previous state is created and linked to
507       # the current collection.
508       CollectionVersioning: true
509
510       #   0s = auto-create a new version on every update.
511       #  -1s = never auto-create new versions.
512       # > 0s = auto-create a new version when older than the specified number of seconds.
513       PreserveVersionIfIdle: 10s
514
515       # If non-empty, allow project and collection names to contain
516       # the "/" character (slash/stroke/solidus), and replace "/" with
517       # the given string in the filesystem hierarchy presented by
518       # WebDAV. Example values are "%2f" and "{slash}". Names that
519       # contain the substitution string itself may result in confusing
520       # behavior, so a value like "_" is not recommended.
521       #
522       # If the default empty value is used, the server will reject
523       # requests to create or rename a collection when the new name
524       # contains "/".
525       #
526       # If the value "/" is used, project and collection names
527       # containing "/" will be allowed, but they will not be
528       # accessible via WebDAV.
529       #
530       # Use of this feature is not recommended, if it can be avoided.
531       ForwardSlashNameSubstitution: ""
532
533       # Include "folder objects" in S3 ListObjects responses.
534       S3FolderObjects: true
535
536       # Managed collection properties. At creation time, if the client didn't
537       # provide the listed keys, they will be automatically populated following
538       # one of the following behaviors:
539       #
540       # * UUID of the user who owns the containing project.
541       #   responsible_person_uuid: {Function: original_owner, Protected: true}
542       #
543       # * Default concrete value.
544       #   foo_bar: {Value: baz, Protected: false}
545       #
546       # If Protected is true, only an admin user can modify its value.
547       ManagedProperties:
548         SAMPLE: {Function: original_owner, Protected: true}
549
550       # In "trust all content" mode, Workbench will redirect download
551       # requests to WebDAV preview link, even in the cases when
552       # WebDAV would have to expose XSS vulnerabilities in order to
553       # handle the redirect (see discussion on Services.WebDAV).
554       #
555       # This setting has no effect in the recommended configuration, where the
556       # WebDAV service is configured to have a separate domain for every
557       # collection and XSS protection is provided by browsers' same-origin
558       # policy.
559       #
560       # The default setting (false) is appropriate for a multi-user site.
561       TrustAllContent: false
562
563       # Cache parameters for WebDAV content serving:
564       WebDAVCache:
565         # Time to cache manifests, permission checks, and sessions.
566         TTL: 300s
567
568         # Time to cache collection state.
569         UUIDTTL: 5s
570
571         # Block cache entries. Each block consumes up to 64 MiB RAM.
572         MaxBlockEntries: 20
573
574         # Collection cache entries.
575         MaxCollectionEntries: 1000
576
577         # Approximate memory limit (in bytes) for collection cache.
578         MaxCollectionBytes: 100000000
579
580         # UUID cache entries.
581         MaxUUIDEntries: 1000
582
583         # Persistent sessions.
584         MaxSessions: 100
585
586       # Selectively set permissions for regular users and admins to
587       # download or upload data files using the upload/download
588       # features for Workbench, WebDAV and S3 API support.
589       WebDAVPermission:
590         User:
591           Download: true
592           Upload: true
593         Admin:
594           Download: true
595           Upload: true
596
597       # Selectively set permissions for regular users and admins to be
598       # able to download or upload blocks using arv-put and
599       # arv-get from outside the cluster.
600       KeepproxyPermission:
601         User:
602           Download: true
603           Upload: true
604         Admin:
605           Download: true
606           Upload: true
607
608       # Post upload / download events to the API server logs table, so
609       # that they can be included in the arv-user-activity report.
610       # You can disable this if you find that it is creating excess
611       # load on the API server and you don't need it.
612       WebDAVLogEvents: true
613
614     Login:
615       # One of the following mechanisms (Google, PAM, LDAP, or
616       # LoginCluster) should be enabled; see
617       # https://doc.arvados.org/install/setup-login.html
618
619       Google:
620         # Authenticate with Google.
621         Enable: false
622
623         # Use the Google Cloud console to enable the People API (APIs
624         # and Services > Enable APIs and services > Google People API
625         # > Enable), generate a Client ID and secret (APIs and
626         # Services > Credentials > Create credentials > OAuth client
627         # ID > Web application) and add your controller's /login URL
628         # (e.g., "https://zzzzz.example.com/login") as an authorized
629         # redirect URL.
630         ClientID: ""
631         ClientSecret: ""
632
633         # Allow users to log in to existing accounts using any verified
634         # email address listed by their Google account. If true, the
635         # Google People API must be enabled in order for Google login to
636         # work. If false, only the primary email address will be used.
637         AlternateEmailAddresses: true
638
639         # Send additional parameters with authentication requests. See
640         # https://developers.google.com/identity/protocols/oauth2/openid-connect#authenticationuriparameters
641         # for a list of supported parameters.
642         AuthenticationRequestParameters:
643           # Show the "choose which Google account" page, even if the
644           # client is currently logged in to exactly one Google
645           # account.
646           prompt: select_account
647
648           SAMPLE: ""
649
650       OpenIDConnect:
651         # Authenticate with an OpenID Connect provider.
652         Enable: false
653
654         # Issuer URL, e.g., "https://login.example.com".
655         #
656         # This must be exactly equal to the URL returned by the issuer
657         # itself in its config response ("isser" key). If the
658         # configured value is "https://example" and the provider
659         # returns "https://example:443" or "https://example/" then
660         # login will fail, even though those URLs are equivalent
661         # (RFC3986).
662         Issuer: ""
663
664         # Your client ID and client secret (supplied by the provider).
665         ClientID: ""
666         ClientSecret: ""
667
668         # OpenID claim field containing the user's email
669         # address. Normally "email"; see
670         # https://openid.net/specs/openid-connect-core-1_0.html#StandardClaims
671         EmailClaim: "email"
672
673         # OpenID claim field containing the email verification
674         # flag. Normally "email_verified".  To accept every returned
675         # email address without checking a "verified" field at all,
676         # use the empty string "".
677         EmailVerifiedClaim: "email_verified"
678
679         # OpenID claim field containing the user's preferred
680         # username. If empty, use the mailbox part of the user's email
681         # address.
682         UsernameClaim: ""
683
684         # Send additional parameters with authentication requests,
685         # like {display: page, prompt: consent}. See
686         # https://openid.net/specs/openid-connect-core-1_0.html#AuthRequest
687         # and refer to your provider's documentation for supported
688         # parameters.
689         AuthenticationRequestParameters:
690           SAMPLE: ""
691
692         # Accept an OIDC access token as an API token if the OIDC
693         # provider's UserInfo endpoint accepts it.
694         #
695         # AcceptAccessTokenScope should also be used when enabling
696         # this feature.
697         AcceptAccessToken: false
698
699         # Before accepting an OIDC access token as an API token, first
700         # check that it is a JWT whose "scope" value includes this
701         # value. Example: "https://zzzzz.example.com/" (your Arvados
702         # API endpoint).
703         #
704         # If this value is empty and AcceptAccessToken is true, all
705         # access tokens will be accepted regardless of scope,
706         # including non-JWT tokens. This is not recommended.
707         AcceptAccessTokenScope: ""
708
709       PAM:
710         # Use PAM to authenticate users.
711         Enable: false
712
713         # PAM service name. PAM will apply the policy in the
714         # corresponding config file (e.g., /etc/pam.d/arvados) or, if
715         # there is none, the default "other" config.
716         Service: arvados
717
718         # Domain name (e.g., "example.com") to use to construct the
719         # user's email address if PAM authentication returns a
720         # username with no "@". If empty, use the PAM username as the
721         # user's email address, whether or not it contains "@".
722         #
723         # Note that the email address is used as the primary key for
724         # user records when logging in. Therefore, if you change
725         # PAMDefaultEmailDomain after the initial installation, you
726         # should also update existing user records to reflect the new
727         # domain. Otherwise, next time those users log in, they will
728         # be given new accounts instead of accessing their existing
729         # accounts.
730         DefaultEmailDomain: ""
731
732       LDAP:
733         # Use an LDAP service to authenticate users.
734         Enable: false
735
736         # Server URL, like "ldap://ldapserver.example.com:389" or
737         # "ldaps://ldapserver.example.com:636".
738         URL: "ldap://ldap:389"
739
740         # Use StartTLS upon connecting to the server.
741         StartTLS: true
742
743         # Skip TLS certificate name verification.
744         InsecureTLS: false
745
746         # Strip the @domain part if a user supplies an email-style
747         # username with this domain. If "*", strip any user-provided
748         # domain. If "", never strip the domain part. Example:
749         # "example.com"
750         StripDomain: ""
751
752         # If, after applying StripDomain, the username contains no "@"
753         # character, append this domain to form an email-style
754         # username. Example: "example.com"
755         AppendDomain: ""
756
757         # The LDAP attribute to filter on when looking up a username
758         # (after applying StripDomain and AppendDomain).
759         SearchAttribute: uid
760
761         # Bind with this username (DN or UPN) and password when
762         # looking up the user record.
763         #
764         # Example user: "cn=admin,dc=example,dc=com"
765         SearchBindUser: ""
766         SearchBindPassword: ""
767
768         # Directory base for username lookup. Example:
769         # "ou=Users,dc=example,dc=com"
770         SearchBase: ""
771
772         # Additional filters to apply when looking up users' LDAP
773         # entries. This can be used to restrict access to a subset of
774         # LDAP users, or to disambiguate users from other directory
775         # entries that have the SearchAttribute present.
776         #
777         # Special characters in assertion values must be escaped (see
778         # RFC4515).
779         #
780         # Example: "(objectClass=person)"
781         SearchFilters: ""
782
783         # LDAP attribute to use as the user's email address.
784         #
785         # Important: This must not be an attribute whose value can be
786         # edited in the directory by the users themselves. Otherwise,
787         # users can take over other users' Arvados accounts trivially
788         # (email address is the primary key for Arvados accounts.)
789         EmailAttribute: mail
790
791         # LDAP attribute to use as the preferred Arvados username. If
792         # no value is found (or this config is empty) the username
793         # originally supplied by the user will be used.
794         UsernameAttribute: uid
795
796       Test:
797         # Authenticate users listed here in the config file. This
798         # feature is intended to be used in test environments, and
799         # should not be used in production.
800         Enable: false
801         Users:
802           SAMPLE:
803             Email: alice@example.com
804             Password: xyzzy
805
806       # The cluster ID to delegate the user database.  When set,
807       # logins on this cluster will be redirected to the login cluster
808       # (login cluster must appear in RemoteClusters with Proxy: true)
809       LoginCluster: ""
810
811       # How long a cached token belonging to a remote cluster will
812       # remain valid before it needs to be revalidated.
813       RemoteTokenRefresh: 5m
814
815       # How long a client token created from a login flow will be valid without
816       # asking the user to re-login. Example values: 60m, 8h.
817       # Default value zero means tokens don't have expiration.
818       TokenLifetime: 0s
819
820       # If true (default) tokens issued through login are allowed to create
821       # new tokens.
822       # If false, tokens issued through login are not allowed to
823       # viewing/creating other tokens.  New tokens can only be created
824       # by going through login again.
825       IssueTrustedTokens: true
826
827       # When the token is returned to a client, the token itself may
828       # be restricted from viewing/creating other tokens based on whether
829       # the client is "trusted" or not.  The local Workbench1 and
830       # Workbench2 are trusted by default, but if this is a
831       # LoginCluster, you probably want to include the other Workbench
832       # instances in the federation in this list.
833       TrustedClients:
834         SAMPLE:
835           "https://workbench.federate1.example": {}
836           "https://workbench.federate2.example": {}
837
838     Git:
839       # Path to git or gitolite-shell executable. Each authenticated
840       # request will execute this program with the single argument "http-backend"
841       GitCommand: /usr/bin/git
842
843       # Path to Gitolite's home directory. If a non-empty path is given,
844       # the CGI environment will be set up to support the use of
845       # gitolite-shell as a GitCommand: for example, if GitoliteHome is
846       # "/gh", then the CGI environment will have GITOLITE_HTTP_HOME=/gh,
847       # PATH=$PATH:/gh/bin, and GL_BYPASS_ACCESS_CHECKS=1.
848       GitoliteHome: ""
849
850       # Git repositories must be readable by api server, or you won't be
851       # able to submit crunch jobs. To pass the test suites, put a clone
852       # of the arvados tree in {git_repositories_dir}/arvados.git or
853       # {git_repositories_dir}/arvados/.git
854       Repositories: /var/lib/arvados/git/repositories
855
856     TLS:
857       Certificate: ""
858       Key: ""
859       Insecure: false
860
861     Containers:
862       # List of supported Docker Registry image formats that compute nodes
863       # are able to use. `arv keep docker` will error out if a user tries
864       # to store an image with an unsupported format. Use an empty array
865       # to skip the compatibility check (and display a warning message to
866       # that effect).
867       #
868       # Example for sites running docker < 1.10: {"v1": {}}
869       # Example for sites running docker >= 1.10: {"v2": {}}
870       # Example for disabling check: {}
871       SupportedDockerImageFormats:
872         "v2": {}
873         SAMPLE: {}
874
875       # Include details about job reuse decisions in the server log. This
876       # causes additional database queries to run, so it should not be
877       # enabled unless you expect to examine the resulting logs for
878       # troubleshooting purposes.
879       LogReuseDecisions: false
880
881       # Default value for keep_cache_ram of a container's runtime_constraints.
882       DefaultKeepCacheRAM: 268435456
883
884       # Number of times a container can be unlocked before being
885       # automatically cancelled.
886       MaxDispatchAttempts: 5
887
888       # Default value for container_count_max for container requests.  This is the
889       # number of times Arvados will create a new container to satisfy a container
890       # request.  If a container is cancelled it will retry a new container if
891       # container_count < container_count_max on any container requests associated
892       # with the cancelled container.
893       MaxRetryAttempts: 3
894
895       # The maximum number of compute nodes that can be in use simultaneously
896       # If this limit is reduced, any existing nodes with slot number >= new limit
897       # will not be counted against the new limit. In other words, the new limit
898       # won't be strictly enforced until those nodes with higher slot numbers
899       # go down.
900       MaxComputeVMs: 64
901
902       # Schedule all child containers on preemptible instances (e.g. AWS
903       # Spot Instances) even if not requested by the submitter.
904       #
905       # If false, containers are scheduled on preemptible instances
906       # only when requested by the submitter.
907       #
908       # Note that arvados-cwl-runner does not currently offer a
909       # feature to request preemptible instances, so this value
910       # effectively acts as a cluster-wide decision about whether to
911       # use preemptible instances.
912       #
913       # This flag is ignored if no preemptible instance types are
914       # configured, and has no effect on top-level containers.
915       AlwaysUsePreemptibleInstances: true
916
917       # PEM encoded SSH key (RSA, DSA, or ECDSA) used by the
918       # cloud dispatcher for executing containers on worker VMs.
919       # Begins with "-----BEGIN RSA PRIVATE KEY-----\n"
920       # and ends with "\n-----END RSA PRIVATE KEY-----\n".
921       DispatchPrivateKey: ""
922
923       # Maximum time to wait for workers to come up before abandoning
924       # stale locks from a previous dispatch process.
925       StaleLockTimeout: 1m
926
927       # The crunch-run command used to start a container on a worker node.
928       #
929       # When dispatching to cloud VMs, this is used only if
930       # DeployRunnerBinary in the CloudVMs section is set to the empty
931       # string.
932       CrunchRunCommand: "crunch-run"
933
934       # Extra arguments to add to crunch-run invocation
935       # Example: ["--cgroup-parent-subsystem=memory"]
936       CrunchRunArgumentsList: []
937
938       # Extra RAM to reserve on the node, in addition to
939       # the amount specified in the container's RuntimeConstraints
940       ReserveExtraRAM: 256MiB
941
942       # Minimum time between two attempts to run the same container
943       MinRetryPeriod: 0s
944
945       # Container runtime: "docker" (default) or "singularity"
946       RuntimeEngine: docker
947
948       # When running a container, run a dedicated keepstore process,
949       # using the specified number of 64 MiB memory buffers per
950       # allocated CPU core (VCPUs in the container's runtime
951       # constraints). The dedicated keepstore handles I/O for
952       # collections mounted in the container, as well as saving
953       # container logs.
954       #
955       # A zero value disables this feature.
956       #
957       # In order for this feature to be activated, no volume may use
958       # AccessViaHosts, and each volume must have Replication higher
959       # than Collections.DefaultReplication. If these requirements are
960       # not satisfied, the feature is disabled automatically
961       # regardless of the value given here.
962       #
963       # Note that when this configuration is enabled, the entire
964       # cluster configuration file, including the system root token,
965       # is copied to the worker node and held in memory for the
966       # duration of the container.
967       LocalKeepBlobBuffersPerVCPU: 1
968
969       # When running a dedicated keepstore process for a container
970       # (see LocalKeepBlobBuffersPerVCPU), write keepstore log
971       # messages to keepstore.txt in the container's log collection.
972       #
973       # These log messages can reveal some volume configuration
974       # details, error messages from the cloud storage provider, etc.,
975       # which are not otherwise visible to users.
976       #
977       # Accepted values:
978       # * "none" -- no keepstore.txt file
979       # * "all" -- all logs, including request and response lines
980       # * "errors" -- all logs except "response" logs with 2xx
981       #   response codes and "request" logs
982       LocalKeepLogsToContainerLog: none
983
984       Logging:
985         # When you run the db:delete_old_container_logs task, it will find
986         # containers that have been finished for at least this many seconds,
987         # and delete their stdout, stderr, arv-mount, crunch-run, and
988         # crunchstat logs from the logs table.
989         MaxAge: 720h
990
991         # These two settings control how frequently log events are flushed to the
992         # database.  Log lines are buffered until either crunch_log_bytes_per_event
993         # has been reached or crunch_log_seconds_between_events has elapsed since
994         # the last flush.
995         LogBytesPerEvent: 4096
996         LogSecondsBetweenEvents: 5s
997
998         # The sample period for throttling logs.
999         LogThrottlePeriod: 60s
1000
1001         # Maximum number of bytes that job can log over crunch_log_throttle_period
1002         # before being silenced until the end of the period.
1003         LogThrottleBytes: 65536
1004
1005         # Maximum number of lines that job can log over crunch_log_throttle_period
1006         # before being silenced until the end of the period.
1007         LogThrottleLines: 1024
1008
1009         # Maximum bytes that may be logged by a single job.  Log bytes that are
1010         # silenced by throttling are not counted against this total.
1011         LimitLogBytesPerJob: 67108864
1012
1013         LogPartialLineThrottlePeriod: 5s
1014
1015         # Container logs are written to Keep and saved in a
1016         # collection, which is updated periodically while the
1017         # container runs.  This value sets the interval between
1018         # collection updates.
1019         LogUpdatePeriod: 30m
1020
1021         # The log collection is also updated when the specified amount of
1022         # log data (given in bytes) is produced in less than one update
1023         # period.
1024         LogUpdateSize: 32MiB
1025
1026       ShellAccess:
1027         # An admin user can use "arvados-client shell" to start an
1028         # interactive shell (with any user ID) in any running
1029         # container.
1030         Admin: false
1031
1032         # Any user can use "arvados-client shell" to start an
1033         # interactive shell (with any user ID) in any running
1034         # container that they started, provided it isn't also
1035         # associated with a different user's container request.
1036         #
1037         # Interactive sessions make it easy to alter the container's
1038         # runtime environment in ways that aren't recorded or
1039         # reproducible. Consider the implications for automatic
1040         # container reuse before enabling and using this feature. In
1041         # particular, note that starting an interactive session does
1042         # not disqualify a container from being reused by a different
1043         # user/workflow in the future.
1044         User: false
1045
1046       SLURM:
1047         PrioritySpread: 0
1048         SbatchArgumentsList: []
1049         SbatchEnvironmentVariables:
1050           SAMPLE: ""
1051         Managed:
1052           # Path to dns server configuration directory
1053           # (e.g. /etc/unbound.d/conf.d). If false, do not write any config
1054           # files or touch restart.txt (see below).
1055           DNSServerConfDir: ""
1056
1057           # Template file for the dns server host snippets. See
1058           # unbound.template in this directory for an example. If false, do
1059           # not write any config files.
1060           DNSServerConfTemplate: ""
1061
1062           # String to write to {dns_server_conf_dir}/restart.txt (with a
1063           # trailing newline) after updating local data. If false, do not
1064           # open or write the restart.txt file.
1065           DNSServerReloadCommand: ""
1066
1067           # Command to run after each DNS update. Template variables will be
1068           # substituted; see the "unbound" example below. If false, do not run
1069           # a command.
1070           DNSServerUpdateCommand: ""
1071
1072           ComputeNodeDomain: ""
1073           ComputeNodeNameservers:
1074             "192.168.1.1": {}
1075             SAMPLE: {}
1076
1077           # Hostname to assign to a compute node when it sends a "ping" and the
1078           # hostname in its Node record is nil.
1079           # During bootstrapping, the "ping" script is expected to notice the
1080           # hostname given in the ping response, and update its unix hostname
1081           # accordingly.
1082           # If false, leave the hostname alone (this is appropriate if your compute
1083           # nodes' hostnames are already assigned by some other mechanism).
1084           #
1085           # One way or another, the hostnames of your node records should agree
1086           # with your DNS records and your /etc/slurm-llnl/slurm.conf files.
1087           #
1088           # Example for compute0000, compute0001, ....:
1089           # assign_node_hostname: compute%<slot_number>04d
1090           # (See http://ruby-doc.org/core-2.2.2/Kernel.html#method-i-format for more.)
1091           AssignNodeHostname: "compute%<slot_number>d"
1092
1093       LSF:
1094         # Arguments to bsub when submitting Arvados containers as LSF jobs.
1095         #
1096         # Template variables starting with % will be substituted as follows:
1097         #
1098         # %U uuid
1099         # %C number of VCPUs
1100         # %M memory in MB
1101         # %T tmp in MB
1102         #
1103         # Use %% to express a literal %. The %%J in the default will be changed
1104         # to %J, which is interpreted by bsub itself.
1105         #
1106         # Note that the default arguments cause LSF to write two files
1107         # in /tmp on the compute node each time an Arvados container
1108         # runs. Ensure you have something in place to delete old files
1109         # from /tmp, or adjust the "-o" and "-e" arguments accordingly.
1110         BsubArgumentsList: ["-o", "/tmp/crunch-run.%%J.out", "-e", "/tmp/crunch-run.%%J.err", "-J", "%U", "-n", "%C", "-D", "%MMB", "-R", "rusage[mem=%MMB:tmp=%TMB] span[hosts=1]", "-R", "select[mem>=%MMB]", "-R", "select[tmp>=%TMB]", "-R", "select[ncpus>=%C]"]
1111
1112         # Use sudo to switch to this user account when submitting LSF
1113         # jobs.
1114         #
1115         # This account must exist on the hosts where LSF jobs run
1116         # ("execution hosts"), as well as on the host where the
1117         # Arvados LSF dispatcher runs ("submission host").
1118         BsubSudoUser: "crunch"
1119
1120       JobsAPI:
1121         # Enable the legacy 'jobs' API (crunch v1).  This value must be a string.
1122         #
1123         # Note: this only enables read-only access, creating new
1124         # legacy jobs and pipelines is not supported.
1125         #
1126         # 'auto' -- (default) enable the Jobs API only if it has been used before
1127         #         (i.e., there are job records in the database)
1128         # 'true' -- enable the Jobs API despite lack of existing records.
1129         # 'false' -- disable the Jobs API despite presence of existing records.
1130         Enable: 'auto'
1131
1132         # Git repositories must be readable by api server, or you won't be
1133         # able to submit crunch jobs. To pass the test suites, put a clone
1134         # of the arvados tree in {git_repositories_dir}/arvados.git or
1135         # {git_repositories_dir}/arvados/.git
1136         GitInternalDir: /var/lib/arvados/internal.git
1137
1138       CloudVMs:
1139         # Enable the cloud scheduler.
1140         Enable: false
1141
1142         # Name/number of port where workers' SSH services listen.
1143         SSHPort: "22"
1144
1145         # Interval between queue polls.
1146         PollInterval: 10s
1147
1148         # Shell command to execute on each worker to determine whether
1149         # the worker is booted and ready to run containers. It should
1150         # exit zero if the worker is ready.
1151         BootProbeCommand: "systemctl is-system-running"
1152
1153         # Minimum interval between consecutive probes to a single
1154         # worker.
1155         ProbeInterval: 10s
1156
1157         # Maximum probes per second, across all workers in a pool.
1158         MaxProbesPerSecond: 10
1159
1160         # Time before repeating SIGTERM when killing a container.
1161         TimeoutSignal: 5s
1162
1163         # Time to give up on a process (most likely arv-mount) that
1164         # still holds a container lockfile after its main supervisor
1165         # process has exited, and declare the instance broken.
1166         TimeoutStaleRunLock: 5s
1167
1168         # Time to give up on SIGTERM and write off the worker.
1169         TimeoutTERM: 2m
1170
1171         # Maximum create/destroy-instance operations per second (0 =
1172         # unlimited).
1173         MaxCloudOpsPerSecond: 10
1174
1175         # Maximum concurrent instance creation operations (0 = unlimited).
1176         #
1177         # MaxConcurrentInstanceCreateOps limits the number of instance creation
1178         # requests that can be in flight at any one time, whereas
1179         # MaxCloudOpsPerSecond limits the number of create/destroy operations
1180         # that can be started per second.
1181         #
1182         # Because the API for instance creation on Azure is synchronous, it is
1183         # recommended to increase MaxConcurrentInstanceCreateOps when running
1184         # on Azure. When using managed images, a value of 20 would be
1185         # appropriate. When using Azure Shared Image Galeries, it could be set
1186         # higher. For more information, see
1187         # https://docs.microsoft.com/en-us/azure/virtual-machines/linux/capture-image
1188         #
1189         # MaxConcurrentInstanceCreateOps can be increased for other cloud
1190         # providers too, if desired.
1191         MaxConcurrentInstanceCreateOps: 1
1192
1193         # Interval between cloud provider syncs/updates ("list all
1194         # instances").
1195         SyncInterval: 1m
1196
1197         # Time to leave an idle worker running (in case new containers
1198         # appear in the queue that it can run) before shutting it
1199         # down.
1200         TimeoutIdle: 1m
1201
1202         # Time to wait for a new worker to boot (i.e., pass
1203         # BootProbeCommand) before giving up and shutting it down.
1204         TimeoutBooting: 10m
1205
1206         # Maximum time a worker can stay alive with no successful
1207         # probes before being automatically shut down.
1208         TimeoutProbe: 10m
1209
1210         # Time after shutting down a worker to retry the
1211         # shutdown/destroy operation.
1212         TimeoutShutdown: 10s
1213
1214         # Worker VM image ID.
1215         # (aws) AMI identifier
1216         # (azure) managed disks: the name of the managed disk image
1217         # (azure) shared image gallery: the name of the image definition. Also
1218         # see the SharedImageGalleryName and SharedImageGalleryImageVersion fields.
1219         # (azure) unmanaged disks (deprecated): the complete URI of the VHD, e.g.
1220         # https://xxxxx.blob.core.windows.net/system/Microsoft.Compute/Images/images/xxxxx.vhd
1221         ImageID: ""
1222
1223         # An executable file (located on the dispatcher host) to be
1224         # copied to cloud instances at runtime and used as the
1225         # container runner/supervisor. The default value is the
1226         # dispatcher program itself.
1227         #
1228         # Use the empty string to disable this step: nothing will be
1229         # copied, and cloud instances are assumed to have a suitable
1230         # version of crunch-run installed; see CrunchRunCommand above.
1231         DeployRunnerBinary: "/proc/self/exe"
1232
1233         # Tags to add on all resources (VMs, NICs, disks) created by
1234         # the container dispatcher. (Arvados's own tags --
1235         # InstanceType, IdleBehavior, and InstanceSecret -- will also
1236         # be added.)
1237         ResourceTags:
1238           SAMPLE: "tag value"
1239
1240         # Prefix for predefined tags used by Arvados (InstanceSetID,
1241         # InstanceType, InstanceSecret, IdleBehavior). With the
1242         # default value "Arvados", tags are "ArvadosInstanceSetID",
1243         # "ArvadosInstanceSecret", etc.
1244         #
1245         # This should only be changed while no cloud resources are in
1246         # use and the cloud dispatcher is not running. Otherwise,
1247         # VMs/resources that were added using the old tag prefix will
1248         # need to be detected and cleaned up manually.
1249         TagKeyPrefix: Arvados
1250
1251         # Cloud driver: "azure" (Microsoft Azure) or "ec2" (Amazon AWS).
1252         Driver: ec2
1253
1254         # Cloud-specific driver parameters.
1255         DriverParameters:
1256
1257           # (ec2) Credentials. Omit or leave blank if using IAM role.
1258           AccessKeyID: ""
1259           SecretAccessKey: ""
1260
1261           # (ec2) Instance configuration.
1262           SecurityGroupIDs:
1263             "SAMPLE": {}
1264           SubnetID: ""
1265           Region: ""
1266           EBSVolumeType: gp2
1267           AdminUsername: debian
1268
1269           # (azure) Credentials.
1270           SubscriptionID: ""
1271           ClientID: ""
1272           ClientSecret: ""
1273           TenantID: ""
1274
1275           # (azure) Instance configuration.
1276           CloudEnvironment: AzurePublicCloud
1277           Location: centralus
1278
1279           # (azure) The resource group where the VM and virtual NIC will be
1280           # created.
1281           ResourceGroup: ""
1282
1283           # (azure) The resource group of the Network to use for the virtual
1284           # NIC (if different from ResourceGroup)
1285           NetworkResourceGroup: ""
1286           Network: ""
1287           Subnet: ""
1288
1289           # (azure) managed disks: The resource group where the managed disk
1290           # image can be found (if different from ResourceGroup).
1291           ImageResourceGroup: ""
1292
1293           # (azure) shared image gallery: the name of the gallery
1294           SharedImageGalleryName: ""
1295           # (azure) shared image gallery: the version of the image definition
1296           SharedImageGalleryImageVersion: ""
1297
1298           # (azure) unmanaged disks (deprecated): Where to store the VM VHD blobs
1299           StorageAccount: ""
1300           BlobContainer: ""
1301
1302           # (azure) How long to wait before deleting VHD and NIC
1303           # objects that are no longer being used.
1304           DeleteDanglingResourcesAfter: 20s
1305
1306           # Account (that already exists in the VM image) that will be
1307           # set up with an ssh authorized key to allow the compute
1308           # dispatcher to connect.
1309           AdminUsername: arvados
1310
1311     InstanceTypes:
1312
1313       # Use the instance type name as the key (in place of "SAMPLE" in
1314       # this sample entry).
1315       SAMPLE:
1316         # Cloud provider's instance type. Defaults to the configured type name.
1317         ProviderType: ""
1318         VCPUs: 1
1319         RAM: 128MiB
1320         IncludedScratch: 16GB
1321         AddedScratch: 0
1322         Price: 0.1
1323         Preemptible: false
1324
1325     StorageClasses:
1326
1327       # If you use multiple storage classes, specify them here, using
1328       # the storage class name as the key (in place of "SAMPLE" in
1329       # this sample entry).
1330       #
1331       # Further info/examples:
1332       # https://doc.arvados.org/admin/storage-classes.html
1333       SAMPLE:
1334
1335         # Priority determines the order volumes should be searched
1336         # when reading data, in cases where a keepstore server has
1337         # access to multiple volumes with different storage classes.
1338         Priority: 0
1339
1340         # Default determines which storage class(es) should be used
1341         # when a user/client writes data or saves a new collection
1342         # without specifying storage classes.
1343         #
1344         # If any StorageClasses are configured, at least one of them
1345         # must have Default: true.
1346         Default: true
1347
1348     Volumes:
1349       SAMPLE:
1350         # AccessViaHosts specifies which keepstore processes can read
1351         # and write data on the volume.
1352         #
1353         # For a local filesystem, AccessViaHosts has one entry,
1354         # indicating which server the filesystem is located on.
1355         #
1356         # For a network-attached backend accessible by all keepstore
1357         # servers, like a cloud storage bucket or an NFS mount,
1358         # AccessViaHosts can be empty/omitted.
1359         #
1360         # Further info/examples:
1361         # https://doc.arvados.org/install/configure-fs-storage.html
1362         # https://doc.arvados.org/install/configure-s3-object-storage.html
1363         # https://doc.arvados.org/install/configure-azure-blob-storage.html
1364         AccessViaHosts:
1365           SAMPLE:
1366             ReadOnly: false
1367           "http://host1.example:25107": {}
1368         ReadOnly: false
1369         Replication: 1
1370         StorageClasses:
1371           # If you have configured storage classes (see StorageClasses
1372           # section above), add an entry here for each storage class
1373           # satisfied by this volume.
1374           SAMPLE: true
1375         Driver: S3
1376         DriverParameters:
1377           # for s3 driver -- see
1378           # https://doc.arvados.org/install/configure-s3-object-storage.html
1379           IAMRole: aaaaa
1380           AccessKeyID: aaaaa
1381           SecretAccessKey: aaaaa
1382           Endpoint: ""
1383           Region: us-east-1
1384           Bucket: aaaaa
1385           LocationConstraint: false
1386           V2Signature: false
1387           IndexPageSize: 1000
1388           ConnectTimeout: 1m
1389           ReadTimeout: 10m
1390           RaceWindow: 24h
1391           PrefixLength: 0
1392           # Use aws-s3-go (v2) instead of goamz
1393           UseAWSS3v2Driver: false
1394
1395           # For S3 driver, potentially unsafe tuning parameter,
1396           # intentionally excluded from main documentation.
1397           #
1398           # Enable deletion (garbage collection) even when the
1399           # configured BlobTrashLifetime is zero.  WARNING: eventual
1400           # consistency may result in race conditions that can cause
1401           # data loss.  Do not enable this unless you understand and
1402           # accept the risk.
1403           UnsafeDelete: false
1404
1405           # for azure driver -- see
1406           # https://doc.arvados.org/install/configure-azure-blob-storage.html
1407           StorageAccountName: aaaaa
1408           StorageAccountKey: aaaaa
1409           StorageBaseURL: core.windows.net
1410           ContainerName: aaaaa
1411           RequestTimeout: 30s
1412           ListBlobsRetryDelay: 10s
1413           ListBlobsMaxAttempts: 10
1414           MaxGetBytes: 0
1415           WriteRaceInterval: 15s
1416           WriteRacePollTime: 1s
1417
1418           # for local directory driver -- see
1419           # https://doc.arvados.org/install/configure-fs-storage.html
1420           Root: /var/lib/arvados/keep-data
1421
1422           # For local directory driver, potentially confusing tuning
1423           # parameter, intentionally excluded from main documentation.
1424           #
1425           # When true, read and write operations (for whole 64MiB
1426           # blocks) on an individual volume will queued and issued
1427           # serially.  When false, read and write operations will be
1428           # issued concurrently.
1429           #
1430           # May possibly improve throughput if you have physical spinning disks
1431           # and experience contention when there are multiple requests
1432           # to the same volume.
1433           #
1434           # Otherwise, when using SSDs, RAID, or a shared network filesystem, you
1435           # should leave this alone.
1436           Serialize: false
1437
1438     Mail:
1439       MailchimpAPIKey: ""
1440       MailchimpListID: ""
1441       SendUserSetupNotificationEmail: true
1442
1443       # Bug/issue report notification to and from addresses
1444       IssueReporterEmailFrom: "arvados@example.com"
1445       IssueReporterEmailTo: "arvados@example.com"
1446       SupportEmailAddress: "arvados@example.com"
1447
1448       # Generic issue email from
1449       EmailFrom: "arvados@example.com"
1450     RemoteClusters:
1451       "*":
1452         Host: ""
1453         Proxy: false
1454         Scheme: https
1455         Insecure: false
1456         ActivateUsers: false
1457       SAMPLE:
1458         # API endpoint host or host:port; default is {id}.arvadosapi.com
1459         Host: sample.arvadosapi.com
1460
1461         # Perform a proxy request when a local client requests an
1462         # object belonging to this remote.
1463         Proxy: false
1464
1465         # Default "https". Can be set to "http" for testing.
1466         Scheme: https
1467
1468         # Disable TLS verify. Can be set to true for testing.
1469         Insecure: false
1470
1471         # When users present tokens issued by this remote cluster, and
1472         # their accounts are active on the remote cluster, activate
1473         # them on this cluster too.
1474         ActivateUsers: false
1475
1476     Workbench:
1477       # Workbench1 configs
1478       Theme: default
1479       ActivationContactLink: mailto:info@arvados.org
1480       ArvadosDocsite: https://doc.arvados.org
1481       ArvadosPublicDataDocURL: https://playground.arvados.org/projects/public
1482       ShowUserAgreementInline: false
1483       SecretKeyBase: ""
1484
1485       # Scratch directory used by the remote repository browsing
1486       # feature. If it doesn't exist, it (and any missing parents) will be
1487       # created using mkdir_p.
1488       RepositoryCache: /var/www/arvados-workbench/current/tmp/git
1489
1490       # Below is a sample setting of user_profile_form_fields config parameter.
1491       # This configuration parameter should be set to either false (to disable) or
1492       # to a map as shown below.
1493       # Configure the map of input fields to be displayed in the profile page
1494       # using the attribute "key" for each of the input fields.
1495       # This sample shows configuration with one required and one optional form fields.
1496       # For each of these input fields:
1497       #   You can specify "Type" as "text" or "select".
1498       #   List the "Options" to be displayed for each of the "select" menu.
1499       #   Set "Required" as "true" for any of these fields to make them required.
1500       # If any of the required fields are missing in the user's profile, the user will be
1501       # redirected to the profile page before they can access any Workbench features.
1502       UserProfileFormFields:
1503         SAMPLE:
1504           Type: select
1505           FormFieldTitle: Best color
1506           FormFieldDescription: your favorite color
1507           Required: false
1508           Position: 1
1509           Options:
1510             red: {}
1511             blue: {}
1512             green: {}
1513             SAMPLE: {}
1514
1515         # exampleTextValue:  # key that will be set in properties
1516         #   Type: text  #
1517         #   FormFieldTitle: ""
1518         #   FormFieldDescription: ""
1519         #   Required: true
1520         #   Position: 1
1521         # exampleOptionsValue:
1522         #   Type: select
1523         #   FormFieldTitle: ""
1524         #   FormFieldDescription: ""
1525         #   Required: true
1526         #   Position: 1
1527         #   Options:
1528         #     red: {}
1529         #     blue: {}
1530         #     yellow: {}
1531
1532       # Use "UserProfileFormMessage to configure the message you want
1533       # to display on the profile page.
1534       UserProfileFormMessage: 'Welcome to Arvados. All <span style="color:red">required fields</span> must be completed before you can proceed.'
1535
1536       # Mimetypes of applications for which the view icon
1537       # would be enabled in a collection's show page.
1538       # It is sufficient to list only applications here.
1539       # No need to list text and image types.
1540       ApplicationMimetypesWithViewIcon:
1541         cwl: {}
1542         fasta: {}
1543         go: {}
1544         javascript: {}
1545         json: {}
1546         pdf: {}
1547         python: {}
1548         x-python: {}
1549         r: {}
1550         rtf: {}
1551         sam: {}
1552         x-sh: {}
1553         vnd.realvnc.bed: {}
1554         xml: {}
1555         xsl: {}
1556         SAMPLE: {}
1557
1558       # The maximum number of bytes to load in the log viewer
1559       LogViewerMaxBytes: 1M
1560
1561       # When anonymous_user_token is configured, show public projects page
1562       EnablePublicProjectsPage: true
1563
1564       # By default, disable the "Getting Started" popup which is specific to Arvados playground
1565       EnableGettingStartedPopup: false
1566
1567       # Ask Arvados API server to compress its response payloads.
1568       APIResponseCompression: true
1569
1570       # Timeouts for API requests.
1571       APIClientConnectTimeout: 2m
1572       APIClientReceiveTimeout: 5m
1573
1574       # Maximum number of historic log records of a running job to fetch
1575       # and display in the Log tab, while subscribing to web sockets.
1576       RunningJobLogRecordsToFetch: 2000
1577
1578       # In systems with many shared projects, loading of dashboard and topnav
1579       # can be slow due to collections indexing; use the following parameters
1580       # to suppress these properties
1581       ShowRecentCollectionsOnDashboard: true
1582       ShowUserNotifications: true
1583
1584       # Enable/disable "multi-site search" in top nav ("true"/"false"), or
1585       # a link to the multi-site search page on a "home" Workbench site.
1586       #
1587       # Example:
1588       #   https://workbench.zzzzz.arvadosapi.com/collections/multisite
1589       MultiSiteSearch: ""
1590
1591       # Should workbench allow management of local git repositories? Set to false if
1592       # the jobs api is disabled and there are no local git repositories.
1593       Repositories: true
1594
1595       SiteName: Arvados Workbench
1596       ProfilingEnabled: false
1597
1598       # This is related to obsolete Google OpenID 1.0 login
1599       # but some workbench stuff still expects it to be set.
1600       DefaultOpenIdPrefix: "https://www.google.com/accounts/o8/id"
1601
1602       # Workbench2 configs
1603       FileViewersConfigURL: ""
1604
1605       # Idle time after which the user's session will be auto closed.
1606       # This feature is disabled when set to zero.
1607       IdleTimeout: 0s
1608
1609       # Workbench welcome screen, this is HTML text that will be
1610       # incorporated directly onto the page.
1611       WelcomePageHTML: |
1612         <img src="/arvados-logo-big.png" style="width: 20%; float: right; padding: 1em;" />
1613         <h2>Please log in.</h2>
1614
1615         <p>If you have never used Arvados Workbench before, logging in
1616         for the first time will automatically create a new
1617         account.</p>
1618
1619         <i>Arvados Workbench uses your information only for
1620         identification, and does not retrieve any other personal
1621         information.</i>
1622
1623       # Workbench screen displayed to inactive users.  This is HTML
1624       # text that will be incorporated directly onto the page.
1625       InactivePageHTML: |
1626         <img src="/arvados-logo-big.png" style="width: 20%; float: right; padding: 1em;" />
1627         <h3>Hi! You're logged in, but...</h3>
1628         <p>Your account is inactive.</p>
1629         <p>An administrator must activate your account before you can get
1630         any further.</p>
1631
1632       # Connecting to Arvados shell VMs tends to be site-specific.
1633       # Put any special instructions here. This is HTML text that will
1634       # be incorporated directly onto the Workbench page.
1635       SSHHelpPageHTML: |
1636         <a href="https://doc.arvados.org/user/getting_started/ssh-access-unix.html">Accessing an Arvados VM with SSH</a> (generic instructions).
1637         Site configurations vary.  Contact your local cluster administrator if you have difficulty accessing an Arvados shell node.
1638
1639       # Sample text if you are using a "switchyard" ssh proxy.
1640       # Replace "zzzzz" with your Cluster ID.
1641       #SSHHelpPageHTML: |
1642       # <p>Add a section like this to your SSH configuration file ( <i>~/.ssh/config</i>):</p>
1643       # <pre>Host *.zzzzz
1644       #  TCPKeepAlive yes
1645       #  ServerAliveInterval 60
1646       #  ProxyCommand ssh -p2222 turnout@switchyard.zzzzz.arvadosapi.com -x -a $SSH_PROXY_FLAGS %h
1647       # </pre>
1648
1649       # If you are using a switchyard ssh proxy, shell node hostnames
1650       # may require a special hostname suffix.  In the sample ssh
1651       # configuration above, this would be ".zzzzz"
1652       # This is added to the hostname in the "command line" column
1653       # the Workbench "shell VMs" page.
1654       #
1655       # If your shell nodes are directly accessible by users without a
1656       # proxy and have fully qualified host names, you should leave
1657       # this blank.
1658       SSHHelpHostSuffix: ""
1659
1660 # (Experimental) Restart services automatically when config file
1661 # changes are detected. Only supported by `arvados-server boot` in
1662 # dev/test mode.
1663 AutoReloadConfig: false