Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
C
Coredns
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Railgun
Coredns
Commits
2388e36c
Commit
2388e36c
authored
Sep 15, 2017
by
Miek Gieben
Committed by
GitHub
Sep 15, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
plugin: README.md updates (#1084)
updates so the look better on coredns.io
parent
19d7d207
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
21 additions
and
21 deletions
+21
-21
plugin/autopath/README.md
plugin/autopath/README.md
+6
-6
plugin/chaos/README.md
plugin/chaos/README.md
+1
-1
plugin/erratic/README.md
plugin/erratic/README.md
+3
-3
plugin/federation/README.md
plugin/federation/README.md
+1
-1
plugin/health/README.md
plugin/health/README.md
+1
-1
plugin/kubernetes/README.md
plugin/kubernetes/README.md
+3
-2
plugin/metrics/README.md
plugin/metrics/README.md
+1
-1
plugin/pprof/README.md
plugin/pprof/README.md
+1
-1
plugin/reverse/README.md
plugin/reverse/README.md
+3
-3
plugin/trace/README.md
plugin/trace/README.md
+1
-2
No files found.
plugin/autopath/README.md
View file @
2388e36c
# autopath
The
*autopath*
plugin allows CoreDNS to perform server side search path completion.
If it sees a query that matches the first element of the configured search path,
*autopath*
will
follow the chain of search path elements and returns the first reply that is not NXDOMAIN.
On any failures the original reply is returned.
*autopath*
allows CoreDNS to perform server side search path completion.
Because
*autopath*
returns a reply for a name that wasn't the original question it will add a CNAME
that points from the original name (with the search path element in it) to the name of this answer.
If it sees a query that matches the first element of the configured search path,
*autopath*
will
follow the chain of search path elements and returns the first reply that is not NXDOMAIN. On any
failures the original reply is returned. Because
*autopath*
returns a reply for a name that wasn't
the original question it will add a CNAME that points from the original name (with the search path
element in it) to the name of this answer.
## Syntax
...
...
plugin/chaos/README.md
View file @
2388e36c
# chaos
The
*chaos*
plugin
allows CoreDNS to respond to TXT queries in the CH class.
*chaos*
allows CoreDNS to respond to TXT queries in the CH class.
This is useful for retrieving version or author information from the server.
...
...
plugin/erratic/README.md
View file @
2388e36c
# erratic
*erratic*
is a plugin useful for testing client behavior. It returns a static response to all
queries, but the responses can be delayed, dropped or truncated.
*erratic*
is a plugin useful for testing client behavior.
It returns a static response to all queries, but the responses can be delayed, dropped or truncated.
The
*erratic*
plugin will respond to every A or AAAA query. For any other type it will return
a SERVFAIL response. The reply for A will return 192.0.2.53 (see RFC 5737), for AAAA it returns
2001:DB8::53 (see RFC 3849).
*erratic*
can also be used in conjunction with the
*autopath*
plugin. This is mostly to aid in
testing.
testing.
## Syntax
...
...
plugin/federation/README.md
View file @
2388e36c
# federation
The
*federation*
plugin
enables
*federation*
enables
[
federated
](
https://kubernetes.io/docs/tasks/federation/federation-service-discovery/
)
queries to be
resolved via the kubernetes plugin.
...
...
plugin/health/README.md
View file @
2388e36c
# health
This module enable
s a simple health check endpoint. By default it will listen on port 8080.
*health*
enables
s a simple health check endpoint. By default it will listen on port 8080.
## Syntax
...
...
plugin/kubernetes/README.md
View file @
2388e36c
# kubernetes
The
*kubernetes*
plugin enables the reading zone data from a Kubernetes cluster. It implements
the [Kubernetes DNS-Based Service Discovery
The
*kubernetes*
plugin enables the reading zone data from a Kubernetes cluster.
It implements the [Kubernetes DNS-Based Service Discovery
Specification](https://github.com/kubernetes/dns/blob/master/docs/specification.md).
CoreDNS running the kubernetes plugin can be used as a replacement of kube-dns in a kubernetes
...
...
plugin/metrics/README.md
View file @
2388e36c
# prometheus
This module enables prometheus
metrics for CoreDNS.
*prometheus*
enables
[
Prometheus
](
https://prometheus.io/
)
metrics for CoreDNS.
The default location for the metrics is
`localhost:9153`
. The metrics path is fixed to
`/metrics`
.
The following metrics are exported:
...
...
plugin/pprof/README.md
View file @
2388e36c
# pprof
*pprof*
publishes runtime profiling data at endpoints under
/debug/pprof
.
*pprof*
publishes runtime profiling data at endpoints under
`/debug/pprof`
.
You can visit
`/debug/pprof`
on your site for an index of the available endpoints. By default it
will listen on localhost:6053.
...
...
plugin/reverse/README.md
View file @
2388e36c
# reverse
The
*reverse*
plugin
allows CoreDNS to respond dynamically to a PTR request and the related A/AAAA request.
*reverse*
allows CoreDNS to respond dynamically to a PTR request and the related A/AAAA request.
## Syntax
...
...
@@ -38,7 +38,7 @@ The zone will be matched by the zones listed in *this* configuration stanza.
## Examples
~~~
txt
~~~
corefile
arpa compute.internal {
# proxy unmatched requests
proxy . 8.8.8.8
...
...
@@ -63,7 +63,7 @@ arpa compute.internal {
~~~
~~~
txt
~~~
corefile
32.10.in-addr.arpa.arpa arpa.company.org {
reverse 10.32.0.0/16 {
...
...
plugin/trace/README.md
View file @
2388e36c
# trace
This module enables OpenTracing-based tracing of DNS requests as they go through the
plugin chain.
*trace*
enables OpenTracing-based tracing of DNS requests as they go through the plugin chain.
## Syntax
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment