mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-24 14:31:51 +01:00
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
36 lines
615 B
JSON
36 lines
615 B
JSON
{
|
|
"Server": {
|
|
"Port": 10000,
|
|
"BasePath": "/"
|
|
},
|
|
"Storage": {
|
|
"File": ""
|
|
},
|
|
"Provider": {
|
|
"Name": "docker",
|
|
"Kubernetes": {
|
|
"QPS": 5,
|
|
"Burst": 10,
|
|
"Delimiter": "_"
|
|
}
|
|
},
|
|
"Sessions": {
|
|
"DefaultDuration": 300000000000,
|
|
"ExpirationInterval": 20000000000
|
|
},
|
|
"Logging": {
|
|
"Level": "info"
|
|
},
|
|
"Strategy": {
|
|
"Dynamic": {
|
|
"CustomThemesPath": "",
|
|
"ShowDetailsByDefault": true,
|
|
"DefaultTheme": "hacker-terminal",
|
|
"DefaultRefreshFrequency": 5000000000
|
|
},
|
|
"Blocking": {
|
|
"DefaultTimeout": 60000000000
|
|
}
|
|
}
|
|
}
|