diff options
author | 2023-01-11 21:31:46 +0800 | |
---|---|---|
committer | 2023-01-11 08:31:46 -0500 | |
commit | cbbe9da8902536fd17d0a4eb758d9cd09dea24dd (patch) | |
tree | 8c14e80b5a22fa3c688e1e765d131046f8a0f480 /plugin | |
parent | 504e1d9b2e6405b54d7f44b6c7aa0e0000f730f4 (diff) | |
download | coredns-cbbe9da8902536fd17d0a4eb758d9cd09dea24dd.tar.gz coredns-cbbe9da8902536fd17d0a4eb758d9cd09dea24dd.tar.zst coredns-cbbe9da8902536fd17d0a4eb758d9cd09dea24dd.zip |
plugin/etcd: update documentation (#5847)
Signed-off-by: Vico Chu <vico24826@gmail.com>
Signed-off-by: Vico Chu <vico24826@gmail.com>
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/etcd/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/etcd/README.md b/plugin/etcd/README.md index 6e83f2327..0c7f1ea33 100644 --- a/plugin/etcd/README.md +++ b/plugin/etcd/README.md @@ -62,7 +62,7 @@ The *etcd* plugin leverages directory structure to look for related entries. For an entry `/skydns/test/skydns/mx` would have entries like `/skydns/test/skydns/mx/a`, `/skydns/test/skydns/mx/b` and so on. Similarly a directory `/skydns/test/skydns/mx1` will have all `mx1` entries. Note this plugin will search through the entire (sub)tree for records. In case of the -first example, a query for `mx.skydns.text` will return both the contents of the `a` and `b` records. +first example, a query for `mx.skydns.test` will return both the contents of the `a` and `b` records. If the directory extends deeper those records are returned as well. With etcd3, support for [hierarchical keys are |