Files
sablier/cmd/testdata/config_env_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
657 B
JSON

{
"Server": {
"Port": 2222,
"BasePath": "/envvar/"
},
"Storage": {
"File": "/tmp/envvar.json"
},
"Provider": {
"Name": "envvar",
"Kubernetes": {
"QPS": 16,
"Burst": 32,
"Delimiter": "/"
}
},
"Sessions": {
"DefaultDuration": 7200000000000,
"ExpirationInterval": 7200000000000
},
"Logging": {
"Level": "debug"
},
"Strategy": {
"Dynamic": {
"CustomThemesPath": "/tmp/envvar/themes",
"ShowDetailsByDefault": false,
"DefaultTheme": "envvar",
"DefaultRefreshFrequency": 7200000000000
},
"Blocking": {
"DefaultTimeout": 7200000000000
}
}
}