aboutsummaryrefslogtreecommitdiff
path: root/test/11topic-create-test1.yml
diff options
context:
space:
mode:
authorsolsson <solsson@gmail.com>2017-07-29 04:53:42 +0200
committerGitHub <noreply@github.com>2017-07-29 04:53:42 +0200
commit1aac57a4109adbeca310cfbaef0f10a3704cbfc1 (patch)
tree6ae17c6166629426060c57f1e0dc8b793b112f25 /test/11topic-create-test1.yml
parent6a5fb08802bc9e40933c002394cee018144e37f8 (diff)
parentab35705506f83581f99b764e9489af24482188a6 (diff)
downloadkubernetes-kafka-1aac57a4109adbeca310cfbaef0f10a3704cbfc1.tar.gz
kubernetes-kafka-1aac57a4109adbeca310cfbaef0f10a3704cbfc1.tar.bz2
kubernetes-kafka-1aac57a4109adbeca310cfbaef0f10a3704cbfc1.zip
Merge pull request #30 from Yolean/kafka-011
Upgrade to Kafka 0.11 and test for open issues
Diffstat (limited to 'test/11topic-create-test1.yml')
-rw-r--r--test/11topic-create-test1.yml25
1 files changed, 0 insertions, 25 deletions
diff --git a/test/11topic-create-test1.yml b/test/11topic-create-test1.yml
deleted file mode 100644
index fdb805e..0000000
--- a/test/11topic-create-test1.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-apiVersion: batch/v1
-kind: Job
-metadata:
- name: topic-create-test1
- namespace: kafka
-spec:
- template:
- metadata:
- name: topic-create-test1
- spec:
- containers:
- - name: kafka
- image: solsson/kafka:0.10.0.1
- command:
- - ./bin/kafka-topics.sh
- - --zookeeper
- - zookeeper:2181
- - --create
- - --topic
- - test1
- - --partitions
- - "1"
- - --replication-factor
- - "1"
- restartPolicy: Never