Files
sablier/cmd/testdata/config_cli_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
647 B
JSON

{
"Server": {
"Port": 3333,
"BasePath": "/cli/"
},
"Storage": {
"File": "/tmp/cli.json"
},
"Provider": {
"Name": "cli",
"Kubernetes": {
"QPS": 256,
"Burst": 512,
"Delimiter": "_"
}
},
"Sessions": {
"DefaultDuration": 10800000000000,
"ExpirationInterval": 10800000000000
},
"Logging": {
"Level": "info"
},
"Strategy": {
"Dynamic": {
"CustomThemesPath": "/tmp/cli/themes",
"ShowDetailsByDefault": false,
"DefaultTheme": "cli",
"DefaultRefreshFrequency": 10800000000000
},
"Blocking": {
"DefaultTimeout": 10800000000000
}
}
}