Skip to content

Commit

Permalink
fix(properties): disable podman discovery in production by default
Browse files Browse the repository at this point in the history
Signed-off-by: Thuan Vo <[email protected]>
  • Loading branch information
tthvo committed Oct 13, 2023
1 parent e9764c5 commit 4957851
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/application-dev.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ quarkus.hibernate-orm.log.sql=true
quarkus.log.category."org.jboss.resteasy.reactive.common.core.AbstractResteasyReactiveContext".level=DEBUG
cryostat.discovery.jdp.enabled=true
cryostat.discovery.podman.enabled=true
cryostat.discovery.docker.enabled=false
cryostat.discovery.docker.enabled=true
2 changes: 1 addition & 1 deletion src/main/resources/application-test.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ quarkus.smallrye-openapi.info-title=Cryostat API (test)

cryostat.discovery.jdp.enabled=true
cryostat.discovery.podman.enabled=true
cryostat.discovery.docker.enabled=false
cryostat.discovery.docker.enabled=true
cryostat.auth.disabled=true

grafana-dashboard.url=http://grafana:3000
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
quarkus.naming.enable-jndi=true
cryostat.discovery.jdp.enabled=false
cryostat.discovery.podman.enabled=true
cryostat.discovery.podman.enabled=false
cryostat.discovery.docker.enabled=false
quarkus.test.integration-test-profile=test

Expand Down

0 comments on commit 4957851

Please sign in to comment.