Class UnleashDevServicesConfig.UnleashDatabaseConfig
- java.lang.Object
-
- io.quarkiverse.unleash.devservices.UnleashDevServicesConfig.UnleashDatabaseConfig
-
- Enclosing class:
- UnleashDevServicesConfig
public static class UnleashDevServicesConfig.UnleashDatabaseConfig extends Object
Unleash database config
-
-
Field Summary
Fields Modifier and Type Field Description StringimageNameThe container image name to use, for unleash database.StringserviceNameThe value of thequarkus-dev-service-unleash-dblabel attached to the started container.
-
Constructor Summary
Constructors Constructor Description UnleashDatabaseConfig()
-
-
-
Field Detail
-
imageName
@ConfigItem(name="image-name", defaultValue="postgres:15.2") public String imageNameThe container image name to use, for unleash database.
-
serviceName
@ConfigItem(name="service-name", defaultValue="unleash-db") public String serviceNameThe value of thequarkus-dev-service-unleash-dblabel attached to the started container. This property is used whensharedis set totrue. In this case, before starting a container, Dev Services for Unleash DB looks for a container with thequarkus-dev-service-unleash-dblabel set to the configured value. If found, it will use this container instead of starting a new one. Otherwise, it starts a new container with thequarkus-dev-service-unleash-dblabel set to the specified value.This property is used when you need multiple shared Unleash DB servers.
-
-