From caaedd0e33843e80e586e95ae8b39707c8a98573 Mon Sep 17 00:00:00 2001 From: lionsctl-bot Date: Sat, 10 Jan 2026 13:39:20 +0000 Subject: [PATCH] chore: update configmap template --- templates/configmap.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 templates/configmap.yaml diff --git a/templates/configmap.yaml b/templates/configmap.yaml new file mode 100644 index 0000000..e66833f --- /dev/null +++ b/templates/configmap.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ .Release.Name }} +data: + QUARKUS_PROFILE: "{{ .Values.environment }}" + APP_ENV: "{{ .Values.environment }}" + QUARKUS_DATASOURCE_DB_KIND: "postgresql" + QUARKUS_DATASOURCE_USERNAME: "lionsuser" + QUARKUS_DATASOURCE_PASSWORD: "LionsUser2025!" + QUARKUS_DATASOURCE_JDBC_URL: "jdbc:postgresql://postgresql-service.postgresql.svc.cluster.local:5432/{{ .Values.databaseName }}" + QUARKUS_HIBERNATE_ORM_DATABASE_GENERATION: "update" + APP_BASE_URL: "https://{{ .Values.ingress.domain }}" + STORAGE_PATH: "/app/storage"