-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use custom yaml with kafka 3.8.0 for AMQ streams operator tests
AMQ streams operator 2.8 supports Kafka 3.8.0 or less while default Kafka version from FW is 3.9.0
- Loading branch information
1 parent
d365fdd
commit ee99989
Showing
2 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
...ka-streams-reactive-messaging/src/test/resources/amq-streams-operator-kafka-instance.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
apiVersion: kafka.strimzi.io/v1beta2 | ||
kind: Kafka | ||
metadata: | ||
name: kafka-instance | ||
spec: | ||
kafka: | ||
version: 3.8.0 | ||
replicas: 1 | ||
listeners: | ||
- name: plain | ||
port: 9092 | ||
type: internal | ||
tls: false | ||
- name: tls | ||
port: 9093 | ||
type: internal | ||
tls: true | ||
config: | ||
offsets.topic.replication.factor: 1 | ||
transaction.state.log.replication.factor: 1 | ||
transaction.state.log.min.isr: 1 | ||
log.message.format.version: "3.8-IV0" | ||
storage: | ||
type: jbod | ||
volumes: | ||
- id: 0 | ||
type: persistent-claim | ||
size: 100Mi | ||
deleteClaim: true | ||
zookeeper: | ||
replicas: 1 | ||
storage: | ||
type: persistent-claim | ||
size: 100Mi | ||
deleteClaim: true | ||
entityOperator: | ||
topicOperator: {} | ||
userOperator: {} |