You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.0 KiB
24 lines
1.0 KiB
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: eshop-config
|
|
type: Opaque
|
|
stringData:
|
|
appsettings.json: |
|
|
{
|
|
"ConnectionStrings": {
|
|
"CatalogConnection": "Server={{ .Values.database.serverHostname }},1433;Integrated Security=False;Initial Catalog={{ .Values.database.name }};User Id={{ .Values.database.username }};Password={{ .Values.database.password }};Trusted_Connection=false;Encrypt=false",
|
|
"IdentityConnection": "Server={{ .Values.database.serverHostname }},1433;Integrated Security=False;Initial Catalog={{ .Values.database.name }};User Id={{ .Values.database.username }};Password={{ .Values.database.password }};Trusted_Connection=false;Encrypt=false"
|
|
},
|
|
"baseUrls": {
|
|
"apiBase": "https://{{ .Values.ingress.apiHostname }}/api/",
|
|
"webBase": "https://{{ .Values.ingress.webHostname }}/"
|
|
},
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft": "Warning",
|
|
"Microsoft.Hosting.Lifetime": "Information"
|
|
}
|
|
}
|
|
}
|
|
|