forked from scylladb/argus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathargus_web.example.yaml
More file actions
83 lines (74 loc) · 2.42 KB
/
argus_web.example.yaml
File metadata and controls
83 lines (74 loc) · 2.42 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# 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
# Enable Cloudflare Access JWT auth by adding "cf" to LOGIN_METHODS.
LOGIN_METHODS:
- password
- gh
- cf
# Application log level
APP_LOG_LEVEL: INFO
# Secret key used to match session data
SECRET_KEY: MUSTBEUNIQUE
# Allowed buckets for S3 proxying
S3_ALLOWED_BUCKETS:
- my-bucket-name
# Allowed mime types for S3 proxying
S3_ALLOWED_MIME:
- image/png
- application/zstd
- application/gzip
# AWS Client ID
AWS_CLIENT_ID: ABCDE
# AWS Client Secret
AWS_CLIENT_SECRET: YourSecretKey
# 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'
# 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
# JIRA Server address
JIRA_SERVER: https://your.jira.instance
# Email of the service user
JIRA_EMAIL: user@your.jira.instance
# API Token of the service user
JIRA_TOKEN: base64Token
JENKINS_URL: https://your_jenkins_hostname
JENKINS_USER: user
JENKINS_API_TOKEN_NAME: Optional
JENKINS_API_TOKEN: hex-token
EMAIL_SENDER: "qabot@scylladb.com"
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
# Documentation link, if present, will be shown in the nav bar
APP_DOC_LINK:
# Cloudflare Access JWT verification
CLOUDFLARE_ACCESS_TEAM_DOMAIN: your-team.cloudflareaccess.com
# Application Audience (AUD) Tag for the Access app
CLOUDFLARE_ACCESS_AUD: your-application-aud-tag-from-cloudflare-dashboard