-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdeploy.cfg
44 lines (36 loc) · 1.53 KB
/
deploy.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#
# The deploy.cfg file is located in the module top dir is a necessary file
# needed for deployments. This file contains config variables, such as
# mongodb-host, mysqldb-host. Standard variable names are listed on the trac
# wiki at https://trac.kbase.us/projects/kbase/wiki/DeployCfgStandards
#
# The variables in the deploy.cfg file will get "injected" into the module
# makefile. In short, the variable is uppercased and dashes become underscores,
# so mongodb-host in the deploy.cfg file becomes MONGODB_HOST in the module
# makefile when the module makefile is invoked by the system make file at the
# top level of the dev container.
#
[UserProfile]
# host where mongo lives, e.g. localhost:27017
mongodb-host = localhost
# name of the workspace mongo database
mongodb-database = user_profile_db
# the user name for an account with readWrite access to the database
#mongodb-user = add username here
# password for the account
#mongodb-pwd = add password here
# Whether to enable ('true') the MongoDB retryWrites parameter or not (anything other than 'true').
# See https://www.mongodb.com/docs/manual/core/retryable-writes/
mongodb-retrywrites=false
# the user name for an administrator
admin = kbuserprofileadmin
# port for the service.
port = 7126
# server thread count - this determines the number of requests that can be
# processed simultaneously.
server-threads = 20
#Minimum memory size in MB.
min-memory = 1000
#Maximum memory size in MB.
max-memory = 2000
auth-service-url = https://ci.kbase.us/services/auth/api/legacy/KBase/Sessions/Login