DEVX-200: [BE] Унифицировать понятие версии сервиса

This commit is contained in:
2026-04-07 18:04:17 +03:00
parent 4739e6756d
commit 32fc3c4022
8 changed files with 37 additions and 5 deletions
@@ -15,9 +15,9 @@ data:
application:
name: {{$.Release.Name}}
datasource:
url: jdbc:postgresql://192.168.76.114:5432/database
username: postgres
password: postgres
url: 'jdbc:postgresql://{{$.Values.database.url}}'
username: {{$.Values.database.user}}
password: {{$.Values.database.password}}
cloud:
vault:
enabled: false
+2
View File
@@ -0,0 +1,2 @@
#!/bin/bash
helm
+4
View File
@@ -0,0 +1,4 @@
database:
url: '192.168.76.114:5432/database'
user: 'postgres'
password: 'postgres'
View File
+4
View File
@@ -0,0 +1,4 @@
database:
url: '192.168.76.114:5432/database'
user: 'postgres'
password: 'postgres'
View File