forked from TrueCloudLab/frostfs-node
[#493] cmd/node: Implement a basic configuration component
Create `config` package nearby storage node application. Implement `Config` as a wrapper over `viper.Viper` that provides the minimum functionality required by the application. The constructor allows you to read the config from the file. Methods are provided for reading subsections and values from the config tree. Helper functions are implemented to cast a value to native Go types. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
d34de558f0
commit
7e11bf9a55
11 changed files with 260 additions and 0 deletions
14
cmd/neofs-node/config/test/config.json
Normal file
14
cmd/neofs-node/config/test/config.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"value": "some value",
|
||||
"section": {
|
||||
"any": "thing"
|
||||
},
|
||||
"string_slice": {
|
||||
"empty": [],
|
||||
"filled": [
|
||||
"string1",
|
||||
"string2"
|
||||
],
|
||||
"incorrect": null
|
||||
}
|
||||
}
|
13
cmd/neofs-node/config/test/config.yaml
Normal file
13
cmd/neofs-node/config/test/config.yaml
Normal file
|
@ -0,0 +1,13 @@
|
|||
value: some value
|
||||
|
||||
section:
|
||||
any: thing
|
||||
|
||||
string_slice:
|
||||
empty: []
|
||||
|
||||
filled:
|
||||
- string1
|
||||
- string2
|
||||
|
||||
incorrect:
|
Loading…
Add table
Add a link
Reference in a new issue