aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--middleware/chaos/README.md24
1 files changed, 23 insertions, 1 deletions
diff --git a/middleware/chaos/README.md b/middleware/chaos/README.md
index d3c571e1f..264ab0601 100644
--- a/middleware/chaos/README.md
+++ b/middleware/chaos/README.md
@@ -19,6 +19,28 @@ following zones: `version.bind`, `version.server`, `authors.bind`, `hostname.bin
## Examples
+Specify all the zones in full.
+
+~~~ corefile
+version.bind version.server authors.bind hostname.bind id.server {
+ chaos CoreDNS-001 info@coredns.io
+}
+~~~
+
+Or just default to `.`:
+
+~~~ corefile
+. {
+ chaos CoreDNS-001 info@coredns.io
+}
~~~
-chaos CoreDNS-001 "Miek Gieben" miek@miek.nl
+
+And test with `dig`:
+
+~~~ txt
+% dig @localhost CH TXT version.bind
+...
+;; ANSWER SECTION:
+version.bind. 0 CH TXT "CoreDNS-001"
+...
~~~