Commit 50d888f3 authored by Miek Gieben's avatar Miek Gieben Committed by GitHub

plugin/header: run go gen and small doc updates (#4754)

* plugin/header: run go gen and small doc updates

Run go gen to enable the new plugin, this should fix the CI failures.
Small tweaks to the docs.
Signed-off-by: default avatarMiek Gieben <miek@miek.nl>

* another typo
Signed-off-by: default avatarMiek Gieben <miek@miek.nl>

* gofmt
Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
parent 00128bda
...@@ -36,6 +36,7 @@ var Directives = []string{ ...@@ -36,6 +36,7 @@ var Directives = []string{
"loadbalance", "loadbalance",
"cache", "cache",
"rewrite", "rewrite",
"header",
"dnssec", "dnssec",
"autopath", "autopath",
"minimal", "minimal",
......
...@@ -27,6 +27,7 @@ import ( ...@@ -27,6 +27,7 @@ import (
_ "github.com/coredns/coredns/plugin/forward" _ "github.com/coredns/coredns/plugin/forward"
_ "github.com/coredns/coredns/plugin/geoip" _ "github.com/coredns/coredns/plugin/geoip"
_ "github.com/coredns/coredns/plugin/grpc" _ "github.com/coredns/coredns/plugin/grpc"
_ "github.com/coredns/coredns/plugin/header"
_ "github.com/coredns/coredns/plugin/health" _ "github.com/coredns/coredns/plugin/health"
_ "github.com/coredns/coredns/plugin/hosts" _ "github.com/coredns/coredns/plugin/hosts"
_ "github.com/coredns/coredns/plugin/k8s_external" _ "github.com/coredns/coredns/plugin/k8s_external"
......
package chaos package chaos
// Owners are all GitHub handlers of all maintainers. // Owners are all GitHub handlers of all maintainers.
var Owners = []string{"bradbeam", "chrisohaver", "darshanime", "dilyevsky", "ekleiner", "fastest963", "greenpau", "ihac", "inigohu", "isolus", "johnbelamaric", "miekg", "nchrisdk", "nitisht", "pmoroney", "rajansandeep", "rdrozhdzh", "rtreffer", "stp-ip", "superq", "varyoo", "ykhr53", "yongtang", "zouyee"} var Owners = []string{"bradbeam", "chrisohaver", "darshanime", "dilyevsky", "ekleiner", "fastest963", "greenpau", "ihac", "inigohu", "isolus", "johnbelamaric", "miekg", "mqasimsarfraz", "nchrisdk", "nitisht", "pmoroney", "rajansandeep", "rdrozhdzh", "rtreffer", "snebel29", "stp-ip", "superq", "varyoo", "ykhr53", "yongtang", "zouyee"}
...@@ -2,11 +2,11 @@ ...@@ -2,11 +2,11 @@
## Name ## Name
*header* - modifies the header for all the responses. *header* - modifies the header for responses.
## Description ## Description
It ensures that the flags are in the desired state for all the responses. The modifications are made transparently for *header* ensures that the flags are in the desired state for responses. The modifications are made transparently for
the client. the client.
## Syntax ## Syntax
...@@ -18,12 +18,12 @@ header { ...@@ -18,12 +18,12 @@ header {
} }
~~~ ~~~
* **ACTION** defines the state for dns flags. Actions are evaluated in the order they are defined so last one has the * **ACTION** defines the state for DNS message header flags. Actions are evaluated in the order they are defined so last one has the
most precedence. Allowed values are: most precedence. Allowed values are:
* `set` * `set`
* `clear` * `clear`
* **FLAGS** are the dns flags that will be modified. Current supported flags include: * **FLAGS** are the DNS header flags that will be modified. Current supported flags include:
* `aa` - Authoritative * `aa` - Authoritative(Answer)
* `ra` - RecursionAvailable * `ra` - RecursionAvailable
* `rd` - RecursionDesired * `rd` - RecursionDesired
...@@ -39,13 +39,12 @@ Make sure recursive available `ra` flag is set in all the responses: ...@@ -39,13 +39,12 @@ Make sure recursive available `ra` flag is set in all the responses:
} }
~~~ ~~~
Make sure recursive available `ra` and authoritative `aa` flags are set and recursive desired is cleared in all the Make sure "recursion available" `ra` and "authoritative answer" `aa` flags are set and "recursion desired" is cleared in all responses:
responses:
~~~ corefile ~~~ corefile
. { . {
header { header {
set ra aa set ra aa
clear rd clear rd
} }
} }
......
...@@ -3,9 +3,9 @@ package header ...@@ -3,9 +3,9 @@ package header
import ( import (
"fmt" "fmt"
"github.com/coredns/caddy"
"github.com/coredns/coredns/core/dnsserver" "github.com/coredns/coredns/core/dnsserver"
"github.com/coredns/coredns/plugin" "github.com/coredns/coredns/plugin"
"github.com/coredns/caddy"
) )
func init() { plugin.Register("header", setup) } func init() { plugin.Register("header", setup) }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment