@@ -27,24 +27,16 @@ mp.messaging.incoming.egg.connector=smallrye-kafka
2727mp.messaging.incoming.egg.topic =platform.inventory.events
2828mp.messaging.incoming.egg.group.id =runtimes-java-general
2929
30- # configure your datasource
31- # quarkus.datasource.db-kind=postgresql
32- # quarkus.datasource.username=postgres
33- # quarkus.datasource.password=postgres
34- # quarkus.datasource.jdbc.url=jdbc:postgresql://127.0.0.1:5432/runtimes
35- # quarkus.datasource.jdbc.driver=io.opentelemetry.instrumentation.jdbc.OpenTelemetryDriver
36-
3730# Verbose logging of SQL statements - disable in production
3831quarkus.hibernate-orm.log.sql =false
3932quarkus.hibernate-orm.dialect =org.hibernate.dialect.PostgreSQLDialect
4033quarkus.hibernate-orm.physical-naming-strategy =com.redhat.runtimes.inventory.models.SnakeCasePhysicalNamingStrategy
4134
42- # Do we need this in staging?
35+ # Do we need this only in staging?
4336quarkus.flyway.migrate-at-start =true
44- # Flyway must NOT clean the DB when the 'prod' profile is active ?
45- %stage.quarkus.flyway.clean-at-start =true
46- # FIXME: Does this option allow us to change the 1.0.0 schema?
47- # %test.quarkus.flyway.migrate-at-start=true
37+ # Flyway must NOT drop & recreate the DB when the 'prod' profile is active
38+ %stage.quarkus.flyway.clean-at-start =false
39+ %prod.quarkus.flyway.clean-at-start =false
4840
4941%stage.quarkus.hibernate-orm.database.generation =none
5042%stage.quarkus.hibernate-orm.sql-load-script =no-file
@@ -56,7 +48,7 @@ quarkus.http.access-log.category=access_log
5648quarkus.http.access-log.pattern =combined
5749quarkus.log.category."com.redhat.cloud.notifications".level =INFO
5850
59- %test .quarkus.http.access-log.category =info
51+ %prod .quarkus.http.access-log.category =info
6052
6153# IT User service
6254# these entries are needed because of a bug in quarkus: https://github.com/quarkusio/quarkus/issues/8384
@@ -86,7 +78,8 @@ quarkus.log.cloudwatch.log-group=placeholder
8678quarkus.log.cloudwatch.access-key-id =placeholder
8779quarkus.log.cloudwatch.access-key-secret =placeholder
8880
89- quarkus.log.category."com.redhat.cloud.notifications.health.KafkaConsumedTotalChecker".level =DEBUG
81+ %stage.quarkus.log.category."com.redhat.cloud.notifications.health.KafkaConsumedTotalChecker".level =DEBUG
82+ %prod.quarkus.log.category."com.redhat.cloud.notifications.health.KafkaConsumedTotalChecker".level =INFO
9083
9184quarkus.rest-client.ob.url =https://bridge.acme.org
9285quarkus.rest-client.kc.url =https://keycloak.acme.org
0 commit comments