10008: Move test setup from __init__() to setUp()
[arvados.git] / services / api / config / application.default.yml
index 99d2a104279db1558ebc380b9ed3fb2e623ac7ce..5fe03024bf7d3e9ccaee6d108c889c1078421d36 100644 (file)
@@ -220,6 +220,12 @@ common:
   # stderr logs from the logs table.
   clean_job_log_rows_after: <%= 30.days %>
 
+  # When you run the db:delete_old_container_logs task, it will find
+  # containers that have been finished for at least this many seconds,
+  # and delete their stdout, stderr, arv-mount, crunch-run, and
+  # crunchstat logs from the logs table.
+  clean_container_log_rows_after: <%= 30.days %>
+
   # The maximum number of compute nodes that can be in use simultaneously
   # If this limit is reduced, any existing nodes with slot number >= new limit
   # will not be counted against the new limit. In other words, the new limit
@@ -258,6 +264,11 @@ common:
   # Use at your own risk.
   unlogged_attributes: []
 
+  # API methods to disable. Disabled methods are not listed in the
+  # discovery document, and respond 404 to all requests.
+  # Example: ["jobs.create", "pipeline_instances.create"]
+  disable_api_methods: []
+
   ###
   ### Crunch, DNS & compute node management
   ###
@@ -375,6 +386,13 @@ common:
   # graph cache.  This feature is experimental!
   async_permissions_update: false
 
+  # Default value for container_count_max for container requests.  This is the
+  # number of times Arvados will create a new container to satisfy a container
+  # request.  If a container is cancelled it will retry a new container if
+  # container_count < container_count_max on any container requests associated
+  # with the cancelled container.
+  container_count_max: 3
+
 development:
   force_ssl: false
   cache_classes: false