Merge branch 'master' into 14874-protected-collection-properties
[arvados.git] / lib / config / generated_config.go
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 package config
6
7 var DefaultYAML = []byte(`# Copyright (C) The Arvados Authors. All rights reserved.
8 #
9 # SPDX-License-Identifier: AGPL-3.0
10
11 # Do not use this file for site configuration. Create
12 # /etc/arvados/config.yml instead.
13 #
14 # The order of precedence (highest to lowest):
15 # 1. Legacy component-specific config files (deprecated)
16 # 2. /etc/arvados/config.yml
17 # 3. config.default.yml
18
19 Clusters:
20   xxxxx:
21     SystemRootToken: ""
22
23     # Token to be included in all healthcheck requests. Disabled by default.
24     # Server expects request header of the format "Authorization: Bearer xxx"
25     ManagementToken: ""
26
27     Services:
28       RailsAPI:
29         InternalURLs: {}
30         ExternalURL: "-"
31       Controller:
32         InternalURLs: {}
33         ExternalURL: ""
34       Websocket:
35         InternalURLs: {}
36         ExternalURL: ""
37       Keepbalance:
38         InternalURLs: {}
39         ExternalURL: "-"
40       GitHTTP:
41         InternalURLs: {}
42         ExternalURL: ""
43       GitSSH:
44         InternalURLs: {}
45         ExternalURL: ""
46       DispatchCloud:
47         InternalURLs: {}
48         ExternalURL: "-"
49       SSO:
50         InternalURLs: {}
51         ExternalURL: ""
52       Keepproxy:
53         InternalURLs: {}
54         ExternalURL: ""
55       WebDAV:
56         InternalURLs: {}
57         ExternalURL: ""
58       WebDAVDownload:
59         InternalURLs: {}
60         ExternalURL: ""
61       Keepstore:
62         InternalURLs: {}
63         ExternalURL: "-"
64       Composer:
65         InternalURLs: {}
66         ExternalURL: ""
67       WebShell:
68         InternalURLs: {}
69         ExternalURL: ""
70       Workbench1:
71         InternalURLs: {}
72         ExternalURL: ""
73       Workbench2:
74         InternalURLs: {}
75         ExternalURL: ""
76       Nodemanager:
77         InternalURLs: {}
78         ExternalURL: "-"
79       Health:
80         InternalURLs: {}
81         ExternalURL: "-"
82
83     PostgreSQL:
84       # max concurrent connections per arvados server daemon
85       ConnectionPool: 32
86       Connection:
87         # All parameters here are passed to the PG client library in a connection string;
88         # see https://www.postgresql.org/docs/current/static/libpq-connect.html#LIBPQ-PARAMKEYWORDS
89         host: ""
90         port: ""
91         user: ""
92         password: ""
93         dbname: ""
94     API:
95       # Maximum size (in bytes) allowed for a single API request.  This
96       # limit is published in the discovery document for use by clients.
97       # Note: You must separately configure the upstream web server or
98       # proxy to actually enforce the desired maximum request size on the
99       # server side.
100       MaxRequestSize: 134217728
101
102       # Limit the number of bytes read from the database during an index
103       # request (by retrieving and returning fewer rows than would
104       # normally be returned in a single response).
105       # Note 1: This setting never reduces the number of returned rows to
106       # zero, no matter how big the first data row is.
107       # Note 2: Currently, this is only checked against a specific set of
108       # columns that tend to get large (collections.manifest_text,
109       # containers.mounts, workflows.definition). Other fields (e.g.,
110       # "properties" hashes) are not counted against this limit.
111       MaxIndexDatabaseRead: 134217728
112
113       # Maximum number of items to return when responding to a APIs that
114       # can return partial result sets using limit and offset parameters
115       # (e.g., *.index, groups.contents). If a request specifies a "limit"
116       # parameter higher than this value, this value is used instead.
117       MaxItemsPerResponse: 1000
118
119       # API methods to disable. Disabled methods are not listed in the
120       # discovery document, and respond 404 to all requests.
121       # Example: ["jobs.create", "pipeline_instances.create"]
122       DisabledAPIs: []
123
124       # Interval (seconds) between asynchronous permission view updates. Any
125       # permission-updating API called with the 'async' parameter schedules a an
126       # update on the permission view in the future, if not already scheduled.
127       AsyncPermissionsUpdateInterval: 20s
128
129       # Maximum number of concurrent outgoing requests to make while
130       # serving a single incoming multi-cluster (federated) request.
131       MaxRequestAmplification: 4
132
133       # RailsSessionSecretToken is a string of alphanumeric characters
134       # used by Rails to sign session tokens. IMPORTANT: This is a
135       # site secret. It should be at least 50 characters.
136       RailsSessionSecretToken: ""
137
138       # Maximum wall clock time to spend handling an incoming request.
139       RequestTimeout: 5m
140
141     Users:
142       # Config parameters to automatically setup new users.  If enabled,
143       # this users will be able to self-activate.  Enable this if you want
144       # to run an open instance where anyone can create an account and use
145       # the system without requiring manual approval.
146       #
147       # The params auto_setup_new_users_with_* are meaningful only when auto_setup_new_users is turned on.
148       # auto_setup_name_blacklist is a list of usernames to be blacklisted for auto setup.
149       AutoSetupNewUsers: false
150       AutoSetupNewUsersWithVmUUID: ""
151       AutoSetupNewUsersWithRepository: false
152       AutoSetupUsernameBlacklist: [arvados, git, gitolite, gitolite-admin, root, syslog]
153
154       # When new_users_are_active is set to true, new users will be active
155       # immediately.  This skips the "self-activate" step which enforces
156       # user agreements.  Should only be enabled for development.
157       NewUsersAreActive: false
158
159       # The e-mail address of the user you would like to become marked as an admin
160       # user on their first login.
161       # In the default configuration, authentication happens through the Arvados SSO
162       # server, which uses OAuth2 against Google's servers, so in that case this
163       # should be an address associated with a Google account.
164       AutoAdminUserWithEmail: ""
165
166       # If auto_admin_first_user is set to true, the first user to log in when no
167       # other admin users exist will automatically become an admin user.
168       AutoAdminFirstUser: false
169
170       # Email address to notify whenever a user creates a profile for the
171       # first time
172       UserProfileNotificationAddress: ""
173       AdminNotifierEmailFrom: arvados@example.com
174       EmailSubjectPrefix: "[ARVADOS] "
175       UserNotifierEmailFrom: arvados@example.com
176       NewUserNotificationRecipients: []
177       NewInactiveUserNotificationRecipients: []
178
179     AuditLogs:
180       # Time to keep audit logs, in seconds. (An audit log is a row added
181       # to the "logs" table in the PostgreSQL database each time an
182       # Arvados object is created, modified, or deleted.)
183       #
184       # Currently, websocket event notifications rely on audit logs, so
185       # this should not be set lower than 300 (5 minutes).
186       MaxAge: 336h
187
188       # Maximum number of log rows to delete in a single SQL transaction.
189       #
190       # If max_audit_log_delete_batch is 0, log entries will never be
191       # deleted by Arvados. Cleanup can be done by an external process
192       # without affecting any Arvados system processes, as long as very
193       # recent (<5 minutes old) logs are not deleted.
194       #
195       # 100000 is a reasonable batch size for most sites.
196       MaxDeleteBatch: 0
197
198       # Attributes to suppress in events and audit logs.  Notably,
199       # specifying ["manifest_text"] here typically makes the database
200       # smaller and faster.
201       #
202       # Warning: Using any non-empty value here can have undesirable side
203       # effects for any client or component that relies on event logs.
204       # Use at your own risk.
205       UnloggedAttributes: []
206
207     SystemLogs:
208
209       # Logging threshold: panic, fatal, error, warn, info, debug, or
210       # trace
211       LogLevel: info
212
213       # Logging format: json or text
214       Format: json
215
216       # Maximum characters of (JSON-encoded) query parameters to include
217       # in each request log entry. When params exceed this size, they will
218       # be JSON-encoded, truncated to this size, and logged as
219       # params_truncated.
220       MaxRequestLogParamsSize: 2000
221
222     Collections:
223       # Allow clients to create collections by providing a manifest with
224       # unsigned data blob locators. IMPORTANT: This effectively disables
225       # access controls for data stored in Keep: a client who knows a hash
226       # can write a manifest that references the hash, pass it to
227       # collections.create (which will create a permission link), use
228       # collections.get to obtain a signature for that data locator, and
229       # use that signed locator to retrieve the data from Keep. Therefore,
230       # do not turn this on if your users expect to keep data private from
231       # one another!
232       BlobSigning: true
233
234       # blob_signing_key is a string of alphanumeric characters used to
235       # generate permission signatures for Keep locators. It must be
236       # identical to the permission key given to Keep. IMPORTANT: This is
237       # a site secret. It should be at least 50 characters.
238       #
239       # Modifying blob_signing_key will invalidate all existing
240       # signatures, which can cause programs to fail (e.g., arv-put,
241       # arv-get, and Crunch jobs).  To avoid errors, rotate keys only when
242       # no such processes are running.
243       BlobSigningKey: ""
244
245       # Default replication level for collections. This is used when a
246       # collection's replication_desired attribute is nil.
247       DefaultReplication: 2
248
249       # Lifetime (in seconds) of blob permission signatures generated by
250       # the API server. This determines how long a client can take (after
251       # retrieving a collection record) to retrieve the collection data
252       # from Keep. If the client needs more time than that (assuming the
253       # collection still has the same content and the relevant user/token
254       # still has permission) the client can retrieve the collection again
255       # to get fresh signatures.
256       #
257       # This must be exactly equal to the -blob-signature-ttl flag used by
258       # keepstore servers.  Otherwise, reading data blocks and saving
259       # collections will fail with HTTP 403 permission errors.
260       #
261       # Modifying blob_signature_ttl invalidates existing signatures; see
262       # blob_signing_key note above.
263       #
264       # The default is 2 weeks.
265       BlobSigningTTL: 336h
266
267       # Default lifetime for ephemeral collections: 2 weeks. This must not
268       # be less than blob_signature_ttl.
269       DefaultTrashLifetime: 336h
270
271       # Interval (seconds) between trash sweeps. During a trash sweep,
272       # collections are marked as trash if their trash_at time has
273       # arrived, and deleted if their delete_at time has arrived.
274       TrashSweepInterval: 60s
275
276       # If true, enable collection versioning.
277       # When a collection's preserve_version field is true or the current version
278       # is older than the amount of seconds defined on preserve_version_if_idle,
279       # a snapshot of the collection's previous state is created and linked to
280       # the current collection.
281       CollectionVersioning: false
282
283       #   0s = auto-create a new version on every update.
284       #  -1s = never auto-create new versions.
285       # > 0s = auto-create a new version when older than the specified number of seconds.
286       PreserveVersionIfIdle: -1s
287
288       # Managed collection properties. At creation time, if the client didn't
289       # provide the listed keys, they will be automatically populated following
290       # one of the following behaviors:
291       #
292       # * UUID of the user who owns the containing project.
293       #   responsible_person_uuid: {function: original_owner, protected: true}
294       #
295       # * Default concrete value.
296       #   foo_bar: {value: baz, protected: false}
297       #
298       # If protected is true, only an admin user can modify its value.
299       ManagedProperties: {}
300
301     Login:
302       # These settings are provided by your OAuth2 provider (e.g.,
303       # sso-provider).
304       ProviderAppSecret: ""
305       ProviderAppID: ""
306
307     Git:
308       # Git repositories must be readable by api server, or you won't be
309       # able to submit crunch jobs. To pass the test suites, put a clone
310       # of the arvados tree in {git_repositories_dir}/arvados.git or
311       # {git_repositories_dir}/arvados/.git
312       Repositories: /var/lib/arvados/git/repositories
313
314     TLS:
315       Certificate: ""
316       Key: ""
317       Insecure: false
318
319     Containers:
320       # List of supported Docker Registry image formats that compute nodes
321       # are able to use. ` + "`" + `arv keep docker` + "`" + ` will error out if a user tries
322       # to store an image with an unsupported format. Use an empty array
323       # to skip the compatibility check (and display a warning message to
324       # that effect).
325       #
326       # Example for sites running docker < 1.10: ["v1"]
327       # Example for sites running docker >= 1.10: ["v2"]
328       # Example for disabling check: []
329       SupportedDockerImageFormats: ["v2"]
330
331       # Include details about job reuse decisions in the server log. This
332       # causes additional database queries to run, so it should not be
333       # enabled unless you expect to examine the resulting logs for
334       # troubleshooting purposes.
335       LogReuseDecisions: false
336
337       # Default value for keep_cache_ram of a container's runtime_constraints.
338       DefaultKeepCacheRAM: 268435456
339
340       # Number of times a container can be unlocked before being
341       # automatically cancelled.
342       MaxDispatchAttempts: 5
343
344       # Default value for container_count_max for container requests.  This is the
345       # number of times Arvados will create a new container to satisfy a container
346       # request.  If a container is cancelled it will retry a new container if
347       # container_count < container_count_max on any container requests associated
348       # with the cancelled container.
349       MaxRetryAttempts: 3
350
351       # The maximum number of compute nodes that can be in use simultaneously
352       # If this limit is reduced, any existing nodes with slot number >= new limit
353       # will not be counted against the new limit. In other words, the new limit
354       # won't be strictly enforced until those nodes with higher slot numbers
355       # go down.
356       MaxComputeVMs: 64
357
358       # Preemptible instance support (e.g. AWS Spot Instances)
359       # When true, child containers will get created with the preemptible
360       # scheduling parameter parameter set.
361       UsePreemptibleInstances: false
362
363       # PEM encoded SSH key (RSA, DSA, or ECDSA) used by the
364       # (experimental) cloud dispatcher for executing containers on
365       # worker VMs. Begins with "-----BEGIN RSA PRIVATE KEY-----\n"
366       # and ends with "\n-----END RSA PRIVATE KEY-----\n".
367       DispatchPrivateKey: none
368
369       # Maximum time to wait for workers to come up before abandoning
370       # stale locks from a previous dispatch process.
371       StaleLockTimeout: 1m
372
373       Logging:
374         # When you run the db:delete_old_container_logs task, it will find
375         # containers that have been finished for at least this many seconds,
376         # and delete their stdout, stderr, arv-mount, crunch-run, and
377         # crunchstat logs from the logs table.
378         MaxAge: 720h
379
380         # These two settings control how frequently log events are flushed to the
381         # database.  Log lines are buffered until either crunch_log_bytes_per_event
382         # has been reached or crunch_log_seconds_between_events has elapsed since
383         # the last flush.
384         LogBytesPerEvent: 4096
385         LogSecondsBetweenEvents: 1
386
387         # The sample period for throttling logs.
388         LogThrottlePeriod: 60s
389
390         # Maximum number of bytes that job can log over crunch_log_throttle_period
391         # before being silenced until the end of the period.
392         LogThrottleBytes: 65536
393
394         # Maximum number of lines that job can log over crunch_log_throttle_period
395         # before being silenced until the end of the period.
396         LogThrottleLines: 1024
397
398         # Maximum bytes that may be logged by a single job.  Log bytes that are
399         # silenced by throttling are not counted against this total.
400         LimitLogBytesPerJob: 67108864
401
402         LogPartialLineThrottlePeriod: 5s
403
404         # Container logs are written to Keep and saved in a
405         # collection, which is updated periodically while the
406         # container runs.  This value sets the interval between
407         # collection updates.
408         LogUpdatePeriod: 30m
409
410         # The log collection is also updated when the specified amount of
411         # log data (given in bytes) is produced in less than one update
412         # period.
413         LogUpdateSize: 32MiB
414
415       SLURM:
416         Managed:
417           # Path to dns server configuration directory
418           # (e.g. /etc/unbound.d/conf.d). If false, do not write any config
419           # files or touch restart.txt (see below).
420           DNSServerConfDir: ""
421
422           # Template file for the dns server host snippets. See
423           # unbound.template in this directory for an example. If false, do
424           # not write any config files.
425           DNSServerConfTemplate: ""
426
427           # String to write to {dns_server_conf_dir}/restart.txt (with a
428           # trailing newline) after updating local data. If false, do not
429           # open or write the restart.txt file.
430           DNSServerReloadCommand: ""
431
432           # Command to run after each DNS update. Template variables will be
433           # substituted; see the "unbound" example below. If false, do not run
434           # a command.
435           DNSServerUpdateCommand: ""
436
437           ComputeNodeDomain: ""
438           ComputeNodeNameservers:
439             - 192.168.1.1
440
441           # Hostname to assign to a compute node when it sends a "ping" and the
442           # hostname in its Node record is nil.
443           # During bootstrapping, the "ping" script is expected to notice the
444           # hostname given in the ping response, and update its unix hostname
445           # accordingly.
446           # If false, leave the hostname alone (this is appropriate if your compute
447           # nodes' hostnames are already assigned by some other mechanism).
448           #
449           # One way or another, the hostnames of your node records should agree
450           # with your DNS records and your /etc/slurm-llnl/slurm.conf files.
451           #
452           # Example for compute0000, compute0001, ....:
453           # assign_node_hostname: compute%<slot_number>04d
454           # (See http://ruby-doc.org/core-2.2.2/Kernel.html#method-i-format for more.)
455           AssignNodeHostname: "compute%<slot_number>d"
456
457       JobsAPI:
458         # Enable the legacy Jobs API.  This value must be a string.
459         # 'auto' -- (default) enable the Jobs API only if it has been used before
460         #         (i.e., there are job records in the database)
461         # 'true' -- enable the Jobs API despite lack of existing records.
462         # 'false' -- disable the Jobs API despite presence of existing records.
463         Enable: 'auto'
464
465         # Git repositories must be readable by api server, or you won't be
466         # able to submit crunch jobs. To pass the test suites, put a clone
467         # of the arvados tree in {git_repositories_dir}/arvados.git or
468         # {git_repositories_dir}/arvados/.git
469         GitInternalDir: /var/lib/arvados/internal.git
470
471         # Docker image to be used when none found in runtime_constraints of a job
472         DefaultDockerImage: ""
473
474         # none or slurm_immediate
475         CrunchJobWrapper: none
476
477         # username, or false = do not set uid when running jobs.
478         CrunchJobUser: crunch
479
480         # The web service must be able to create/write this file, and
481         # crunch-job must be able to stat() it.
482         CrunchRefreshTrigger: /tmp/crunch_refresh_trigger
483
484         # Control job reuse behavior when two completed jobs match the
485         # search criteria and have different outputs.
486         #
487         # If true, in case of a conflict, reuse the earliest job (this is
488         # similar to container reuse behavior).
489         #
490         # If false, in case of a conflict, do not reuse any completed job,
491         # but do reuse an already-running job if available (this is the
492         # original job reuse behavior, and is still the default).
493         ReuseJobIfOutputsDiffer: false
494
495       CloudVMs:
496         # Enable the cloud scheduler (experimental).
497         Enable: false
498
499         # Name/number of port where workers' SSH services listen.
500         SSHPort: "22"
501
502         # Interval between queue polls.
503         PollInterval: 10s
504
505         # Shell command to execute on each worker to determine whether
506         # the worker is booted and ready to run containers. It should
507         # exit zero if the worker is ready.
508         BootProbeCommand: "docker ps"
509
510         # Minimum interval between consecutive probes to a single
511         # worker.
512         ProbeInterval: 10s
513
514         # Maximum probes per second, across all workers in a pool.
515         MaxProbesPerSecond: 10
516
517         # Time before repeating SIGTERM when killing a container.
518         TimeoutSignal: 5s
519
520         # Time to give up on SIGTERM and write off the worker.
521         TimeoutTERM: 2m
522
523         # Maximum create/destroy-instance operations per second (0 =
524         # unlimited).
525         MaxCloudOpsPerSecond: 0
526
527         # Interval between cloud provider syncs/updates ("list all
528         # instances").
529         SyncInterval: 1m
530
531         # Time to leave an idle worker running (in case new containers
532         # appear in the queue that it can run) before shutting it
533         # down.
534         TimeoutIdle: 1m
535
536         # Time to wait for a new worker to boot (i.e., pass
537         # BootProbeCommand) before giving up and shutting it down.
538         TimeoutBooting: 10m
539
540         # Maximum time a worker can stay alive with no successful
541         # probes before being automatically shut down.
542         TimeoutProbe: 10m
543
544         # Time after shutting down a worker to retry the
545         # shutdown/destroy operation.
546         TimeoutShutdown: 10s
547
548         # Worker VM image ID.
549         ImageID: ""
550
551         # Tags to add on all resources (VMs, NICs, disks) created by
552         # the container dispatcher. (Arvados's own tags --
553         # InstanceType, IdleBehavior, and InstanceSecret -- will also
554         # be added.)
555         ResourceTags:
556           SAMPLE: "tag value"
557
558         # Prefix for predefined tags used by Arvados (InstanceSetID,
559         # InstanceType, InstanceSecret, IdleBehavior). With the
560         # default value "Arvados", tags are "ArvadosInstanceSetID",
561         # "ArvadosInstanceSecret", etc.
562         #
563         # This should only be changed while no cloud resources are in
564         # use and the cloud dispatcher is not running. Otherwise,
565         # VMs/resources that were added using the old tag prefix will
566         # need to be detected and cleaned up manually.
567         TagKeyPrefix: Arvados
568
569         # Cloud driver: "azure" (Microsoft Azure) or "ec2" (Amazon AWS).
570         Driver: ec2
571
572         # Cloud-specific driver parameters.
573         DriverParameters:
574
575           # (ec2) Credentials.
576           AccessKeyID: ""
577           SecretAccessKey: ""
578
579           # (ec2) Instance configuration.
580           SecurityGroupIDs:
581             - ""
582           SubnetID: ""
583           Region: ""
584           EBSVolumeType: gp2
585           AdminUsername: debian
586
587           # (azure) Credentials.
588           SubscriptionID: ""
589           ClientID: ""
590           ClientSecret: ""
591           TenantID: ""
592
593           # (azure) Instance configuration.
594           CloudEnvironment: AzurePublicCloud
595           ResourceGroup: ""
596           Location: centralus
597           Network: ""
598           Subnet: ""
599           StorageAccount: ""
600           BlobContainer: ""
601           DeleteDanglingResourcesAfter: 20s
602           AdminUsername: arvados
603
604     InstanceTypes:
605
606       # Use the instance type name as the key (in place of "SAMPLE" in
607       # this sample entry).
608       SAMPLE:
609         # Cloud provider's instance type. Defaults to the configured type name.
610         ProviderType: ""
611         VCPUs: 1
612         RAM: 128MiB
613         IncludedScratch: 16GB
614         AddedScratch: 0
615         Price: 0.1
616         Preemptible: false
617
618     Mail:
619       MailchimpAPIKey: ""
620       MailchimpListID: ""
621       SendUserSetupNotificationEmail: ""
622       IssueReporterEmailFrom: ""
623       IssueReporterEmailTo: ""
624       SupportEmailAddress: ""
625       EmailFrom: ""
626     RemoteClusters:
627       "*":
628         Host: ""
629         Proxy: false
630         Scheme: https
631         Insecure: false
632         ActivateUsers: false
633       SAMPLE:
634         # API endpoint host or host:port; default is {id}.arvadosapi.com
635         Host: sample.arvadosapi.com
636
637         # Perform a proxy request when a local client requests an
638         # object belonging to this remote.
639         Proxy: false
640
641         # Default "https". Can be set to "http" for testing.
642         Scheme: https
643
644         # Disable TLS verify. Can be set to true for testing.
645         Insecure: false
646
647         # When users present tokens issued by this remote cluster, and
648         # their accounts are active on the remote cluster, activate
649         # them on this cluster too.
650         ActivateUsers: false
651
652     Workbench:
653       # Workbench1 configs
654       Theme: default
655       ActivationContactLink: mailto:info@arvados.org
656       ArvadosDocsite: https://doc.arvados.org
657       ArvadosPublicDataDocURL: https://playground.arvados.org/projects/public
658       ShowUserAgreementInline: false
659       SecretToken: ""
660       SecretKeyBase: ""
661       RepositoryCache: /var/www/arvados-workbench/current/tmp/git
662       UserProfileFormFields:
663         SAMPLE:
664           Type: text
665           FormFieldTitle: ""
666           FormFieldDescription: ""
667           Required: true
668       UserProfileFormMessage: 'Welcome to Arvados. All <span style="color:red">required fields</span> must be completed before you can proceed.'
669       ApplicationMimetypesWithViewIcon:
670         cwl: {}
671         fasta: {}
672         go: {}
673         javascript: {}
674         json: {}
675         pdf: {}
676         python: {}
677         x-python: {}
678         r: {}
679         rtf: {}
680         sam: {}
681         x-sh: {}
682         vnd.realvnc.bed: {}
683         xml: {}
684         xsl: {}
685       LogViewerMaxBytes: 1M
686       EnablePublicProjectsPage: true
687       EnableGettingStartedPopup: false
688       APIResponseCompression: true
689       APIClientConnectTimeout: 2m
690       APIClientReceiveTimeout: 5m
691       RunningJobLogRecordsToFetch: 2000
692       ShowRecentCollectionsOnDashboard: true
693       ShowUserNotifications: true
694       MultiSiteSearch: false
695       Repositories: true
696       SiteName: Arvados Workbench
697
698       # Workbench2 configs
699       VocabularyURL: ""
700       FileViewersConfigURL: ""
701 `)