aboutsummaryrefslogtreecommitdiff
path: root/test/basic-with-kafkacat.yml
diff options
context:
space:
mode:
authorStaffan Olsson <staffan@repos.se>2017-11-05 11:31:35 +0100
committerStaffan Olsson <staffan@repos.se>2017-11-05 11:33:07 +0100
commit3fad8bf507bb6e6aabc49f8961e3948b9dd3cf4d (patch)
tree4621b73c932d891f2eda79e052f607395bf77548 /test/basic-with-kafkacat.yml
parent14ec1ad9aba8baae220a7ce0db5055c3ea2bbaf6 (diff)
downloadkubernetes-kafka-3fad8bf507bb6e6aabc49f8961e3948b9dd3cf4d.tar.gz
kubernetes-kafka-3fad8bf507bb6e6aabc49f8961e3948b9dd3cf4d.tar.bz2
kubernetes-kafka-3fad8bf507bb6e6aabc49f8961e3948b9dd3cf4d.zip
Changes replication-factor for test topics to 2 ...
because 1 is useless, as even a normal reschedule of the broker pod that happens to own the replica+partition will disrupt clients. Testing with replication-factor=2 but using 3 for production topics is sensible because we can test with 3 brokers how replication performs.
Diffstat (limited to 'test/basic-with-kafkacat.yml')
-rw-r--r--test/basic-with-kafkacat.yml3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/basic-with-kafkacat.yml b/test/basic-with-kafkacat.yml
index 405a798..78e423c 100644
--- a/test/basic-with-kafkacat.yml
+++ b/test/basic-with-kafkacat.yml
@@ -23,7 +23,6 @@ data:
kafkacat -C -b $BOOTSTRAP -t test-basic-with-kafkacat -o -1 -e | grep $unique
exit 0
-
---
apiVersion: batch/v1
kind: Job
@@ -47,7 +46,7 @@ spec:
- --partitions
- "1"
- --replication-factor
- - "1"
+ - "2"
restartPolicy: Never
---
apiVersion: apps/v1beta1