-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Kafka, Schema Registry and Avro Quickstart #832
Kafka, Schema Registry and Avro Quickstart #832
Conversation
49dd817
to
75b7044
Compare
f76cbd2
to
64c1fac
Compare
kafka-avro-schema-quickstart/src/main/resources/META-INF/resources/index.html
Outdated
Show resolved
Hide resolved
64c1fac
to
c957c89
Compare
c957c89
to
621e5c5
Compare
registry = new GenericContainer<>("apicurio/apicurio-registry-mem:1.3.2.Final") | ||
.withExposedPorts(8080) | ||
.withEnv("QUARKUS_PROFILE", "prod") | ||
.withEnv("KAFKA_BOOTSTRAP_SERVERS", kafka.getBootstrapServers()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the env vars KAFKA_BOOTSTRAP_SERVERS
, APPLICATION_ID
and APPLICATION_SERVER
are not required, the image apicurio/apicurio-registry-mem:1.3.2.Final
stores the schemas in-memory and do not require access to kafka
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point. I'm updating the quickstart to use Apicurio Registry 2.0.0, so I'll remove this as part of the work.
The corresponding guide: quarkusio/quarkus#16503
Check list:
Your pull request:
development
branch999-SNAPSHOT
version of Quarkusmvn clean test
)mvn clean package -Pnative
)mvn clean verify -Pnative
)README.md
file (with build and run instructions)pom.xml
andREADME.md