Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stop using projects.registry.vmware.com registry for Kafka images #373

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading