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