You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tbmq/values.yaml
+35-6Lines changed: 35 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -368,9 +368,13 @@ tbmq-ie:
368
368
# This section will bring bitnami/redis-cluster (https://artifacthub.io/packages/helm/bitnami/redis-cluster) into this chart.
369
369
# If you want to add some extra configuration parameters, you can put them under the `redis-cluster` key, and they will be passed to bitnami/redis-cluster chart.
370
370
redis-cluster:
371
+
enabled: true
371
372
## @param nameOverride String to partially override common.names.fullname template (will maintain the release name)
372
373
##
373
374
nameOverride: "redis"
375
+
## @param Should use password?
376
+
##
377
+
usePassword: false
374
378
## @param password Redis® password (ignored if existingSecret set)
375
379
## Defaults to a random 10-character alphanumeric string if not set and usePassword is true
# If you're deploying Redis externally, configure this section
530
+
externalRedis:
531
+
# param existingConfigMap Name of an existing ConfigMap that will override Redis configurations.
532
+
##
533
+
existingConfigMap: ""
534
+
# @param existingSecret Name of existing secret object (for password authentication)
535
+
##
536
+
existingSecret: ""
537
+
# @param existingSecretKey Name of key containing password to be retrieved from the existing secret
538
+
##
539
+
existingSecretKey: ""
540
+
526
541
# If you're deploying PostgreSQL externally, configure this section
527
542
externalPostgresql:
528
543
# @param host - External PostgreSQL server host
@@ -539,12 +554,28 @@ externalPostgresql:
539
554
# @param database - PostgreSQL database name for TBMQ
540
555
##
541
556
database: "thingsboard_mqtt_broker"
557
+
# param existingConfigMap Name of an existing ConfigMap that will override Postgres configurations.
558
+
##
559
+
existingConfigMap: ""
560
+
# @param existingSecret - existing secret having the credentials to the Postgresql database instance
561
+
##
562
+
existingSecret: ""
563
+
# @param existingSecretPasswordKey - key in existing secret having the credentials to the Postgresql database instance
564
+
##
565
+
existingSecretPasswordKey: ""
566
+
# @param existingSecretUsernameKey - key in existing secret having the credentials to the Postgresql database instance
567
+
##
568
+
existingSecretUsernameKey: ""
569
+
570
+
externalKafka:
571
+
# Name of an existing ConfigMap that will override Kafka configurations.
572
+
existingConfigMap: ""
542
573
543
574
# This section will bring bitnami/postgresql (https://artifacthub.io/packages/helm/bitnami/postgresql) into this chart.
544
575
# If you want to add some extra configuration parameters, you can put them under the `postgresql` key, and they will be passed to bitnami/postgresql chart
545
576
postgresql:
546
577
# @param enabled If enabled is set to true, externalPostgresql configuration will be ignored
547
-
enabled: true
578
+
enabled: false
548
579
## @param nameOverride String to partially override common.names.fullname template (will maintain the release name)
549
580
##
550
581
nameOverride: "postgresql"
@@ -812,8 +843,6 @@ kafka:
812
843
## memory: 1024Mi
813
844
##
814
845
resources: {}
815
-
# Name of an existing ConfigMap that will override Kafka configurations.
816
-
existingConfigMap: ""
817
846
# Load Balancer Configuration
818
847
# This section defines the load balancer settings for TBMQ.
819
848
# Supported types:
@@ -835,7 +864,7 @@ loadbalancer:
835
864
annotations: {}
836
865
ssl:
837
866
# Hosts to be configured for the ingress.
838
-
hosts: {}
867
+
hosts: []
839
868
# Secret name with the certificate for the ssl termination.
840
869
secretName: ""
841
870
# Enables HTTPS termination at the load balancer level.
0 commit comments