forked from scylladb/argus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
argus_web.example.yaml
52 lines (48 loc) · 1.61 KB
/
argus_web.example.yaml
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
45
46
47
48
49
50
51
52
# BASE URL FOR ARGUS APPLICATION
BASE_URL: "https://argus.scylladb.com"
# Main DB Cluster contact points
SCYLLA_CONTACT_POINTS:
- 1.1.1.1
- 2.2.2.2
- 3.3.3.3
# Username
SCYLLA_USERNAME: user
# Password
SCYLLA_PASSWORD: password
# Default keyspace (can be created using 'create-keyspace' command with RF set to the number of contact points)
SCYLLA_KEYSPACE_NAME: mykeyspacename
# Replication factor used - if set, will override contact_points as amount of nodes for replication
# SCYLLA_REPLICATION_FACTOR: 3
# Which login methods to enable
LOGIN_METHODS:
- password
- gh
# Application log level
APP_LOG_LEVEL: INFO
# Secret key used to match session data
SECRET_KEY: MUSTBEUNIQUE
# Client ID of a github oauth application
GITHUB_CLIENT_ID: YOUR_GITHUB_CLIENT_ID
# Scopes used for Github Application:
# GITHUB_SCOPES: 'user:email read:user read:org repo'
# Client secret of a github oauth application
GITHUB_CLIENT_SECRET: YOUR_GITHUB_CLIENT_SECRET
# Github personal access token
GITHUB_ACCESS_TOKEN: YOUR_GITHUB_PERSONAL_ACCESS_TOKEN
# List of required organization names (Comment out to disable organization requirement)
GITHUB_REQUIRED_ORGANIZATIONS:
# at least one is required for user to successfully authenticate
- myorg
- otherorg
JENKINS_URL: https://your_jenkins_hostname
JENKINS_USER: user
JENKINS_API_TOKEN_NAME: Optional
JENKINS_API_TOKEN: hex-token
EMAIL_SENDER: "[email protected]"
EMAIL_SENDER_USER: ""
EMAIL_SENDER_PASS: ""
EMAIL_SERVER: "smtp.gmail.com"
EMAIL_SERVER_PORT: "587"
# Used to determine whether or not assigned job is still considered valid.
# TODO: Move to user settings
JOB_VALIDITY_PERIOD_DAYS: 30