-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvalues.yaml
More file actions
126 lines (116 loc) · 3.47 KB
/
Copy pathvalues.yaml
File metadata and controls
126 lines (116 loc) · 3.47 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
imageOrg: "drycc"
imagePullPolicy: "Always"
imageTag: "canary"
imageRegistry: "registry.drycc.cc"
nodeAffinityPreset:
key: "drycc.cc/node"
type: "soft"
values:
- "true"
podAffinityPreset:
key: "security"
type: ""
values:
- "drycc-security"
podAntiAffinityPreset:
key: "app"
type: "soft"
values:
- "drycc-passport"
# Set passport deployment replicas
replicas: 1
# limitsCpu: "100m"
# limitsMemory: "50Mi"
## databaseUrl and databaseReplicaUrl are will no longer use the built-in database component
databaseUrl: ""
databaseReplicaUrl: ""
# 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
adminUsername: "admin"
adminPassword: "admin"
adminEmail: "admin@email.com"
# The following configurations to initialize oauth2 application
# Names are all lowercase letters
# The key and secret are generated automatically if they are empty
# If prefix is not empty, it represents internal application.
#
initApplications:
- name: "controller"
key: ""
secret: ""
prefix: "drycc"
redirect_uri: "/v2/complete/drycc/"
- name: "grafana"
key: ""
secret: ""
prefix: "drycc-monitor-grafana"
redirect_uri: "/login/generic_oauth"
# Service
service:
# Provide any additional service annotations
annotations: {}
redis:
replicas: 1
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
grafanaLocation: "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)
databaseLocation: "on-cluster"
# Please check `kubernetes.io/ingress.class`
ingressClass: ""
# 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.
clusterDomain: "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"
platformDomain: ""
# Whether cert_passport is enabled to automatically generate passport certificates
certManagerEnabled: true
passportLocation: "on-cluster"