aboutsummaryrefslogtreecommitdiff
path: root/test/basic-produce-consume.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/basic-produce-consume.yml')
-rw-r--r--test/basic-produce-consume.yml26
1 files changed, 25 insertions, 1 deletions
diff --git a/test/basic-produce-consume.yml b/test/basic-produce-consume.yml
index 128a00a..32ec4ec 100644
--- a/test/basic-produce-consume.yml
+++ b/test/basic-produce-consume.yml
@@ -36,7 +36,31 @@ data:
#pkill java
exit 0
-
+---
+apiVersion: batch/v1
+kind: Job
+metadata:
+ name: basic-produce-consume
+ namespace: test-kafka
+spec:
+ template:
+ spec:
+ containers:
+ - name: topic-create
+ image: solsson/kafka:1.0.0@sha256:17fdf1637426f45c93c65826670542e36b9f3394ede1cb61885c6a4befa8f72d
+ command:
+ - ./bin/kafka-topics.sh
+ - --zookeeper
+ - zookeeper.kafka.svc.cluster.local:2181
+ - --create
+ - --if-not-exists
+ - --topic
+ - test-basic-produce-consume
+ - --partitions
+ - "1"
+ - --replication-factor
+ - "2"
+ restartPolicy: Never
---
apiVersion: apps/v1beta1
kind: Deployment