Skip to content

Commit

Permalink
fix: changes to kafka config to add protocol info and disable zookeep…
Browse files Browse the repository at this point in the history
…er (#655)

* fix: changes to kafka config to add protocol info and disable zookeeper in default config

* updated kafka version

* patch release for use with updated example-backend for default deployments
  • Loading branch information
elnyry-sam-k authored Sep 13, 2024
1 parent 529d3e8 commit 64ab766
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 4 deletions.
8 changes: 5 additions & 3 deletions example-mojaloop-backend/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
description: Example Helm chart for mojaloop backend dependencies
name: example-mojaloop-backend
version: 15.7.0
appVersion: "nginx: 4.4.2; mysql: 9.19.1; kafka: 26.8.5; mongodb: 14.8.3; redis: 18.12.1"
version: 16.0.0
appVersion: "nginx: 4.4.2; mysql: 9.19.1; kafka: 29.3.9; mongodb: 14.8.3; redis: 18.12.1"
home: http://mojaloop.io
icon: http://mojaloop.io/images/logo.png
sources:
Expand All @@ -13,6 +13,8 @@ maintainers:
email: [email protected]
- name: Vijay Kumar Guthi
email: [email protected]
- name: Sam Kummary
email: [email protected]
dependencies:
- name: kafka
alias: kafka
Expand All @@ -23,7 +25,7 @@ dependencies:
- dependency
- backend
- kafka
version: 26.8.5
version: 29.3.9
## mysql database
- name: mysql
alias: mysql
Expand Down
27 changes: 27 additions & 0 deletions example-mojaloop-backend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,31 @@ kafka:
##
enabled: false

listeners:
client:
protocol: PLAINTEXT
controller:
protocol: PLAINTEXT
interbroker:
protocol: PLAINTEXT
external:
protocol: PLAINTEXT

extraConfig: |-
offsets.topic.replication.factor=1
default.replication.factor=1
transaction.state.log.replication.factor=1
controller:
replicaCount: 1
persistence:
enabled: false
logPersistence:
enabled: false
broker:
persistence:
enabled: false

## ZooKeeper chart configuration
## https://github.com/bitnami/charts/blob/main/bitnami/zookeeper/values.yaml
##
Expand All @@ -30,6 +55,8 @@ kafka:
## @param zookeeper.persistence.accessModes Persistent Volume access modes
## @param zookeeper.persistence.size Persistent Volume size
##
enabled: false

persistence:
enabled: false

Expand Down
2 changes: 1 addition & 1 deletion mojaloop/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
description: Mojaloop Helm chart for Kubernetes
name: mojaloop
version: 16.0.3
version: 16.0.4
appVersion: "ml-api-adapter: v14.0.5; central-ledger: v17.6.1; account-lookup-service: v15.2.3; quoting-service: v15.7.0; central-settlement: v16.0.0; bulk-api-adapter: v17.0.0; transaction-requests-service: v14.1.2; simulator: v12.1.0; mojaloop-simulator: v15.0.0; sdk-scheme-adapter: v23.4.0; auth-service: v15.0.0; als-consent-oracle: v0.2.2; thirdparty-sdk: v15.1.1; ml-testing-toolkit: v17.0.0; ml-testing-toolkit-ui: v15.4.2;"
home: http://mojaloop.io
icon: http://mojaloop.io/images/logo.png
Expand Down

0 comments on commit 64ab766

Please sign in to comment.