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