20 lines
455 B
YAML
20 lines
455 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "findings-ledger.fullname" . }}-config
|
|
labels:
|
|
{{- include "findings-ledger.labels" . | nindent 4 }}
|
|
data:
|
|
appsettings.json: |
|
|
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft": "Warning",
|
|
"Microsoft.Hosting.Lifetime": "Information",
|
|
"StellaOps": "Information"
|
|
}
|
|
},
|
|
"AllowedHosts": "*"
|
|
}
|