This repository has been archived by the owner on Feb 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
values.yaml
700 lines (660 loc) · 20.5 KB
/
values.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
---
# Default values for FADI.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
spark:
enabled: true
Master:
Name: spark-master
WebUi:
Name: spark-webui
Worker:
Name: spark-worker
Zeppelin:
Name: spark-zeppelin
Replicas: 0
superset:
enabled: true
persistence:
enabled: true
service:
type: ClusterIP
configFile: |-
from flask_appbuilder.security.manager import AUTH_DB,AUTH_LDAP
#---------------------------------------------------------
# Superset specific config
#---------------------------------------------------------
ROW_LIMIT = 5000
SUPERSET_WORKERS = 2
SUPERSET_WEBSERVER_PORT = 8088
#---------------------------------------------------------
#---------------------------------------------------------
# Flask App Builder configuration
#---------------------------------------------------------
# Your App secret key
SECRET_KEY = '\2\1thisismyscretkey\1\2\e\y\y\h'
# The SQLAlchemy connection string to your database backend
# This connection defines the path to the database that stores your
# superset metadata (slices, connections, tables, dashboards, ...).
# Note that the connection information to connect to the datasources
# you want to explore are managed directly in the web UI
SQLALCHEMY_DATABASE_URI = 'sqlite:////var/lib/superset/superset.db'
# Flask-WTF flag for CSRF
WTF_CSRF_ENABLED = True
# Add endpoints that need to be exempt from CSRF protection
WTF_CSRF_EXEMPT_LIST = []
# Set this API key to enable Mapbox visualizations
MAPBOX_API_KEY = ''
DEBUG=True
LOG_FORMAT = '%(asctime)s:%(levelname)s:%(name)s:%(message)s'
LOG_LEVEL = 'DEBUG'
AUTH_TYPE = AUTH_LDAP
AUTH_LDAP_SERVER = "ldap://fadi-openldap:389"
AUTH_LDAP_USE_TLS = False
AUTH_USER_REGISTRATION = True
AUTH_LDAP_SEARCH = "dc=ldap,dc=cetic,dc=be"
AUTH_LDAP_BIND_USER = "cn=admin,dc=ldap,dc=cetic,dc=be"
AUTH_LDAP_BIND_PASSWORD = "Z2JHHezi4aAA"
AUTH_LDAP_UID_FIELD = "cn"
# ---- ingress ----
traefikIngress:
enabled: true
tls: false
host: superset.example.cetic.be # change to your superset domainname
postgresql:
enabled: true
persistence:
enabled: true
ldap:
enabled: true
pgldapconfig: |-
# Reference: https://github.com/larskanis/pg-ldap-sync/blob/master/config/sample-config.yaml
# Connection parameters to LDAP server
ldap_connection:
host: fadi-openldap
port: 389
auth:
method: :simple
username: CN=admin,DC=ldap,DC=cetic,DC=be
password: Z2JHHezi4aAA
# Search parameters for LDAP users which should be synchronized
ldap_users:
base: CN=admin,DC=ldap,DC=cetic,DC=be
# LDAP filter (according to RFC 2254)
# defines to users in LDAP to be synchronized
filter: (!(cn=admin))
# this attribute is used as PG role name
name_attribute: cn
# lowercase name for use as PG role name
lowercase_name: true
ldap_groups:
base: DC=ldap,DC=cetic,DC=be
filter: (|(cn=group1)(cn=group2)(cn=group3))
# this attribute is used as PG role name
name_attribute: cn
# this attribute must reference to all member DN's of the given group
member_attribute: member
# Connection parameters to PostgreSQL server
# see also: http://rubydoc.info/gems/pg/PG/Connection#initialize-instance_method
pg_connection:
host: fadi-postgresql
dbname: postgres # the db name is usually "postgres"
user: admin # the user name is usually "postgres"
password: Z2JHHezi4aAA # kubectl get secret --namespace fadi <pod_name> -o jsonpath="{.data.postgresql-password}" | base64 --decode
pg_users:
# Filter for identifying LDAP generated users in the database.
# It's the WHERE-condition to "SELECT rolname, oid FROM pg_roles"
# filter: rolcanlogin AND NOT rolsuper
filter: oid IN (SELECT pam.member FROM pg_auth_members pam JOIN pg_roles pr ON pr.oid=pam.roleid WHERE pr.rolname='ldap_users')
# Options for CREATE RULE statements
create_options: LOGIN IN ROLE ldap_users
pg_groups:
# Filter for identifying LDAP generated groups in the database.
# It's the WHERE-condition to "SELECT rolname, oid FROM pg_roles"
# filter: NOT rolcanlogin AND NOT rolsuper
filter: oid IN (SELECT pam.member FROM pg_auth_members pam JOIN pg_roles pr ON pr.oid=pam.roleid WHERE pr.rolname='ldap_groups')
# Options for CREATE RULE statements
create_options: NOLOGIN IN ROLE ldap_groups
#grant_options:
cron:
schedule: "*/30 * * * *"
repo: ceticasbl/pg-ldap-sync
tag: latest
restartPolicy: Never
mountPath: /workspace
subPath: ""
postgresql:
username: admin
password: Z2JHHezi4aAA
database: postgres
pghba: |-
local all all ldap ldapserver=fadi-openldap ldapport=389 ldaptls=0 ldapbasedn="dc=ldap,dc=cetic,dc=be" ldapbinddn="cn=admin,dc=ldap,dc=cetic,dc=be" ldapbindpasswd=Z2JHHezi4aAA ldapsearchfilter=cn=$username
host all all 0.0.0.0/0 ldap ldapserver=fadi-openldap ldapport=389 ldaptls=0 ldapbasedn="dc=ldap,dc=cetic,dc=be" ldapbinddn="cn=admin,dc=ldap,dc=cetic,dc=be" ldapbindpasswd=Z2JHHezi4aAA ldapsearchfilter=cn=$username
initdbscripts: |-
#!/bin/sh
psql -c "create role ldap_users;" postgres admin
psql -c "create role ldap_groups;" postgres admin
psql -c "create database zabbix;" postgres admin
minio:
enabled: false
persistence:
enabled: true
size: 50Gi
service:
type: ClusterIP
grafana:
enabled: true
service:
type: ClusterIP
grafana.ini:
paths:
data: /var/lib/grafana/data
logs: /var/log/grafana
plugins: /var/lib/grafana/plugins
provisioning: /etc/grafana/provisioning
analytics:
check_for_updates: true
log:
mode: console
grafana_net:
url: https://grafana.net
## LDAP Authentication can be enabled with the following values on grafana.ini
## NOTE: Grafana will fail to start if the value for ldap.toml is invalid
# ----- auth -------
auth.ldap:
enabled: true
allow_sign_up: true
config_file: /etc/grafana/ldap.toml
auth.generic_oauth:
enabled: false
scopes: openid email profile
name: Keycloak
tls_skip_verify_insecure: false
allow_sign_up: true
client_id: <your_client_id>
client_secret: <your_client_secret>
auth_url: http://<your_keycloak_URL>/auth/realms/<your_realm>/protocol/openid-connect/auth
token_url: http://<your_keycloak_URL>/auth/realms/<your_realm>/protocol/openid-connect/token
api_url: http://<your_keycloak_URL>/auth/realms/<your_realm>/protocol/openid-connect/userinfo
auth.azuread:
name: Azure AD
enabled: false
allow_sign_up: true
client_id: <your_application_id>
client_secret: <your_client_secret>
scopes: openid email profile
auth_url: https://login.microsoftonline.com/<your_tenant_id>/oauth2/v2.0/authorize
token_url: https://login.microsoftonline.com/<your_tenant_id>/oauth2/v2.0/token
allowed_domains:
allowed_groups:
server:
root_url: http://grafana.example.cetic.be # change to your grafana domainname
# Enable persistence
persistence:
enabled: true
# Administrator credentials when not using an existing secret (see below)
adminUser: admin
## Grafana's LDAP configuration
## Templated by the template in _helpers.tpl
## NOTE: To enable the grafana.ini must be configured with auth.ldap.enabled
## ref: http://docs.grafana.org/installation/configuration/#auth-ldap
## ref: http://docs.grafana.org/installation/ldap/#configuration
ldap:
enabled: true
# `existingSecret` is a reference to an existing secret containing the ldap configuration
# for Grafana in a key `ldap-toml`.
existingSecret: ""
# `config` is the content of `ldap.toml` that will be stored in the created secret
config: |-
verbose_logging = true
[[servers]]
host = "fadi-openldap"
port = 389
use_ssl = false
start_tls = false
ssl_skip_verify = false
bind_dn = "cn=admin,DC=ldap,DC=cetic,DC=be"
bind_password = 'password1'
search_filter = "(|(cn=%s)(&(cn=%s)(memberOf=cn=admin,DC=ldap,DC=cetic,DC=be)))"
search_base_dns = ["cn=admin,dc=ldap,dc=cetic,dc=be"]
group_search_base_dns = ["ou=Groups,dc=ldap,dc=cetic,dc=be"]
[[servers.group_mappings]]
group_dn = "*"
org_role = "Admin"
##grafana_admin = true
#group_dn = "cn=amen,DC=ldap,DC=cetic,DC=be"
#org_role = "Viewer"
[servers.attributes]
name = "givenName"
surname = "sn"
username = "cn"
member_of = "memberOf"
email = "email"
# ---- ingress ----
traefikIngress:
enabled: true
tls: false
host: grafana.example.cetic.be # change to your grafana domainname
jupyterhub:
enabled: true
proxy:
secretToken: 'af83775ec3bfaf0507ce596df51d491e7ed54450adc454038fa7405495465f19'
db:
type: sqlite-memory
service:
type: ClusterIP
rbac:
enabled: true
singleuser:
storage:
capacity: 5Gi
# Defines the default image
profileList:
- display_name: "Minimal environment"
description: "To avoid too much bells and whistles: Python."
default: true
- display_name: "Datascience environment"
description: "If you want the additional bells and whistles: Python, R, and Julia."
kubespawner_override:
image: jupyter/datascience-notebook:7d427e7a4dde
- display_name: "Spark environment"
description: "The Jupyter Stacks spark image"
kubespawner_override:
image: jupyter/all-spark-notebook:latest
- display_name: "tensorflow environment"
description: "TensorFlow Notebook"
kubespawner_override:
image: jupyter/tensorflow-notebook:latest
# ---- auth ----
hub:
config:
# ---- Comment this blok to disable LDAP authentication ----
JupyterHub:
authenticator_class: ldapauthenticator.LDAPAuthenticator
LDAPAuthenticator:
bind_dn_template:
- 'cn={username},dc=ldap,dc=cetic,dc=be'
- 'cn={username},cn=admin,dc=ldap,dc=cetic,dc=be'
escape_userdn: false
lookup_dn: false
server_address: fadi-openldap
user_attribute: cn
use_ssl: false
# ---- Uncomment this blok to enable AzureAD authentication ----
# AzureAdOAuthenticator:
# client_id: <your_application_id>
# client_secret: <your_client_secret>
# oauth_callback_url: https://<your_jupyterhub_domain_name>/hub/oauth_callback
# tenant_id: <your_tenant_id>
# JupyterHub:
# authenticator_class: azuread
# ---- Uncomment this blok to enable Keycloak authentication ----
# GenericOAuthenticator:
# client_id: <your_client_id>
# client_secret: <your_client_secret>
# oauth_callback_url: http://<your_jupyterhub_domain_name>/hub/oauth_callback
# authorize_url: http://<your_keycloak_URL>/auth/realms/<your_realm>/protocol/openid-connect/auth
# token_url: http://<your_keycloak_URL>/auth/realms/<your_realm>/protocol/openid-connect/token
# userdata_url: http://<your_keycloak_URL>/auth/realms/<your_realm>/protocol/openid-connect/userinfo
# login_service: keycloak
# username_key: email
# userdata_params:
# state: state
# JupyterHub:
# authenticator_class: generic-oauth
prePuller:
hook:
enabled: false
# ---- ingress ----
traefikIngress:
enabled: true
tls: false
host: jupyterhub.example.cetic.be # change to your jupyterhub domainname
nifi:
enabled: true
service:
type: ClusterIP
nodePort: ""
postStart: /opt/nifi/psql; wget -P /opt/nifi/psql https://jdbc.postgresql.org/download/postgresql-42.2.6.jar
persistence:
enabled: true
properties:
sensitiveKey: changeMechangeMe # Must have at least 12 characters
isNode: false
httpsPort: 8443
webProxyHost: nifi.example.cetic.be # set it by the same host than nifi.traefikIngress.host if traefik ingress is enabled
clusterPort: 6007
# customLibPath: "/opt/configuration_resources/custom_lib"
auth:
admin: CN=admin, OU=NIFI
SSL:
keystorePasswd: changeMe
truststorePasswd: changeMe
# Automaticaly disabled if OIDC or LDAP enabled
singleUser:
username: username
password: changemechangeme # Must to have at least 12 characters
ldap:
enabled: true
host: ldap://fadi-openldap:389 # change to your LDAP host
searchBase: cn=admin,dc=ldap,dc=cetic,dc=be # change to your LDAP searchBase
admin: cn=admin,dc=ldap,dc=example,dc=be # change to your LDAP admin
pass: Z2JHHezi4aAA # set a strong password
searchFilter: (objectClass=*)
userIdentityAttribute: cn
authStrategy: SIMPLE # How the connection to the LDAP server is authenticated. Possible values are ANONYMOUS, SIMPLE, LDAPS, or START_TLS.
identityStrategy: USE_DN
authExpiration: 12 hours
oidc:
enabled: false
discoveryUrl: https://<your_keycloak_URL>/auth/realms/<your_realm>/.well-known/openid-configuration
clientId: <your_client_id>
clientSecret: <your_client_secret>
claimIdentifyingUser: email
admin: <your_admin_email>
## Request additional scopes, for example profile
additionalScopes:
registry:
enabled: false
# ---- add new processors ----
# ---- example for InfluxDB processors ----
# extraVolumeMounts:
# - name: mycustomlibs
# mountPath: /opt/configuration_resources/custom_lib
# extraVolumes: # this will create the volume from the directory
# - name: mycustomlibs
# emptyDir: {}
# initContainers:
# install-processor:
# image: "ellerbrock/alpine-bash-curl-ssl"
# imagePullPolicy: "IfNotPresent"
# command:
# - bash
# - -c
# - |
# cd /data
# wget https://github.com/influxdata/nifi-influxdb-bundle/releases/download/v1.13.0/nifi-influx-database-nar-1.13.0.nar
# volumeMounts:
# - name: mycustomlibs
# mountPath: /data
#
# ---- ingress ----
traefikIngress:
enabled: true
host: nifi.example.cetic.be # change to your nifi domainname
openldap:
enabled: true
persistence:
enabled: true
env:
LDAP_ORGANISATION: "Cetic"
LDAP_DOMAIN: "ldap.cetic.be"
LDAP_BACKEND: "hdb"
LDAP_TLS: "true"
LDAP_TLS_ENFORCE: "false"
LDAP_REMOVE_CONFIG_AFTER_SETUP: "false"
LDAP_TLS_VERIFY_CLIENT: "try"
adminPassword: Z2JHHezi4aAA
configPassword: password2
customLdifFiles:
1-default-users.ldif: |-
# You can find an example ldif file.
phpldapadmin:
enabled: true
service:
type: ClusterIP
env:
PHPLDAPADMIN_LDAP_HOSTS: "fadi-openldap"
kafka:
enabled: false
replicas: 1
affinity: {}
external:
enabled: false
persistence:
enabled: true
zookeeper:
replicaCount: 1
fullnameOverride: fadi-kafka-zookeeper
cassandra:
enabled: false
affinity: {}
config:
cluster_size: 1
seed_size: 1
start_rpc: true
elasticsearch:
enabled: false
kibana:
enabled: false
env:
ELASTICSEARCH_HOSTS: http://{{ .Release.Name }}-elasticsearch-client:9200
nginx_ldapauth_proxy:
enabled: false
service:
type: ClusterIP
externalPort: 5601
proxy:
port: 443
host: "fadi-kibana"
authName: "admin"
ldapHost: "fadi-openldap"
ldapDN: "dc=ldap,dc=cetic,dc=be"
ldapFilter: "objectClass=organizationalPerson"
ldapBindDN: "cn=admin,dc=ldap,dc=cetic,dc=be"
requires:
- name: "admin"
filter: "cn=admin,dc=ldap,dc=cetic,dc=be"
secrets:
ldapBindPassword: "password1"
logstash:
enabled: false
elasticsearch:
host: fadi-elasticsearch-client
filebeat:
enabled: false
config:
output.file.enabled: false
output.logstash:
hosts: ["fadi-logstash:5044"]
indexTemplateLoad:
- fadi-elasticsearch-client:9200
tsaas:
enabled: false
swaggerui:
enabled: false
swaggerui :
jsonPath : ""
jsonUrl : https://raw.githubusercontent.com/cetic/tsimulus-saas/master/oas/api-doc/openapi.json
server :
url: http://api-tsimulus.fadi.minikube
description: "TSIMULUS API"
adminer:
enabled: true
config:
design: "pepa-linha"
service:
type: ClusterIP
mlflow:
enabled: false
db:
default:
enabled: false
host: fadi-postgresql
port: 5432
user: admin
password: password1
database: postgres
seldon-core-operator:
enabled: false
usageMetrics:
enabled: false
zabbix:
enabled: false
postgresql:
enabled: false
zabbixServer:
DB_SERVER_HOST: "fadi-postgresql"
POSTGRES_USER: "admin"
POSTGRES_PASSWORD: "password1"
POSTGRES_DB: "zabbix"
zabbixagent:
enabled: true
ZBX_SERVER_HOST: 127.0.01
ZBX_SERVER_PORT: 10051
ZBX_PASSIVE_ALLOW: true
ZBX_PASSIVESERVERS: 127.0.0.1
ZBX_ACTIVE_ALLOW: true
zabbixweb:
enabled: true
ZBX_SERVER_HOST: zabbix-server
ZBX_SERVER_PORT: 10051
DB_SERVER_HOST: fadi-postgresql
DB_SERVER_PORT: 5432
POSTGRES_USER: admin
POSTGRES_PASSWORD: password1
POSTGRES_DB: zabbix
drupal:
enabled: false
ingress:
enabled: false
hostname:
airflow:
enabled: false
postgresql:
enabled: false
externalDatabase:
database: postgres
host: fadi-postgresql
password: password1
port: 5432
user: admin
service:
type: ClusterIP
port: 8080
auth:
forcePassword: false
username: admin
password: password1
fernetKey: _WJG5F2fIZ6q5LH03MQE45stfYpuLpeqzYcqOIxvCbs=
ldap:
enabled: false
uri: 'ldap://fadi-openldap:389'
base: 'dc=ldap,dc=cetic,dc=be'
binddn: 'cn=admin,dc=ldap,dc=cetic,dc=be'
bindpw: 'password1'
uidField: 'cn'
redis:
enabled: true
password: 'password1'
metrics:
enabled: false
rabbitmq:
enabled: false
auth:
username: admin
password: password1
ldap:
enabled: false
servers: ldap-server
port: '389'
user_dn_pattern: cn=${username},dc=example,dc=org
tls:
enabled: false
service:
type: ClusterIP
thingsboard:
enabled: false
rabbitmq:
enabled: false
TB_RABBIT_MQ:
TB_QUEUE_TYPE: rabbitmq
TB_QUEUE_RABBIT_MQ_USERNAME: admin
TB_QUEUE_RABBIT_MQ_PASSWORD: password1
TB_QUEUE_RABBIT_MQ_HOST: rabbitmq
TB_QUEUE_RABBIT_MQ_PORT: 5672
readinessProbe:
enabled: true
initialDelaySeconds: 60
periodSeconds: 7
mongodb:
enabled: false
persistence:
enabled: true
auth:
enabled: true
rootPassword: "password1"
initdbScripts:
create_admin_user.sh: |
$MONGODB_BIN_DIR/mongo admin --host 127.0.0.1 --port $MONGODB_PORT_NUMBER -u root -p $MONGODB_ROOT_PASSWORD << EOF
db.createUser({ user: "admin" , pwd: "password1", roles: ["userAdminAnyDatabase", "dbAdminAnyDatabase", "readWriteAnyDatabase"]})
EOF
influxdb:
enabled: false
auth:
admin:
username: admin
password: "" # Must be longer than 8 characters
token: "" # Set a long token
user:
username: ""
password: ""
bucket: ""
influxdb:
replicaCount: 1
service:
type: ClusterIP
port: 8086
rpcPort: 8088
persistence:
enabled: true
storageClass: ""
size: 8Gi
traefik:
enabled: true
dashboardIngress:
enabled: false
dashboardHost: <your_dashboard_domain_name>
# Uncomment these 2 lines below to access the dashboard through the ingness
# globalArguments:
# - "--api.insecure=true"
additionalArguments:
- "--providers.kubernetesIngress.ingressClass=traefik-cert-manager"
service:
spec:
loadBalancerIP: # "<your_public_IP>"
cert-manager:
enabled: false
installCRDs: true
clusterIssuer:
enabled: false
prod: false
email: <your_e-mail_address>
keycloak:
enabled: true
service:
type: ClusterIP
auth:
## Create administrator user on boot.
##
createAdminUser: true
## Keycloak administrator user and password
##
adminUser: admin
adminPassword: "password1"
## Wildfly management user and password
##
managementUser: manager
managementPassword: "password2"
postgresql:
enabled: false
externalDatabase:
host: "fadi-postgresql"
port: 5432
user: admin
password: "Z2JHHezi4aAA"
database: postgres
traefikIngress:
enabled: true
tls: false
host: keycloak.example.cetic.be # change to your keycloak domainname