Skip to content

Commit

Permalink
Stop using projects.registry.vmware.com registry for Kafka images
Browse files Browse the repository at this point in the history
- For confluent images (Kafka and Zookeeper), we now use the standard
  images from the confluentinc docker.io organization.
- For the kafka-consumer image, we use antrea/kafka-consumer.

Signed-off-by: Antonin Bas <antonin.bas@broadcom.com>
  • Loading branch information
antoninbas committed Sep 20, 2024
1 parent e959a8c commit 447137d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ kubectl apply -f ./build/yamls/kafka-flow-collector.yaml
```
Broker address will be `kafka-service.kafka.svc:9092`.
Notice that `KAFKA_ADVERTISED_LISTENERS` for kafka-broker and broker address should be consistent and accessible
from other namespaces. Also, versioned images of kafka-broker `projects.registry.vmware.com/antrea/confluentinc-kafka:v6.2.0`
and zookeeper `projects.registry.vmware.com/antrea/confluentinc-zookeeper:v6.2.0` are used in the set-up. Proper
upload of Docker images is required to support more versions.
from other namespaces. Also, versioned images of kafka-broker `confluentinc/cp-kafka:6.2.0`
and zookeeper `confluentinc/cp-zookeeper:6.2.0` are used in the set-up. Other
versions have not been validated.

Currently, `antrea/kafka-consumer` only supports decoding and logging messages with AntreaFlowMsg proto schema.

Expand Down
6 changes: 3 additions & 3 deletions build/yamls/kafka-flow-collector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ spec:
spec:
containers:
- name: zookeeper
image: projects.registry.vmware.com/antrea/confluentinc-zookeeper:6.2.0
image: confluentinc/cp-zookeeper:6.2.0
ports:
- containerPort: 2181
env:
Expand All @@ -77,7 +77,7 @@ spec:
spec:
containers:
- name: kafka
image: projects.registry.vmware.com/antrea/confluentinc-kafka:6.2.0
image: confluentinc/cp-kafka:6.2.0
ports:
- containerPort: 9092
env:
Expand Down Expand Up @@ -106,7 +106,7 @@ spec:
spec:
containers:
- name: kafka
image: projects.registry.vmware.com/antrea/kafka-consumer
image: antrea/kafka-consumer
imagePullPolicy: IfNotPresent
args:
- --brokers=kafka-service.kafka.svc:9092
Expand Down

0 comments on commit 447137d

Please sign in to comment.