Keys on the root path not shown
Etcdkeeper shows only keys that have a prefix "/".

Expected: show all keys.
$ etcdctl get / --keys-only=true --prefix
/skydns
/skydns/...
...
$ etcdctl get "" --keys-only=true --prefix
/skydns
/skydns/...
...
backend-encrypted
config/iam/...
If the key is not built according to the directory form, the changes are a bit large. There is a tree button click to change the mode of viewing the key.
@evildecay
etcdkeeper does not show these keys in any mode. He ignores them because they do not start from /.
Test case:
- Put any key without
/as the first symbol
etcdctl put foo bar
- etcdkeeper do not show a
foo
I see what you mean. Generally, configuration management uses a directory as a hierarchical structure to store data, such as zookeeper and etcdv2. So never consider the key-value way to store data. I can improve the display of keys in key-value mode. dir-mode I have time and I will consider displaying correctly.
Generally, configuration management uses a directory as a hierarchical structure to store data
As it turned out, not all πIt was a surprise for me too π€·ββ
Bummer, I thought I had a bug in my code for a long time π