Files
sablier/cmd/testdata/config_default.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
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
}
}
}