-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvalues.yaml
More file actions
81 lines (78 loc) · 2.64 KB
/
Copy pathvalues.yaml
File metadata and controls
81 lines (78 loc) · 2.64 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
image_org: "drycc"
image_pull_policy: "Always"
image_tag: "canary"
image_registry: "docker.io"
# Set passport deployment replicas
replicas: 1
# limits_cpu: "100m"
# limits_memory: "50Mi"
## Configuring this will no longer use the built-in database component
database_url: ""
# Any custom controller environment variables
# can be specified as key-value pairs under environment
# this is usually a non required setting.
environment:
## General settings
# DRYCC_DEBUG: False
# ADMIN_ENABLED: False
# REGISTRATION_ENABLED: False
## LDAP setting
# LDAP_ENDPOINT: ""
# LDAP_BIND_DN: ""
# LDAP_BIND_PASSWORD: ""
# LDAP_USER_BASEDN: ""
# LDAP_USER_FILTER: ""
# LDAP_GROUP_BASEDN: ""
# LDAP_GROUP_FILTER: ""
# LDAP_ACTIVE_GROUP: ""
# LDAP_STAFF_GROUP: ""
# LDAP_SUPERUSER_GROUP: ""
## OATUH2 setting
# ACCESS_TOKEN_EXPIRE_SECONDS: 2592000
# ID_TOKEN_EXPIRE_SECONDS: 2592000
# AUTHORIZATION_CODE_EXPIRE_SECONDS: 600
# CLIENT_SECRET_GENERATOR_LENGTH: 64
# REFRESH_TOKEN_EXPIRE_SECONDS: 5184000
## EAMIL setting
# EMAIL_HOST: ""
# EMAIL_PORT: ""
# DEFAULT_FROM_EMAIL: ""
# EMAIL_HOST_USER: ""
# EMAIL_HOST_PASSWORD: ""
# EMAIL_USE_TLS: ""
# EMAIL_USE_SSL: ""
# Used to create Django admin users
admin_username: "admin"
admin_password: "admin"
admin_email: "admin@email.com"
global:
# Set the location of Workflow's grafana instance
#
# Valid values are:
# - on-cluster: Run Grafana within the Kubernetes cluster
# - off-cluster: Grafana is running outside of the cluster
grafana_location: "on-cluster"
# Admin email, used for each component to send email to administrator
email: "drycc@drycc.cc"
# Set the location of Workflow's PostgreSQL database
#
# Valid values are:
# - on-cluster: Run PostgreSQL within the Kubernetes cluster (credentials are generated
# automatically; backups are sent to object storage
# configured above)
# - off-cluster: Run PostgreSQL outside the Kubernetes cluster (configure in database section)
database_location: "on-cluster"
# Please check `kubernetes.io/ingress.class`
ingress_class: ""
# A domain name consists of one or more parts.
# Periods (.) are used to separate these parts.
# Each part must be 1 to 63 characters in length and can contain lowercase letters, digits, and hyphens (-).
# It must start and end with a lowercase letter or digit.
cluster_domain: "cluster.local"
# The public resolvable hostname to build your cluster with.
#
# This will be the hostname that is used to build endpoints such as "drycc.$HOSTNAME"
platform_domain: ""
# Whether cert_passport is enabled to automatically generate passport certificates
cert_manager_enabled: true
passport_location: "on-cluster"