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