-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathvalues.yaml
More file actions
291 lines (271 loc) · 11 KB
/
values.yaml
File metadata and controls
291 lines (271 loc) · 11 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
# This is the global configuration file for Workflow
global:
# Admin email, used for each component to send email to administrator
email: "drycc@drycc.cc"
# Set the storage backend
#
# Valid values are:
# - s3: Store persistent data in AWS S3 (configure in S3 section)
# - azure: Store persistent data in Azure's object storage
# - gcs: Store persistent data in Google Cloud Storage
# - oss: Store persistent data in Aliyun OSS
# - minio: Store persistent data on in-cluster Minio server
storage: minio
# 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"
# 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)
redis_location: "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)
rabbitmq_location: "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.
influxdb_location: "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
grafana_location: "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)
registry_location: "on-cluster"
# Prefix for the imagepull secret created when using private registry
registry_secret_prefix: "private-registry"
# The host port to which registry proxy binds to
registry_proxy_port: 5555
# If the Kubernetes cluster uses CNI
# use_cni: true
# Set the `listen` variable for registry-proxy's NGINX
#
# Valid values are:
# - 80: If the Kubernetes cluster run on GKE or AWS, or uses flannel or kubenet as a pod network
# - 127.0.0.1:5555: If the Kubernetes cluster uses CNI
#
# In case of CNI you can not use `hostPort` notation due to https://github.com/kubernetes/kubernetes/issues/23920
# registry_proxy_bind_addr: "80"
# 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
use_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
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 publicly 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_manager is enabled to automatically generate drycc certificates
cert_manager_enabled: "true"
s3:
# Your AWS access key. Leave it empty if you want to use IAM credentials.
accesskey: ""
# Your AWS secret key. Leave it empty if you want to use IAM credentials.
secretkey: ""
# Any S3 region
endpoint: "your-s3-endpoint"
# Your buckets.
builder_bucket: "your-builder-bucket-name"
registry_bucket: "your-registry-bucket-name"
database_bucket: "your-database-bucket-name"
oss:
accesskey: ""
secretkey: ""
endpoint: "your-oos-endpoint"
builder_bucket: "your-builder-bucket-name"
registry_bucket: "your-registry-bucket-name"
database_bucket: "your-database-bucket-name"
azure:
accesskey: "YOUR ACCOUNT NAME"
secretkey: "YOUR ACCOUNT KEY"
endpoint: "your-azure-endpoint"
builder_bucket: "your-builder-container-name"
registry_bucket: "your-registry-container-name"
database_bucket: "your-database-container-name"
gcs:
# key_json is expanded into a JSON file on the remote server. It must be
# well-formatted JSON data.
accesskey: "your accessKey for minio gateway"
secretkey: "your secretkey for minio gateway"
key_json: <base64-encoded JSON data>
projectid: "your-gcs-projectid"
builder_bucket: "your-builder-bucket-name"
registry_bucket: "your-registry-bucket-name"
database_bucket: "your-database-bucket-name"
minio:
accesskey: "8TZRY2JRWMPT6UMXR6I5"
secretkey: "gbstrOvotMMcg2sMfGUhA5a6Et/EI5ALtIHsobYk"
builder_bucket: "0fad60517a9e4225a07d77d7b9b58629"
registry_bucket: "c2da53f11c7a455db35797c3ba625d80"
database_bucket: "e95eb5c54c3a4047abe5269a68fa9a67"
# Configure the following ONLY if you want persistence for on-cluster minio
persistence:
enabled: false # Set to true to enable persistence
accessMode: ReadWriteOnce
size: 5Gi # PVC size
## minio 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 (slugrunner images) 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:
app_image_pull_policy: "IfNotPresent"
# Possible values are:
# enabled - allows for open registration
# disabled - turns off open registration
# admin_only - allows for registration by an admin only.
registration_mode: "admin_only"
# Set storageClassName, It is used for application mount.
app_storage_class: ""
# Set controller deployment replicas
replicas: 1
# Set celery replicas
celery_replicas: 1
database:
# The username and password to be used by the on-cluster database.
# If left empty they will be generated using randAlphaNum
username: ""
password: ""
# Configure the following ONLY if using an off-cluster PostgreSQL database
url: "postgres://USER:PASSWORD@HOST:PORT/NAME"
nsqd:
replicas: 1
redis:
# The following parameters are configured only when using an on-cluster Redis instance
replicas: 1
# The following 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
rabbitmq:
# Configure the following ONLY if using an off-cluster rabbitmq
url: "amqp://myuser:mypassword@localhost:5672/myvhost"
# The username and password to be used by the on-cluster database.
# 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
accessMode: ReadWriteOnce
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: ""
volumeName: ""
influxdb:
# URL configuration is only available in off-cluster Influx database
url: "http://my.influx.url:8086"
bucket: "kubernetes"
org: "org"
token: "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:
user: "admin"
password: "admin"
# 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: default
volumeName: ""
registry:
hostname: ""
organization: ""
username: ""
password: ""