-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsystemlink-secrets.yaml
718 lines (686 loc) · 29.4 KB
/
systemlink-secrets.yaml
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
## Default secret values for the systemlink Helm chart.
## This is a YAML-formatted file.
## Declare override values for variables.
global:
secrets:
mongodb:
## <ATTENTION> - If `global.mongodb.install` is false, configure the external MongoDB connection string to be used by services in this deployment.
#
# If you are setting credentials per service (e.g. assetservice.secrets.mongodb.servicePassword) leave the placeholders
# <username> and <password> in the connection string. These will be replaced dynamically when deploying.
#
# If you have provisioned MongoDB to use a single set of credentials replace <username>:<password> with the values desired.
#
# <database> is required and will be replaced dynamically.
#
# examples:
# - MongoDB Atlas: mongodb+srv://<username>:<password>@my-atlas-cluster.mongodb.net/<database>
# - MongoDB Community: mongodb://<username>:<password>@my-mongodb-cluster-0,my-mongodb-cluster-1,my-mongodb-cluster-2/<database>?replicaSet=rs0
# - MongoDB Community (single set of credentials): mongodb://myusername:myPassw0rD@my-mongodb-cluster-0,my-mongodb-cluster-1,my-mongodb-cluster-2/<database>?replicaSet=rs0
#
# If `global.mongodb.install` is `true` leave the connection string as a blank string or comment it out.
connection_string: ""
## The following values are typically shared across multiple configurations. The values
## here are not used directly as configuration but provide a convenient way to share
## common configuration throughout this file. Individual references to these values can
## be overridden with custom values if required.
##
## User name for S3 access
# <ATTENTION> Configure S3 credentials.
##
s3User: &s3User ""
## Password for s3 access
s3Password: &s3Password ""
##
s3DefaultRegion: &s3DefaultRegion "us-east-1"
## Secrets that apply to the entire application.
##
secrets:
## Container image repository credentials.
##
imagePull:
## Toggle off to disable deployment of this specific secret. This should be done if this secret is being configured as a cluster setting
## rather than for this specific application.
##
# <ATTENTION> - Disable if the container repository credentials are configured elsewhere.
deploySecret: true
## The registry to which this secret applies. Ignored if global.imageRegistry is set.
##
registry: ""
## User for repository access. This information will have been provided with the application.
##
user: &imageRegistryUser "" # <ATTENTION>
## Password for repository access. This information will have been provided with the application.
##
password: &imageRegistryPassword "" # <ATTENTION>
## RabbitMQ message bus credentials for service-to-service communication.
##
rabbitmq:
## Password for RabbitMQ access. No requirements are enforced on the format of this password.
##
password: "" # <ATTENTION>
## This cookie is used to authenticate containers in the RabbitMQ stateful set. Use a strong random sequence of characters.
##
erlangCookie: "" # <ATTENTION>
## Secret configuration for the SystemLink web application.
##
webserver:
secrets:
## Cryptographic key to be used for AES-128 encryption of session data. This key should have a length of 32 bytes.
##
encryptionKey: "" # <ATTENTION>
## Cryptographic key to be used for SHA-256 signing of session data. This key should have a length between 32 and 64 bytes.
##
signatureKey: "" # <ATTENTION>
## If webserver.proxy.authority is configured, optionally provide credentials for the proxy.
##
proxy:
# Optional - The username for the proxy credentials
username: "" # <ATTENTION> - only required if the proxy is enabled.
# Optional - The password for the proxy credentials
password: "" # <ATTENTION> - only required if the proxy is enabled.
## Secrets used to configure the OpenID Connect provider.
##
oidc:
## OpenID Connect client identifier for this application. This value will come from your authentication provider.
##
clientId: "" # <ATTENTION>
## Secret associated with the clientId. This value will come from your authentication provider.
##
clientSecret: "" # <ATTENTION>
## [Optional] A JSON web key set used to authenticate web tokens provided by the authentication provider.
##
# jwks: ""
# The password used to connect to Redis.
redisPassword: "" # <ATTENTION>
## Secret configuration for user management.
##
userservices:
secrets:
## Credentials for the MongoDB cluster.
##
mongodb:
## Root user password for the database cluster.
##
rootPassword: "" # <ATTENTION>
## Password for the limited user allocated to allow the user service to access the database. This password cannot contain commas or any character which must be escaped in a URL.
##
userServicePassword: "" # <ATTENTION>
## Password for the limited user allocated to allow the key service to access the database. This password cannot contain commas or any character which must be escaped in a URL.
##
keyServicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster.
## Refer to the MongoDB documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Cryptographic key used for AEAD encryption of continuation tokens. Use a 32-byte cryptographically random value which is base64 encoded.
##
continuationTokenEncryptionKey: "" # <ATTENTION>
## A list of API keys. SystemLink uses these keys to authorize service-to-service interactions within the application.
## Each entry must provide the key, the name of the assigned service, and a SHA-512 hash of the key.
## For more information visit https://github.com/ni/install-systemlink-enterprise/blob/main/getting-started/secrets.md
##
whitelistedApiKeys: # <ATTENTION>
- serviceName: "assetservice"
key: ""
hash: "<SHA512 hash of key>"
- serviceName: "comments"
key: ""
hash: "<SHA512 hash of key>"
- serviceName: "dashboardhost"
key: ""
hash: "<SHA512 hash of key>"
- serviceName: "jupyterhub"
key: ""
hash: "<SHA512 hash of key>"
- serviceName: "nbexec-argo-workflow"
key: ""
hash: "<SHA512 hash of key>"
- serviceName: "saltmaster-init"
key: ""
hash: "<SHA512 hash of key>"
- serviceName: "sessionmanagerservice"
key: ""
hash: "<SHA512 hash of key>"
- serviceName: "systemsmanagement-service"
key: ""
hash: "<SHA512 hash of key>"
- serviceName: "webserver"
key: ""
hash: "<SHA512 hash of key>"
- serviceName: "routineeventtrigger"
key: ""
hash: "<SHA512 hash of key>"
- serviceName: "routinescheduletrigger"
key: ""
hash: "<SHA512 hash of key>"
- serviceName: "routineexecutor"
key: ""
hash: "<SHA512 hash of key>"
- serviceName: "testmonitor"
key: ""
hash: "<SHA512 hash of key>"
## Secret configuration for Asset Management
##
assetservice:
secrets:
## Credentials for the MongoDB cluster.
##
mongodb:
## Root user password for the database cluster.
##
rootPassword: "" # <ATTENTION>
## Limited user password to allow the service to access the database. This password cannot contain commas or any character that must be escaped in a URL.
##
servicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster.
## Refer to mongodb documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Secret configuration for the Alarm Service
##
alarmservice:
secrets:
## Credentials for the MongoDB cluster.
##
mongodb:
## Root user password for the database cluster.
##
rootPassword: "" # <ATTENTION>
## Limited user password to allow the service to access the database. This password cannot contain commas or any character that must be escaped in a URL.
##
servicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster.
## Refer to mongodb documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Secret configuration for Grafana dashboard hosting.
##
dashboardhost:
secrets:
## PostgresSQL Database credentials.
##
database:
## Database host
##
host: "" # <ATTENTION>
## User for database access. The default can be used.
##
user: "systemlink"
## Password for database access.
##
password: "" # <ATTENTION>
## Admin credentials for the Grafana instance.
## Note: You cannot change the credentials after the first deployment.
grafana:
## Admin user name. The default can be used.
##
user: "admin"
## Admin password.
##
password: "" # <ATTENTION>
## Secret configuration for the data frame service.
##
dataframeservice:
secrets:
## Access key information for S3 access.
##
s3:
## Access key ID for the S3 instance.
##
accessKeyId: *s3User
## Access key for the S3 instance.
##
accessKey: *s3Password
## Credentials for the MongoDB cluster.
##
mongodb:
## Root user password for the database cluster. Ignored if database.useCustom is true.
##
rootPassword: "" # <ATTENTION>
## Limited user password to allow the service to access the database. This password cannot contain commas or any character that must be escaped in a URL.
##
servicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster. Ignored if database.useCustom is true.
## Refer to the MongoDB documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Credentials for the Dremio instance.
##
dremio:
## The username for the Dremio instance.
##
username: "systemlink"
## The password for the Dremio instance.
##
password: "" # <ATTENTION>
sldremio:
# Dremio distributed storage configuration. This must be configured for the service to perform acceptably.
# See https://github.com/dremio/dremio-cloud-tools/blob/master/charts/dremio_v2/docs/Values-Reference.md#distributed-storage-values
# Configure this section as appropriate for your environment. The configuration below
# assumes the service is being connected to Amazon S3 or an equivalent, like MinIO.
# Note: this only partially configures distributed storage. See the rest of the configuration in
# systemlink-values.yaml under dataframeservice.sldremio.distStorage.
distStorage:
aws: # <ATTENTION> - change if not using Amazon S3 or an equivalent
credentials:
accessKey: *s3User
secret: *s3Password
## Secret configuration for feedservice
##
feedservice:
secrets:
## Access key information for S3 access.
##
s3:
## Access key ID for the S3 instance.
##
accessKeyId: *s3User
## Access key for the S3 instance.
##
accessKey: *s3Password
## Default region for the S3 instance.
##
defaultRegion: *s3DefaultRegion
## Credentials for the MongoDB cluster.
##
mongodb:
## Root user password for the database cluster.
##
rootPassword: "" # <ATTENTION>
## Limited user password to allow the service to access the database. This password cannot contain commas or any character that must be escaped in a URL.
##
servicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster.
## Refer to the MongoDB documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Secret configuration for file uploads.
##
fileingestion:
secrets:
## Cryptographic key used for AES-256 encryption of data at rest. Use a 32-byte cryptographically random value which is base64 encoded.
##
encryptionKey: "" # <ATTENTION>
## Cryptographic key to be used for encryption of download tokens. This key should have a length of at least 32 bytes.
##
downloadTokenEncryptionKey: "" # <ATTENTION>
## Access key information for S3 access.
##
s3:
## Access key ID for the S3 instance.
##
accessKeyId: *s3User
## Access key for the S3 instance.
##
accessKey: *s3Password
## Default region for the S3 instance.
##
defaultRegion: *s3DefaultRegion
## Credentials for the MongoDB cluster.
##
mongodb:
## Root user password for the database cluster.
##
rootPassword: "" # <ATTENTION>
## Limited user password to allow the service to access the database. This password cannot contain commas or any character that must be escaped in a URL.
##
servicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster.
## Refer to the MongoDB documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Secret configuration for Jupyter notebook execution.
##
nbexecservice:
secrets:
## Access key information for S3 access.
##
s3:
## Access key ID for the S3 instance.
##
accessKeyId: *s3User
## Access key for the S3 instance.
##
accessKey: *s3Password
mongodb:
## Root user password for the database cluster.
##
rootPassword: "" # <ATTENTION>
## Limited user password to allow the service to access the database. This password cannot contain commas or any character that must be escaped in a URL.
##
servicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster.
## Refer to mongodb documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Secret configuration for notifications
##
notification:
secrets:
mongodb:
## Root user password for the database cluster.
##
rootPassword: "" # <ATTENTION>
## Limited user password to allow the service to access the database. This password cannot contain commas or any character that must be escaped in a URL.
##
servicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster.
## Refer to mongodb documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Secret configuration for emails
##
smtp:
secrets:
smtpServer:
## Optional - Credentials used to access the SMTP server
##
username: "" # <ATTENTION>
password: "" # <ATTENTION>
## Secret configuration for the systems event manager.
##
sysmgmtevent:
secrets:
## Credentials for the MongoDB cluster.
##
mongodb:
## Root user password for the database cluster.
##
rootPassword: "" # <ATTENTION>
## Limited user password to allow the service to access the database. This password cannot contain commas or any character that must be escaped in a URL.
##
servicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster.
## Refer to the MongoDB documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Secret configuration for salt master.
##
saltmaster:
secrets:
## Credentials for the MongoDB cluster.
##
mongodb:
# Root user password for the database cluster.
rootPassword: "" # <ATTENTION>
# Limited user password to allow the service to access the minions database. This password cannot contain commas or any character that must be escaped in a URL.
minionsPassword: "" # <ATTENTION>
# Limited user password to allow the service to access the pillars database. This password cannot contain commas or any character that must be escaped in a URL.
pillarsPassword: "" # <ATTENTION>
# Key used to authenticate pods in the database cluster.
# Refer to MongoDB documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
replicaSetKey: "" # <ATTENTION>
## RSA keys used by saltmaster in the communication with client systems.
##
saltmaster:
# RSA Private key using PKCS1 padding for salt-master.
privateKey: "" # <ATTENTION>
# RSA Public key using PKCS1 padding for salt-master.
publicKey: "" # <ATTENTION>
## Secret configuration for systems management.
##
systems:
secrets:
## Cryptographic key to be used for AES-128 encryption of data. This key should have a length of 32 bytes.
##
encryptionKey: "" # <ATTENTION>
## Credentials for the MongoDB cluster.
##
mongodb:
## Root user password for the database cluster.
##
rootPassword: "" # <ATTENTION>
## Limited user password to allow the service to access the database. This password cannot contain commas or any character that must be escaped in a URL.
##
servicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster.
## Refer to the MongoDB documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Secret configuration for test result storage.
##
testmonitorservice:
secrets:
## Database configuration secrets. Only set one of connectionString or connectionPassword depending on whether
## the database is external or managed by this chart.
##
database:
## Connection string for an existing PostgresSQL database.
## NOTE: Ignored unless `database.connectionString.secretName` parameter is set.
##
connectionString: "" # <ATTENTION>
## Password to use for a PostgresSQL database created by this chart.
## NOTE: Ignored if `database.secretName` parameter is set.
##
connectionPassword: "" # <ATTENTION>
## Connection string that is used to perform PostgreSQL schema migrations managed by this chart.
## NOTE: Ignored unless `database.connectionString.secretName` and `database.connectionString.migrationConnectionStringKey` parameters are set.
##
migrationConnectionString: ""
## Password for the PostgresSQL user that will perform database migrations managed by this chart.
## Pairs with the username set with `database.connectionInfo.migrationUser`.
## NOTE: Ignored if `database.connectionString.secretName` parameter is set or `database.connectionInfo.migrationPasswordKey` is unset.
##
migrationConnectionPassword: ""
## Secret configuration for user data
##
userdata:
secrets:
## Credentials for the MongoDB cluster.
##
mongodb:
## Root user password for the database cluster.
##
rootPassword: "" # <ATTENTION>
## Limited user password to allow the service to access the database. This password cannot contain commas or any character that must be escaped in a URL.
##
servicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster.
## Refer to the MongoDB documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Secret configuration for document hosting
##
webappservices:
secrets:
## Credentials for the MongoDB cluster.
##
mongodb:
## Root user password for the database cluster.
##
rootPassword: "" # <ATTENTION>
## Limited user password to allow the service to access the database. This password cannot contain commas or any character that must be escaped in a URL.
##
servicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster.
## Refer to the MongoDB documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Cryptographic key used for AEAD encryption of continuation tokens. Use a 32-byte cryptographically random value which is base64 encoded.
##
continuationTokenEncryptionKey: "" # <ATTENTION>
## Secret configuration for routine management
##
routineservice:
secrets:
## Credentials for the MongoDB cluster.
##
mongodb:
## Root user password for the database cluster.
##
rootPassword: "" # <ATTENTION>
## Limited user password to allow the service to access the database. This password cannot contain commas or any character that must be escaped in a URL.
##
servicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster.
## Refer to the MongoDB documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Secret configuration for time-based routine triggering
##
routinescheduletrigger:
secrets:
## Credentials for the MongoDB cluster.
##
mongodb:
## Root user password for the database cluster.
##
rootPassword: "" # <ATTENTION>
## Limited user password to allow the service to access the database. This password cannot contain commas or any character that must be escaped in a URL.
##
servicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster.
## Refer to the MongoDB documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Secret configuration for tags
##
tags:
secrets:
## Credentials for the MongoDB cluster.
##
mongodb:
## Root user password for the database cluster.
##
rootPassword: "" # <ATTENTION>
## Limited user password to allow the service to access the database. This password cannot contain commas or any character that must be escaped in a URL.
##
servicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster.
## Refer to the MongoDB documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Secret configuration for taghistorian
##
taghistorian:
secrets:
## Credentials for the MongoDB cluster.
##
mongodb:
## Root user password for the database cluster.
##
rootPassword: "" # <ATTENTION>
## Limited user password to allow the service to access the database. This password cannot contain commas or any character that must be escaped in a URL.
##
servicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster.
## Refer to the MongoDB documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Cryptographic key used for AEAD encryption of continuation tokens. Use a 32-byte cryptographically random value which is base64 encoded.
##
continuationTokenEncryptionKey: "" # <ATTENTION>
## Secret configuration for repository
##
repository:
secrets:
## Credentials for the MongoDB cluster.
##
mongodb:
## Root user password for the database cluster.
##
rootPassword: "" # <ATTENTION>
## Limited user password to allow the service to access the database. This password cannot contain commas or any character that must be escaped in a URL.
##
servicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster.
## Refer to the MongoDB documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Secret configuration for comments
##
comments:
secrets:
## Credentials for the MongoDB cluster.
##
mongodb:
## Root user password for the database cluster.
##
rootPassword: "" # <ATTENTION>
## Limited user password to allow the service to access the database. This password cannot contain commas or any character that must be escaped in a URL.
##
servicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster.
## Refer to the MongoDB documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Secret configuration for work order
##
workorder:
secrets:
## Credentials for the MongoDB cluster.
##
mongodb:
## Root user password for the database cluster.
##
rootPassword: "" # <ATTENTION>
## Limited user password to allow the service to access the database. This password cannot contain commas or any character that must be escaped in a URL.
##
servicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster.
## Refer to the MongoDB documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Secret configuration for specification management
##
specificationmanagement:
secrets:
## Credentials for the MongoDB cluster.
##
mongodb:
## Root user password for the database cluster.
##
rootPassword: "" # <ATTENTION>
## Limited user password to allow the service to access the database. This password cannot contain commas or any character that must be escaped in a URL.
##
servicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster.
## Refer to the MongoDB documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Secret configuration for systems state
##
systemsstate:
secrets:
## Cryptographic key to be used for AES-128 encryption of data. This key should have a length of 32 bytes.
##
encryptionKey: "" # <ATTENTION>
## Credentials for the MongoDB cluster.
##
mongodb:
## Root user password for the database cluster.
##
rootPassword: "" # <ATTENTION>
## Limited user password to allow the service to access the database. This password cannot contain commas or any character that must be escaped in a URL.
##
servicePassword: "" # <ATTENTION>
## Key used to authenticate pods in the database cluster.
## Refer to the MongoDB documentation for key generation: https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/#create-a-keyfile
##
replicaSetKey: "" # <ATTENTION>
## Secret configuration for dynamic form fields.
##
dynamicformfields:
secrets:
## Database configuration secrets. Only set one of connectionString or connectionPassword depending on whether
## the database is external or managed by this chart.
##
database:
## Connection string for an existing PostgresSQL database.
## NOTE: Ignored unless `database.connectionString.secretName` parameter is set.
##
connectionString: "" # <ATTENTION>
## Password to use for a PostgresSQL database created by this chart.
## NOTE: Ignored if `database.secretName` parameter is set.
##
connectionPassword: "" # <ATTENTION>
## Connection string that is used to perform PostgreSQL schema migrations managed by this chart.
## NOTE: Ignored unless `database.connectionString.secretName` and `database.connectionString.migrationConnectionStringKey` parameters are set.
##
migrationConnectionString: ""
## Password for the PostgresSQL user that will perform database migrations managed by this chart.
## Pairs with the username set with `database.connectionInfo.migrationUser`.
## NOTE: Ignored if `database.connectionString.secretName` parameter is set or `database.connectionInfo.migrationPasswordKey` is unset.
##
migrationConnectionPassword: ""