Skip to content

Commit

Permalink
Use KRaft mode for Sandbox deployment
Browse files Browse the repository at this point in the history
Adapted Kafka configuration properties to use single node
Kafka instance in KRaft mode based on bitnami/kafka chart version
^26.8.
  • Loading branch information
sophokles73 committed May 15, 2024
1 parent 09af700 commit 6866b3c
Showing 1 changed file with 19 additions and 26 deletions.
45 changes: 19 additions & 26 deletions deploy/src/main/sandbox/hono-values.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ commandRouterService:
limits:
memory: "120Mi"

# assumes bitnami/kafka chart version ^26.8
kafka:
## @param logFlushIntervalMessages The number of messages to accept before forcing a flush of data to disk
##
Expand All @@ -224,39 +225,31 @@ kafka:
## @param logSegmentBytes The maximum size of a log segment file. When this size is reached a new log segment will be created
## 10MB
logSegmentBytes: _10485760
auth:
tls:
type: "pem"
pemChainIncluded: true
existingSecrets:
- "sandbox-tls"
tls:
type: "PEM"
pemChainIncluded: true
existingSecret: "sandbox-tls"
externalAccess:
enabled: true
autoDiscovery:
enabled: false
service:
type: "LoadBalancer"
loadBalancerIPs:
- "hono.eclipseprojects.io"
nodePorts: []
broker:
service:
type: "LoadBalancer"
loadBalancerIPs:
- "hono.eclipseprojects.io"
nodePorts: []
controller:
service:
type: "LoadBalancer"
loadBalancerIPs:
- "hono.eclipseprojects.io"
nodePorts: []

serviceAccount:
create: false
rbac:
create: false
heapOpts: "-Xms650M -Xmx650M"
resources:
requests:
cpu: "50m"
memory: "800Mi"
limits:
memory: "800Mi"
zookeeper:
heapSize: 300
resources:
requests:
cpu: "50m"
memory: "400Mi"
limits:
memory: "400Mi"

jaegerBackendExample:
enabled: false

0 comments on commit 6866b3c

Please sign in to comment.