From 62fe335a8d1a763ef85956166ae880f8962c52d1 Mon Sep 17 00:00:00 2001 From: Lukas Kral Date: Sun, 3 Oct 2021 16:11:10 +0200 Subject: [PATCH] change versions to 0.1.1 Signed-off-by: Lukas Kral --- examples/http/http-consumer.yaml | 2 +- examples/http/http-producer.yaml | 2 +- examples/kafka/admin-client/alter-topics.yaml | 2 +- examples/kafka/admin-client/create-topics.yaml | 2 +- examples/kafka/admin-client/delete-topics.yaml | 2 +- examples/kafka/admin-client/delete-with-offset-scram512.yaml | 2 +- examples/kafka/admin-client/delete-with-offset.yaml | 2 +- examples/kafka/admin-client/list-topics.yaml | 2 +- examples/kafka/kafka-consumer.yaml | 2 +- examples/kafka/kafka-producer.yaml | 2 +- examples/kafka/kafka-streams.yaml | 2 +- http/http-consumer/pom.xml | 2 +- http/http-producer/pom.xml | 2 +- http/pom.xml | 2 +- kafka/admin/pom.xml | 2 +- kafka/consumer/pom.xml | 2 +- kafka/pom.xml | 2 +- kafka/producer/pom.xml | 2 +- kafka/streams/pom.xml | 2 +- pom.xml | 2 +- 20 files changed, 20 insertions(+), 20 deletions(-) diff --git a/examples/http/http-consumer.yaml b/examples/http/http-consumer.yaml index f7816c3..f794f94 100644 --- a/examples/http/http-consumer.yaml +++ b/examples/http/http-consumer.yaml @@ -34,7 +34,7 @@ spec: value: "100" - name: LOG_LEVEL value: DEBUG - image: quay.io/strimzi-test-clients/test-client-http-consumer:0.1.0-kafka-3.0.0 + image: quay.io/strimzi-test-clients/test-client-http-consumer:0.1.1-kafka-3.0.0 imagePullPolicy: IfNotPresent name: http-consumer restartPolicy: "Never" \ No newline at end of file diff --git a/examples/http/http-producer.yaml b/examples/http/http-producer.yaml index 77c887d..69abb75 100644 --- a/examples/http/http-producer.yaml +++ b/examples/http/http-producer.yaml @@ -32,7 +32,7 @@ spec: value: "100" - name: LOG_LEVEL value: DEBUG - image: quay.io/strimzi-test-clients/test-client-http-producer:0.1.0-kafka-3.0.0 + image: quay.io/strimzi-test-clients/test-client-http-producer:0.1.1-kafka-3.0.0 imagePullPolicy: IfNotPresent name: http-producer restartPolicy: "Never" \ No newline at end of file diff --git a/examples/kafka/admin-client/alter-topics.yaml b/examples/kafka/admin-client/alter-topics.yaml index bca1d51..f4b7f9f 100644 --- a/examples/kafka/admin-client/alter-topics.yaml +++ b/examples/kafka/admin-client/alter-topics.yaml @@ -32,7 +32,7 @@ spec: value: "100" - name: LOG_LEVEL value: DEBUG - image: quay.io/strimzi-test-clients/test-client-kafka-admin:0.1.0-kafka-3.0.0 + image: quay.io/strimzi-test-clients/test-client-kafka-admin:0.1.1-kafka-3.0.0 imagePullPolicy: IfNotPresent name: alter-admin-client restartPolicy: "Never" \ No newline at end of file diff --git a/examples/kafka/admin-client/create-topics.yaml b/examples/kafka/admin-client/create-topics.yaml index 43d4a68..98736c2 100644 --- a/examples/kafka/admin-client/create-topics.yaml +++ b/examples/kafka/admin-client/create-topics.yaml @@ -34,7 +34,7 @@ spec: value: "100" - name: LOG_LEVEL value: DEBUG - image: quay.io/strimzi-test-clients/test-client-kafka-admin:0.1.0-kafka-3.0.0 + image: quay.io/strimzi-test-clients/test-client-kafka-admin:0.1.1-kafka-3.0.0 imagePullPolicy: IfNotPresent name: create-admin-client restartPolicy: "Never" \ No newline at end of file diff --git a/examples/kafka/admin-client/delete-topics.yaml b/examples/kafka/admin-client/delete-topics.yaml index 6dc6e62..d6e9fe6 100644 --- a/examples/kafka/admin-client/delete-topics.yaml +++ b/examples/kafka/admin-client/delete-topics.yaml @@ -30,7 +30,7 @@ spec: value: "100" - name: LOG_LEVEL value: DEBUG - image: quay.io/strimzi-test-clients/test-client-kafka-admin:0.1.0-kafka-3.0.0 + image: quay.io/strimzi-test-clients/test-client-kafka-admin:0.1.1-kafka-3.0.0 imagePullPolicy: IfNotPresent name: delete-admin-client-1 restartPolicy: "Never" \ No newline at end of file diff --git a/examples/kafka/admin-client/delete-with-offset-scram512.yaml b/examples/kafka/admin-client/delete-with-offset-scram512.yaml index 564e6b2..bc10ec5 100644 --- a/examples/kafka/admin-client/delete-with-offset-scram512.yaml +++ b/examples/kafka/admin-client/delete-with-offset-scram512.yaml @@ -37,7 +37,7 @@ spec: sasl.mechanism=SCRAM-SHA-512 security.protocol=SASL_PLAINTEXT sasl.jaas.config=org.apache.kafka.common.security.scram.ScramLoginModule required username="test-user" password="myPassword"; - image: quay.io/strimzi-test-clients/test-client-kafka-admin:0.1.0-kafka-3.0.0 + image: quay.io/strimzi-test-clients/test-client-kafka-admin:0.1.1-kafka-3.0.0 imagePullPolicy: IfNotPresent name: delete-admin-client-offset-scram restartPolicy: "Never" diff --git a/examples/kafka/admin-client/delete-with-offset.yaml b/examples/kafka/admin-client/delete-with-offset.yaml index b712712..042199f 100644 --- a/examples/kafka/admin-client/delete-with-offset.yaml +++ b/examples/kafka/admin-client/delete-with-offset.yaml @@ -32,7 +32,7 @@ spec: value: "200" - name: LOG_LEVEL value: DEBUG - image: quay.io/strimzi-test-clients/test-client-kafka-admin:0.1.0-kafka-3.0.0 + image: quay.io/strimzi-test-clients/test-client-kafka-admin:0.1.1-kafka-3.0.0 imagePullPolicy: IfNotPresent name: delete-admin-client-with-offset restartPolicy: "Never" diff --git a/examples/kafka/admin-client/list-topics.yaml b/examples/kafka/admin-client/list-topics.yaml index 7541229..83414b5 100644 --- a/examples/kafka/admin-client/list-topics.yaml +++ b/examples/kafka/admin-client/list-topics.yaml @@ -26,7 +26,7 @@ spec: value: list - name: LOG_LEVEL value: DEBUG - image: quay.io/strimzi-test-clients/test-client-kafka-admin:0.1.0-kafka-3.0.0 + image: quay.io/strimzi-test-clients/test-client-kafka-admin:0.1.1-kafka-3.0.0 imagePullPolicy: IfNotPresent name: list-admin-client restartPolicy: "Never" diff --git a/examples/kafka/kafka-consumer.yaml b/examples/kafka/kafka-consumer.yaml index e4902d2..60766d0 100644 --- a/examples/kafka/kafka-consumer.yaml +++ b/examples/kafka/kafka-consumer.yaml @@ -30,7 +30,7 @@ spec: value: my-group - name: LOG_LEVEL value: DEBUG - image: quay.io/strimzi-test-clients/test-client-kafka-consumer:0.1.0-kafka-3.0.0 + image: quay.io/strimzi-test-clients/test-client-kafka-consumer:0.1.1-kafka-3.0.0 imagePullPolicy: IfNotPresent name: kafka-consumer-client restartPolicy: "Never" \ No newline at end of file diff --git a/examples/kafka/kafka-producer.yaml b/examples/kafka/kafka-producer.yaml index 7ebdce2..f90f129 100644 --- a/examples/kafka/kafka-producer.yaml +++ b/examples/kafka/kafka-producer.yaml @@ -34,7 +34,7 @@ spec: value: all - name: LOG_LEVEL value: DEBUG - image: quay.io/strimzi-test-clients/test-client-kafka-producer:0.1.0-kafka-3.0.0 + image: quay.io/strimzi-test-clients/test-client-kafka-producer:0.1.1-kafka-3.0.0 imagePullPolicy: IfNotPresent name: kafka-producer-client restartPolicy: "Never" \ No newline at end of file diff --git a/examples/kafka/kafka-streams.yaml b/examples/kafka/kafka-streams.yaml index 7966e7a..9e27d77 100644 --- a/examples/kafka/kafka-streams.yaml +++ b/examples/kafka/kafka-streams.yaml @@ -28,7 +28,7 @@ spec: value: my-topic - name: TARGET_TOPIC value: my-topic-reversed - image: quay.io/strimzi-test-clients/test-client-kafka-streams:0.1.0-kafka-3.0.0 + image: quay.io/strimzi-test-clients/test-client-kafka-streams:0.1.1-kafka-3.0.0 imagePullPolicy: IfNotPresent name: kafka-streams-client restartPolicy: "Never" \ No newline at end of file diff --git a/http/http-consumer/pom.xml b/http/http-consumer/pom.xml index a93e1ee..e157663 100644 --- a/http/http-consumer/pom.xml +++ b/http/http-consumer/pom.xml @@ -7,7 +7,7 @@ io.strimzi http-test-clients - 0.1.0 + 0.1.1 test-client-http-consumer diff --git a/http/http-producer/pom.xml b/http/http-producer/pom.xml index acfc4cc..a4f7d26 100644 --- a/http/http-producer/pom.xml +++ b/http/http-producer/pom.xml @@ -7,7 +7,7 @@ io.strimzi http-test-clients - 0.1.0 + 0.1.1 test-client-http-producer diff --git a/http/pom.xml b/http/pom.xml index 460c90a..aaa3bb4 100644 --- a/http/pom.xml +++ b/http/pom.xml @@ -7,7 +7,7 @@ io.strimzi test-clients - 0.1.0 + 0.1.1 http-test-clients diff --git a/kafka/admin/pom.xml b/kafka/admin/pom.xml index 0079b07..3b3a29e 100644 --- a/kafka/admin/pom.xml +++ b/kafka/admin/pom.xml @@ -7,7 +7,7 @@ io.strimzi kafka-test-clients - 0.1.0 + 0.1.1 test-client-kafka-admin diff --git a/kafka/consumer/pom.xml b/kafka/consumer/pom.xml index 847b2a9..749a8f7 100644 --- a/kafka/consumer/pom.xml +++ b/kafka/consumer/pom.xml @@ -7,7 +7,7 @@ io.strimzi kafka-test-clients - 0.1.0 + 0.1.1 test-client-kafka-consumer diff --git a/kafka/pom.xml b/kafka/pom.xml index 916ef4d..dd05e9a 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -7,7 +7,7 @@ io.strimzi test-clients - 0.1.0 + 0.1.1 kafka-test-clients diff --git a/kafka/producer/pom.xml b/kafka/producer/pom.xml index e70d639..8f5f087 100644 --- a/kafka/producer/pom.xml +++ b/kafka/producer/pom.xml @@ -7,7 +7,7 @@ io.strimzi kafka-test-clients - 0.1.0 + 0.1.1 test-client-kafka-producer diff --git a/kafka/streams/pom.xml b/kafka/streams/pom.xml index 47d1e95..2e60aba 100644 --- a/kafka/streams/pom.xml +++ b/kafka/streams/pom.xml @@ -7,7 +7,7 @@ io.strimzi kafka-test-clients - 0.1.0 + 0.1.1 test-client-kafka-streams diff --git a/pom.xml b/pom.xml index 78e8c58..d0e80dd 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ io.strimzi test-clients pom - 0.1.0 + 0.1.1 kafka