plugins: remove upstream [ADDRESS] from docs (#2772)

Various plugins still had this documented, the setup functions still
allow it (which is fine), but update the docs that this arguments isn't
there any more.

Signed-off-by: Miek Gieben <miek@miek.nl>
This commit is contained in:
Miek Gieben
2019-04-08 16:45:29 +01:00
committed by GitHub
parent be8b29cd4d
commit be1ac9fed4
4 changed files with 13 additions and 26 deletions

View File

@@ -23,8 +23,9 @@ federation [ZONES...] {
* Each **NAME** and **DOMAIN** defines federation membership. One entry for each. A duplicate
**NAME** will silently overwrite any previous value.
* `upstream` [**ADDRESS**...] resolve the `CNAME` target produced by this plugin. CoreDNS
will resolve External Services against itself.
* `upstream` resolve the `CNAME` target produced by this plugin. CoreDNS
will resolve External Services against itself and needs the *forward* plugin to be active to do
so.
## Examples
@@ -38,18 +39,6 @@ Here we handle all service requests in the `prod` and `stage` federations.
staging staging.feddomain.com
upstream
}
}
~~~
Or slightly shorter:
~~~
cluster.local {
kubernetes
federation {
prod prod.feddomain.com
staging staging.feddomain.com
upstream
}
forward . 192.168.1.12
}
~~~