DEVX-200: [BE] Унифицировать понятие версии сервиса
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
helm
|
||||
@@ -0,0 +1,4 @@
|
||||
database:
|
||||
url: '192.168.76.114:5432/database'
|
||||
user: 'postgres'
|
||||
password: 'postgres'
|
||||
@@ -0,0 +1,4 @@
|
||||
database:
|
||||
url: '192.168.76.114:5432/database'
|
||||
user: 'postgres'
|
||||
password: 'postgres'
|
||||
Reference in New Issue
Block a user