Commit 98651289 authored by Brad Beam's avatar Brad Beam Committed by Miek Gieben

Consolidating const declarations (#1287)

parent 0e8ceea1
......@@ -71,6 +71,12 @@ const (
podModeInsecure = "insecure"
// DNSSchemaVersion is the schema version: https://github.com/kubernetes/dns/blob/master/docs/specification.md
DNSSchemaVersion = "1.0.1"
// Svc is the DNS schema for kubernetes services
Svc = "svc"
// Pod is the DNS schema for kubernetes pods
Pod = "pod"
// defaultTTL to apply to all answers.
defaultTTL = 5
)
var (
......@@ -461,12 +467,3 @@ func match(a, b string) bool {
func wildcard(s string) bool {
return s == "*" || s == "any"
}
const (
// Svc is the DNS schema for kubernetes services
Svc = "svc"
// Pod is the DNS schema for kubernetes pods
Pod = "pod"
// defaultTTL to apply to all answers.
defaultTTL = 5
)
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