Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ jars
jars_legacy
.idea
target
bin
bin
helm/*/Chart.lock
helm/*/charts/
51 changes: 47 additions & 4 deletions helm/reporting/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,20 +101,63 @@ debezium:
kafkaClient:
enabled: true
image: confluentinc/cp-kafka
db_secretref:
name: postgres-postgresql
key: postgresql-password
# the following is when no secret is to be used from db_pass
db_secretref: null
# db_secretref:
# name: postgres-postgresql
# key: postgresql-password

bitnami-kafka:
fullnameOverride: kafka
enabled: true
replicaCount: 4
persistence:
enabled: false
kraft:
enabled: false
deleteTopicEnable: true
livenessProbe:
enabled: true
timeoutSeconds: 5
failureThreshold: 5
periodSeconds: 10
successThreshold: 1
readinessProbe:
enabled: true
failureThreshold: 6
timeoutSeconds: 5
periodSeconds: 10
successThreshold: 1
startupProbe:
enabled: true
initialDelaySeconds: 20
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 60
successThreshold: 1
zookeeper:
fullnameOverride: kafka-zookeeper
enabled: true
replicaCount: 4
livenessProbe:
enabled: true
timeoutSeconds: 5
failureThreshold: 5
periodSeconds: 10
successThreshold: 1
readinessProbe:
enabled: true
failureThreshold: 6
timeoutSeconds: 5
periodSeconds: 10
successThreshold: 1
startupProbe:
enabled: true
initialDelaySeconds: 20
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 30
successThreshold: 1
persistence:
enabled: false

Expand Down Expand Up @@ -170,7 +213,7 @@ confluentinc:
customEnv: {}

bitnami-elasticsearch:
enabled: true
enabled: false
global:
kibanaEnabled: true
data:
Expand Down
1 change: 1 addition & 0 deletions ignore-health-check.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
./helm/reporting
2 changes: 1 addition & 1 deletion scripts/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ kafkaClient:
# the following is when no secret is to be used from db_pass
db_secretref: null

# Enable if you do not have Elastisearch already installed in your cluster
# Enable if you do not have Elasticsearch already installed in your cluster
bitnami-elasticsearch:
enabled: false
Loading