-
Notifications
You must be signed in to change notification settings - Fork 382
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
[incubator-kie-issues#1220] Quarkus example to showcase PIM functionality #1979
[incubator-kie-issues#1220] Quarkus example to showcase PIM functionality #1979
Conversation
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.
@martinweiler great example!
Just requested a few changes related to some missing bits of the compact setup, basically using the data-index addon in the app (and remove it from the docker-compose). A part from that everything works as expected
This quickstart provides a docker compose template that starts all the required services. This setup ensures that all services are connected with a default configuration. | ||
|
||
- PostgreSQL: 5432 | ||
- Data Index: 8180 |
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.
@martinweiler shouldn't we be using the compact setup?
PGADMIN_CONFIG_MASTER_PASSWORD_REQUIRED: 'False' | ||
GUNICORN_ACCESS_LOGFILE: '/dev/null' | ||
|
||
data-index: |
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.
No needed with compact setup
QUARKUS_DATASOURCE_DB_KIND: postgresql | ||
KOGITO_JOBS_SERVICE_URL: http://${DOCKER_GATEWAY_HOST}:8080 | ||
KOGITO_SERVICE_URL: http://${DOCKER_GATEWAY_HOST}:8080 | ||
KOGITO_DATAINDEX_HTTP_URL: http://${DOCKER_GATEWAY_HOST}:8180 |
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.
KOGITO_DATAINDEX_HTTP_URL: http://${DOCKER_GATEWAY_HOST}:8180 | |
KOGITO_DATAINDEX_HTTP_URL: http://${DOCKER_GATEWAY_HOST}:8080 |
...uarkus-examples/process-instance-migration-quarkus/src/main/resources/application.properties
Outdated
Show resolved
Hide resolved
kogito-quarkus-examples/process-instance-migration-quarkus/docker-compose/sql/init.sql
Outdated
Show resolved
Hide resolved
.../process-instance-migration-quarkus/src/main/resources/META-INF/processSVG/addedtask-svg.svg
Outdated
Show resolved
Hide resolved
kogito-quarkus-examples/process-instance-migration-quarkus/docker-compose/README.md
Outdated
Show resolved
Hide resolved
kogito-quarkus-examples/process-instance-migration-quarkus/docker-compose/docker-compose.yml
Outdated
Show resolved
Hide resolved
@pefernan thanks for your review. I have updated the example now to be aligned with the compact architecture example. Could you please take another look? Thanks! |
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 work.
…lity (apache#1979) * [incubator-kie-issues#1220] Quarkus example to showcase PIM functionality * Align example with compact architecture setup
Closes apache/incubator-kie-issues#1220