forked from TrueCloudLab/frostfs-node
[#493] config: Add example config files of storage node application
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
b8a5f09174
commit
f833fe1ee2
3 changed files with 20 additions and 0 deletions
13
config/example/README.md
Normal file
13
config/example/README.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
# Examples of correct configuration file structures
|
||||
|
||||
Here are files in all supported formats and with all possible configuration values
|
||||
of NeoFS applications.
|
||||
|
||||
All parameters are correct, however, they are for informational purposes only.
|
||||
It is not recommended to transfer these configs for real application launches.
|
||||
|
||||
## Config files
|
||||
|
||||
- Storage node
|
||||
- JSON: `node.json`
|
||||
- YAML: `node.yaml`
|
5
config/example/node.json
Normal file
5
config/example/node.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"logger": {
|
||||
"level": "debug"
|
||||
}
|
||||
}
|
2
config/example/node.yaml
Normal file
2
config/example/node.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
logger:
|
||||
level: debug
|
Loading…
Reference in a new issue