mirror of
https://github.com/notherealmarco/coredns-deployment.git
synced 2025-05-05 20:42:33 +02:00
clean up docs (#166)
This commit is contained in:
parent
910ada176e
commit
f1dac88b86
3 changed files with 83 additions and 45 deletions
|
@ -36,10 +36,13 @@ func (n *Notice) ToString() string {
|
|||
}
|
||||
|
||||
const (
|
||||
deprecated = "deprecated" // plugin/option is deprecated in CoreDNS
|
||||
ignored = "ignored" // plugin/option is ignored by CoreDNS
|
||||
removed = "removed" // plugin/option has been removed from CoreDNS
|
||||
unsupported = "unsupported" // plugin/option is not supported by the migration tool
|
||||
newdefault = "newdefault" // plugin/option was added to the default corefile
|
||||
all = "all" // all plugin/option that are deprecated, ignored, removed and new defaults.
|
||||
// The following statuses are used to indicate the state of support/deprecation in a given release.
|
||||
deprecated = "deprecated" // deprecated, but still completely functional
|
||||
ignored = "ignored" // if included in the corefile, it will be ignored by CoreDNS
|
||||
removed = "removed" // completely removed from CoreDNS, and would cause CoreDNS to exit if present in the Corefile
|
||||
newdefault = "newdefault" // added to the default corefile. CoreDNS may not function properly if it is not present in the corefile.
|
||||
unsupported = "unsupported" // the plugin/option is not supported by the migration tool
|
||||
|
||||
// The following statuses are used for selecting/filtering notifications
|
||||
all = "all" // show all statuses
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue