mirror of
https://gitea.fenix-dev.com/fenix-gitea-admin/iac-ansible-private.git
synced 2026-05-14 08:35:22 +00:00
24 lines
827 B
YAML
24 lines
827 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: lingarr-configmap
|
|
namespace: stack-arr
|
|
data:
|
|
Lingarr.Server.runtimeconfig.json: |
|
|
{
|
|
"runtimeOptions": {
|
|
"tfm": "net9.0",
|
|
"frameworks": [
|
|
{ "name": "Microsoft.NETCore.App", "version": "9.0.0" },
|
|
{ "name": "Microsoft.AspNetCore.App", "version": "9.0.0" }
|
|
],
|
|
"configProperties": {
|
|
"System.GC.Server": true,
|
|
"System.Globalization.Invariant": false,
|
|
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
|
"System.Reflection.NullabilityInfoContext.IsSupported": true,
|
|
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false,
|
|
"Npgsql.EnableLegacyTimestampBehavior": true
|
|
}
|
|
}
|
|
} |