-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathvalues.yaml
More file actions
301 lines (282 loc) · 11.9 KB
/
values.yaml
File metadata and controls
301 lines (282 loc) · 11.9 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
# This is the global configuration file for Workflow
# If the service is used by a component alone, it needs to be configured inside the component.
# Refer to rabbitmqUrl and databaseUrl of the controller component.
# If the service is dependent on multiple components and there is state synchronization,
# it needs to be configured separately, such as storage and influxdb.
global:
# Admin email, used for each component to send email to administrator
email: "drycc@drycc.cc"
# Set the location of Workflow's Object Storage
#
# Valid values are:
# - on-cluster: Run drycc storage within the Kubernetes cluster
# - off-cluster: Run Storage outside the Kubernetes cluster (Compatible with s3 API)
storageLocation: "on-cluster"
# 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
databaseLocation: "on-cluster"
# Set the location of Workflow's Redis instance
#
# Valid values are:
# - on-cluster: Run Redis within the Kubernetes cluster
# - off-cluster: Run Redis outside the Kubernetes cluster (configure in redis section)
redisLocation: "on-cluster"
# Set the location of Workflow's rabbitmq instance
# Valid values are:
# - on-cluster: Run Rabbitmq within the Kubernetes cluster
# - off-cluster: Run Rabbitmq outside the Kubernetes cluster (configure in controller section)
rabbitmqLocation: "on-cluster"
# Set the location of Workflow's influxdb cluster
#
# Valid values are:
# - on-cluster: Run Influxdb within the Kubernetes cluster
# - off-cluster: Influxdb is running outside of the cluster and credentials and connection information will be provided.
influxdbLocation: "on-cluster"
# 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"
# Set the location of Workflow's Registry
#
# Valid values are:
# - on-cluster: Run registry within the Kubernetes cluster
# - off-cluster: Use registry outside the Kubernetes cluster (example: dockerhub,quay.io,self-hosted)
registryLocation: "on-cluster"
# Prefix for the imagepull secret created when using private registry
registrySecretPrefix: "private-registry"
# The host port to which registry proxy binds to
registryProxyPort: 5555
# Enable usage of RBAC authorization mode
#
# Valid values are:
# - true: all RBAC-related manifests will be installed (in case your cluster supports RBAC)
# - false: no RBAC-related manifests will be installed
rbac: true
# Please check `kubernetes.io/ingress.class`
# The cert-manager component must be installed
# If you want to use HTTPSEnforced or allowlist functions, you must specify:
# - nginx
# - traefik
# Only the above options have been supported so far
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 publicly resolvable hostname to build your cluster with.
#
# This will be the hostname that is used to build endpoints such as "drycc.$HOSTNAME"
platformDomain: ""
# Whether certManagerEnabled is true to automatically generate drycc certificates
certManagerEnabled: true
# Set the location of Workflow's passport
#
# Valid values are:
# - on-cluster: Run passport within the Kubernetes cluster
# - off-cluster: Use passport outside the Kubernetes cluster
passportLocation: "on-cluster"
storage:
# bucket lookup supported by the server.
# Valid options are '[dns, path]'
# When the storage is off-cluster, this value can be set
# Otherwise, Hard coded as `path`
lookup: "path"
# health check url is only available in off-cluster storage
health: ""
# endpoint configuration is only available in off-cluster storage
endpoint: ""
# If storage is off-cluster, accesskey and secretkey must be specified
# Otherwise, they are generated randomly, if they are empty
accesskey: ""
secretkey: ""
# The following three bucket name parameters are valid only in cluster-off
# In the case of cluster-on, they are hard coded and named: builder, registry
builderBucket: "drycc-builder-bucket"
registryBucket: "drycc-registry-bucket"
# Configure the following ONLY if you want persistence for on-cluster storage
persistence:
enabled: false # Set to true to enable persistence
accessMode: ReadWriteOnce
size: 5Gi # PVC size
## storage data Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
## Storage class of PV to bind. By default it looks for standard storage class.
## If the PV uses a different storage class, specify that here.
storageClass: ""
volumeName: ""
# Set the default (global) way of how Application (your own) images are
# pulled from within the Controller.
# This can be configured per Application as well in the Controller.
#
# This affects pull apps and git push apps
#
# Values values are:
# - Always
# - IfNotPresent
builder:
service:
# Service type default to ClusterIP, the entrance will be taken over by router.
type: ClusterIP
# If service.type is not set to NodePort, the following statement will be ignored.
nodePort: ""
controller:
appImagePullPolicy: "IfNotPresent"
# Possible values are:
# enabled - allows for open registration
# disabled - turns off open registration
# admin_only - allows for registration by an admin only.
registrationMode: "admin_only"
# Set storageClassName, It is used for application mount.
appStorageClass: "drycc-storage"
# Set controller deployment replicas
replicas: 1
# Set celery replicas
celeryReplicas: 1
## databaseUrl and databaseReplicaUrl are will no longer use the built-in database component
databaseUrl: ""
databaseReplicaUrl: ""
# Configuring this will no longer use the built-in rabbitmq component
rabbitmqUrl: ""
database:
# The following parameters are configured only when using an on-cluster Database instance
# If left empty they will be generated using randAlphaNum
username: ""
password: ""
persistence:
enabled: false # Set to true to enable persistence
accessMode: ReadWriteOnce
size: 5Gi # PVC size
## database data Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
## Storage class of PV to bind. By default it looks for standard storage class.
## If the PV uses a different storage class, specify that here.
storageClass: ""
volumeName: ""
redis:
# The addrs parameters are configured only when using an off-cluster Redis instance
addrs: "" # A list of clusters: "127.0.0.1:7001/1,127.0.0.2:7002/1"
password: "redis password" # "" == no password
# The following parameters are configured only when using an on-cluster Redis instance
replicas: 1
persistence:
enabled: false # Set to true to enable persistence
size: 5Gi
storageClass: ""
rabbitmq:
# The following parameters are configured only when using an on-cluster Rabbitmq instance
# If left empty they will be generated using randAlphaNum
username: ""
password: ""
# GCP PDs and EBS volumes are supported only
persistence:
enabled: false # Set to true to enable persistence
size: 5Gi # PVC size
## rabbitmq data Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
## Storage class of PV to bind. By default it looks for standard storage class.
## If the PV uses a different storage class, specify that here.
storageClass: ""
influxdb:
# URL configuration is only available in off-cluster Influx database
url: "http://my.influx.url:8086"
bucket: "kubernetes"
org: "org"
# If influxdb is off-cluster, it must be specified
# Otherwise, it is generated randomly, if it is empty
token: ""
# Configure the following is only available in on-cluster Influx database
user: "admin"
password: "admin123"
retention: "30d"
# GCP PDs and EBS volumes are supported only
persistence:
enabled: false # Set to true to enable persistence
accessMode: ReadWriteOnce
size: 5Gi # PVC size
## influxdb data Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
## Storage class of PV to bind. By default it looks for standard storage class.
## If the PV uses a different storage class, specify that here.
storageClass: ""
volumeName: ""
fluentd:
syslog:
# Configure the following ONLY if using Fluentd to send log messages to both
# the Logger component and external syslog endpoint
# external syslog endpoint url
host: ""
# external syslog endpoint port
port: ""
monitor:
grafana:
# Configure the following ONLY if you want persistence for on-cluster grafana
# GCP PDs and EBS volumes are supported only
persistence:
enabled: false # Set to true to enable persistence
accessMode: ReadWriteOnce
size: 5Gi # PVC size
## influxdb data Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
## Storage class of PV to bind. By default it looks for standard storage class.
## If the PV uses a different storage class, specify that here.
storageClass: ""
volumeName: ""
registry:
# The host parameters is configured only when using an off-cluster Registry instance
host: ""
# The following organization parameters are valid only in cluster-off
# In the case of cluster-on, the value is app name, which is dynamically assigned by builder.
organization: ""
username: ""
password: ""
# The redirect parameters is configured only when using an on-cluster Registry instance
# The subsection provides configuration for managing redirects from content backends.
# For backends that support it, redirecting is disabled by default.
redirect: "false"
passport:
# The following parameters are configured only when using an on-cluster passport
# Set passport deployment replicas
replicas: 1
## databaseUrl and databaseReplicaUrl are will no longer use the built-in database component
databaseUrl: ""
databaseReplicaUrl: ""
# acme configuration takes effect if and only if certManagerEnabled is true
acme:
server: https://acme-v02.api.letsencrypt.org/directory
# EAB credentials
externalAccountBinding:
keyID: ""
keySecret: ""