diff --git a/.gitignore b/.gitignore index d940641..5049bf2 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,6 @@ jars jars_legacy .idea target -bin \ No newline at end of file +bin +helm/*/Chart.lock +helm/*/charts/ \ No newline at end of file diff --git a/helm/reporting/values.yaml b/helm/reporting/values.yaml index 178a98c..f1c2a9a 100644 --- a/helm/reporting/values.yaml +++ b/helm/reporting/values.yaml @@ -101,9 +101,11 @@ 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 @@ -111,10 +113,51 @@ bitnami-kafka: 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 @@ -170,7 +213,7 @@ confluentinc: customEnv: {} bitnami-elasticsearch: - enabled: true + enabled: false global: kibanaEnabled: true data: diff --git a/ignore-health-check.txt b/ignore-health-check.txt new file mode 100644 index 0000000..a48f927 --- /dev/null +++ b/ignore-health-check.txt @@ -0,0 +1 @@ +./helm/reporting diff --git a/scripts/values.yaml b/scripts/values.yaml index 22148b1..bdf40b4 100644 --- a/scripts/values.yaml +++ b/scripts/values.yaml @@ -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