32 lines
710 B
Go
32 lines
710 B
Go
|
// +build !consulent
|
||
|
|
||
|
package agent
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/hashicorp/consul/agent/config"
|
||
|
"github.com/hashicorp/consul/agent/structs"
|
||
|
)
|
||
|
|
||
|
type enterpriseDNSConfig struct{}
|
||
|
|
||
|
func getEnterpriseDNSConfig(conf *config.RuntimeConfig) enterpriseDNSConfig {
|
||
|
return enterpriseDNSConfig{}
|
||
|
}
|
||
|
|
||
|
func (d *DNSServer) parseDatacenterAndEnterpriseMeta(labels []string, _ *dnsConfig, datacenter *string, _ *structs.EnterpriseMeta) bool {
|
||
|
switch len(labels) {
|
||
|
case 1:
|
||
|
*datacenter = labels[0]
|
||
|
return true
|
||
|
case 0:
|
||
|
return true
|
||
|
}
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func serviceCanonicalDNSName(name, datacenter, domain string, _ *structs.EnterpriseMeta) string {
|
||
|
return fmt.Sprintf("%s.service.%s.%s", name, datacenter, domain)
|
||
|
}
|