From 843d950f9614393226c31b60f143c607de5b4425 Mon Sep 17 00:00:00 2001 From: mostmark Date: Thu, 19 Sep 2024 15:52:44 +0200 Subject: [PATCH] Remove .svc suffix from inventory-mariadb hostname in in the inventory configmap The inventory-mariadb.svc hostname in the configmap is not resolved. Removing the .svc suffix resolves the problem --- documentation/modules/ROOT/pages/app-config.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/modules/ROOT/pages/app-config.adoc b/documentation/modules/ROOT/pages/app-config.adoc index 0d0909f..d71860b 100644 --- a/documentation/modules/ROOT/pages/app-config.adoc +++ b/documentation/modules/ROOT/pages/app-config.adoc @@ -233,7 +233,7 @@ metadata: app.kubernetes.io/instance: inventory data: application.properties: |- - quarkus.datasource.jdbc.url=jdbc:mariadb://inventory-mariadb.svc:3306/inventorydb + quarkus.datasource.jdbc.url=jdbc:mariadb://inventory-mariadb:3306/inventorydb quarkus.datasource.username=inventory quarkus.datasource.password=inventory ----