X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0fb04af57862494beb38f57b75a1427ee9443e25..e22d3dc998f55e3c21125b1a1be7240f89c23dd6:/lib/config/generated_config.go diff --git a/lib/config/generated_config.go b/lib/config/generated_config.go index 5341a256c1..f8a0e097dc 100644 --- a/lib/config/generated_config.go +++ b/lib/config/generated_config.go @@ -212,6 +212,9 @@ Clusters: WebsocketClientEventQueue: 64 WebsocketServerEventQueue: 4 + # Timeout on requests to internal Keep services. + KeepServiceRequestTimeout: 15s + Users: # Config parameters to automatically setup new users. If enabled, # this users will be able to self-activate. Enable this if you want @@ -401,6 +404,7 @@ Clusters: # Cache parameters for WebDAV content serving: # * TTL: Maximum time to cache manifests and permission checks. # * UUIDTTL: Maximum time to cache collection state. + # * MaxBlockEntries: Maximum number of block cache entries. # * MaxCollectionEntries: Maximum number of collection cache entries. # * MaxCollectionBytes: Approximate memory limit for collection cache. # * MaxPermissionEntries: Maximum number of permission cache entries. @@ -408,18 +412,39 @@ Clusters: WebDAVCache: TTL: 300s UUIDTTL: 5s + MaxBlockEntries: 4 MaxCollectionEntries: 1000 MaxCollectionBytes: 100000000 MaxPermissionEntries: 1000 MaxUUIDEntries: 1000 Login: - # These settings are provided by your OAuth2 provider (e.g., - # sso-provider). + # These settings are provided by your OAuth2 provider (eg + # Google) used to perform upstream authentication. ProviderAppSecret: "" ProviderAppID: "" + # The cluster ID to delegate the user database. When set, + # logins on this cluster will be redirected to the login cluster + # (login cluster must appear in RemoteHosts with Proxy: true) + LoginCluster: "" + + # How long a cached token belonging to a remote cluster will + # remain valid before it needs to be revalidated. + RemoteTokenRefresh: 5m + Git: + # Path to git or gitolite-shell executable. Each authenticated + # request will execute this program with the single argument "http-backend" + GitCommand: /usr/bin/git + + # Path to Gitolite's home directory. If a non-empty path is given, + # the CGI environment will be set up to support the use of + # gitolite-shell as a GitCommand: for example, if GitoliteHome is + # "/gh", then the CGI environment will have GITOLITE_HTTP_HOME=/gh, + # PATH=$PATH:/gh/bin, and GL_BYPASS_ACCESS_CHECKS=1. + GitoliteHome: "" + # Git repositories must be readable by api server, or you won't be # able to submit crunch jobs. To pass the test suites, put a clone # of the arvados tree in {git_repositories_dir}/arvados.git or