Skip to content
Open
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: 2 additions & 2 deletions charts/tidepool/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
description: A Helm chart for Tidepool
name: tidepool
version: 0.24.5
version: 0.24.6
maintainers:
- name: Todd Kazakov
email: todd@tidepool.org
Expand All @@ -11,5 +11,5 @@ home: https://github.com/tidepool-org/development/charts
dependencies:
- name: keycloak
version: 0.4.7
repository: 'file://../keycloak'
repository: "file://../keycloak"
condition: keycloak.enabled
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ spec:
replicas: {{ .Values.global.kafka.connect.replicas | int }}
resources:
{{- toYaml .Values.resources | nindent 10 }}
{{- with .Values.jvmOptions }}
jvmOptions:
{{- toYaml . | nindent 4 }}
{{- end }}
{{ if .Values.global.kafka.connect.tlsEnabled }}
tls:
trustedCertificates: []
Expand Down
5 changes: 5 additions & 0 deletions charts/tidepool/charts/kafka/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ resources:
memory: "600Mi"
limits:
memory: "2Gi"
# -- optional JVM heap sizing passed through to KafkaConnect.spec.jvmOptions.
# Leave unset to use Strimzi's dynamic heap calculation (75% of the cgroup
# memory limit). Override (e.g. via tiltronic-values-local.yaml) on hosts
# where Strimzi's cgroup detection fails and the dynamic calc overshoots.
jvmOptions: {}
secret:
enabled: false
podMonitor:
Expand Down
Loading