Skip to content

Commit

Permalink
Upgrade KafkaCat image used in KafkaSource e2e tests (knative-extensi…
Browse files Browse the repository at this point in the history
…ons#790) (#293)

Signed-off-by: Ahmed Abdalla <aabdelre@redhat.com>
  • Loading branch information
devguyio authored Aug 5, 2021
1 parent bc9b27b commit 1bbda13
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/e2e/helpers/kafka_helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ const (
strimziTopicResource = "kafkatopics"
interval = 3 * time.Second
timeout = 30 * time.Second
kafkaCatImage = "docker.io/edenhill/kafkacat:1.6.0"
)

var (
Expand Down Expand Up @@ -102,7 +103,7 @@ func MustPublishKafkaMessage(client *testlib.Client, bootstrapServer string, top
},
Spec: corev1.PodSpec{
Containers: []corev1.Container{{
Image: "docker.io/edenhill/kafkacat:1.5.0",
Image: kafkaCatImage,
Name: cgName + "-producer-container",
Command: []string{"kafkacat"},
Args: args,
Expand Down

0 comments on commit 1bbda13

Please sign in to comment.