Files
sablier/cmd/testdata/config_yaml_wanted.json
Alexis Couvreur 60b270472d feat(kubernetes): add provider.kubernetes.delimiter config property
the delimiter configuration property for kubernetes allows you to change the default "_" delimiter.

By specifying "/" or "." as a delimiter you ensure that you won't collide with objects names that contains the default delimiter "_".

Fixes #207
2024-02-05 12:05:12 -05:00

36 lines
678 B
JSON

{
"Server": {
"Port": 1111,
"BasePath": "/configfile/"
},
"Storage": {
"File": "/tmp/configfile.json"
},
"Provider": {
"Name": "configfile",
"Kubernetes": {
"QPS": 64,
"Burst": 128,
"Delimiter": "."
}
},
"Sessions": {
"DefaultDuration": 3600000000000,
"ExpirationInterval": 3600000000000
},
"Logging": {
"Level": "trace"
},
"Strategy": {
"Dynamic": {
"CustomThemesPath": "/tmp/configfile/themes",
"ShowDetailsByDefault": false,
"DefaultTheme": "configfile",
"DefaultRefreshFrequency": 3600000000000
},
"Blocking": {
"DefaultTimeout": 3600000000000
}
}
}