mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
Merge pull request #265 from erikwilson/kubelet-resolv-conf
Kubelet resolv.conf DNS update
This commit is contained in:
commit
93cc6462be
@ -61,7 +61,7 @@ data:
|
||||
fallthrough in-addr.arpa ip6.arpa
|
||||
}
|
||||
prometheus :9153
|
||||
proxy . 1.1.1.1
|
||||
proxy . /etc/resolv.conf
|
||||
cache 30
|
||||
loop
|
||||
reload
|
||||
|
@ -1,15 +1,18 @@
|
||||
package config
|
||||
|
||||
import (
|
||||
"bufio"
|
||||
"context"
|
||||
"crypto/tls"
|
||||
"encoding/pem"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
sysnet "net"
|
||||
"net/url"
|
||||
"os"
|
||||
"os/exec"
|
||||
"path/filepath"
|
||||
"regexp"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
@ -115,6 +118,49 @@ func writeKubeConfig(envInfo *cmds.Agent, info clientaccess.Info, controlConfig
|
||||
return kubeConfigPath, info.WriteKubeConfig(kubeConfigPath)
|
||||
}
|
||||
|
||||
func isValidResolvConf(resolvConfFile string) bool {
|
||||
file, err := os.Open(resolvConfFile)
|
||||
if err != nil {
|
||||
return false
|
||||
}
|
||||
defer file.Close()
|
||||
|
||||
nameserver := regexp.MustCompile(`^nameserver\s+([^\s]*)`)
|
||||
scanner := bufio.NewScanner(file)
|
||||
for scanner.Scan() {
|
||||
ipMatch := nameserver.FindStringSubmatch(scanner.Text())
|
||||
if len(ipMatch) == 2 {
|
||||
ip := sysnet.ParseIP(ipMatch[1])
|
||||
if ip == nil || !ip.IsGlobalUnicast() {
|
||||
return false
|
||||
}
|
||||
}
|
||||
}
|
||||
if err := scanner.Err(); err != nil {
|
||||
return false
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
||||
func locateOrGenerateResolvConf(envInfo *cmds.Agent) string {
|
||||
if envInfo.ResolvConf != "" {
|
||||
return envInfo.ResolvConf
|
||||
}
|
||||
resolvConfs := []string{"/etc/resolv.conf", "/run/systemd/resolve/resolv.conf"}
|
||||
for _, conf := range resolvConfs {
|
||||
if isValidResolvConf(conf) {
|
||||
return conf
|
||||
}
|
||||
}
|
||||
|
||||
tmpConf := filepath.Join(os.TempDir(), "k3s-resolv.conf")
|
||||
if err := ioutil.WriteFile(tmpConf, []byte("nameserver 8.8.8.8\n"), 0444); err != nil {
|
||||
logrus.Error(err)
|
||||
return ""
|
||||
}
|
||||
return tmpConf
|
||||
}
|
||||
|
||||
func get(envInfo *cmds.Agent) (*config.Node, error) {
|
||||
if envInfo.Debug {
|
||||
logrus.SetLevel(logrus.DebugLevel)
|
||||
@ -170,6 +216,7 @@ func get(envInfo *cmds.Agent) (*config.Node, error) {
|
||||
nodeConfig.AgentConfig.NodeIP = nodeIP
|
||||
nodeConfig.AgentConfig.NodeName = nodeName
|
||||
nodeConfig.AgentConfig.ClusterDNS = controlConfig.ClusterDNS
|
||||
nodeConfig.AgentConfig.ResolvConf = locateOrGenerateResolvConf(envInfo)
|
||||
nodeConfig.AgentConfig.CACertPath = clientCA
|
||||
nodeConfig.AgentConfig.ListenAddress = "127.0.0.1"
|
||||
nodeConfig.AgentConfig.KubeConfig = kubeConfig
|
||||
|
@ -11,6 +11,7 @@ type Agent struct {
|
||||
Token string
|
||||
TokenFile string
|
||||
ServerURL string
|
||||
ResolvConf string
|
||||
DataDir string
|
||||
NodeIP string
|
||||
NodeName string
|
||||
@ -55,6 +56,12 @@ var (
|
||||
Usage: "(agent) Disable embedded containerd and use alternative CRI implementation",
|
||||
Destination: &AgentConfig.ContainerRuntimeEndpoint,
|
||||
}
|
||||
ResolvConfFlag = cli.StringFlag{
|
||||
Name: "resolv-conf",
|
||||
Usage: "Kubelet resolv.conf file",
|
||||
EnvVar: "K3S_RESOLV_CONF",
|
||||
Destination: &AgentConfig.ResolvConf,
|
||||
}
|
||||
)
|
||||
|
||||
func NewAgentCommand(action func(ctx *cli.Context) error) cli.Command {
|
||||
@ -99,6 +106,7 @@ func NewAgentCommand(action func(ctx *cli.Context) error) cli.Command {
|
||||
NodeNameFlag,
|
||||
NodeIPFlag,
|
||||
CRIEndpointFlag,
|
||||
ResolvConfFlag,
|
||||
},
|
||||
}
|
||||
}
|
||||
|
@ -105,6 +105,7 @@ func NewServerCommand(action func(*cli.Context) error) cli.Command {
|
||||
DockerFlag,
|
||||
FlannelFlag,
|
||||
CRIEndpointFlag,
|
||||
ResolvConfFlag,
|
||||
},
|
||||
}
|
||||
}
|
||||
|
@ -76,6 +76,9 @@ func kubelet(cfg *config.Agent) {
|
||||
if len(cfg.ClusterDNS) > 0 {
|
||||
args = append(args, "--cluster-dns", cfg.ClusterDNS.String())
|
||||
}
|
||||
if cfg.ResolvConf != "" {
|
||||
args = append(args, "--resolv-conf", cfg.ResolvConf)
|
||||
}
|
||||
if cfg.RuntimeSocket != "" {
|
||||
args = append(args, "--container-runtime", "remote")
|
||||
args = append(args, "--container-runtime-endpoint", cfg.RuntimeSocket)
|
||||
|
@ -36,6 +36,7 @@ type Agent struct {
|
||||
NodeName string
|
||||
ClusterCIDR net.IPNet
|
||||
ClusterDNS net.IP
|
||||
ResolvConf string
|
||||
RootDir string
|
||||
KubeConfig string
|
||||
NodeIP string
|
||||
|
@ -69,7 +69,7 @@ func (fi bindataFileInfo) Sys() interface{} {
|
||||
return nil
|
||||
}
|
||||
|
||||
var _corednsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\xdd\x6e\x1b\xb7\x12\xbe\xd7\x53\x10\x7b\x90\xbb\xb3\xb2\x04\x23\x39\x3e\xbc\x4b\x24\x37\x35\x90\xb8\x82\x65\xe7\xa6\x28\x82\x11\x77\x24\xb1\xe6\x72\x58\x72\x56\xb1\x9a\xe6\xdd\x0b\xee\x9f\xb9\xf2\x3a\x48\x82\xac\x2e\x44\x72\x38\xdf\x90\xf3\xf3\x0d\xc1\xe9\x0f\xe8\x83\x26\x2b\xc5\x61\x3e\xb9\xd7\xb6\x90\x62\x8d\xfe\xa0\x15\xbe\x56\x8a\x2a\xcb\x93\x12\x19\x0a\x60\x90\x13\x21\x2c\x94\x28\x85\x22\x8f\x85\x0d\xed\x3c\x38\x50\x28\xc5\x7d\xb5\xc1\x3c\x1c\x03\x63\x39\xc9\xf3\x7c\x92\x42\xfb\x0d\xa8\x29\x54\xbc\x27\xaf\xff\x06\xd6\x64\xa7\xf7\x17\x61\xaa\xe9\xec\x30\xdf\x20\x43\x67\x79\x61\xaa\xc0\xe8\x6f\xc8\xe0\xc0\xac\x81\x0d\x9a\x10\x47\xa2\xb6\xe3\x2d\x32\xd6\xfa\x1b\x22\x0e\xec\xc1\x39\x6d\x77\x8d\xa1\xbc\xc0\x2d\x54\x86\x43\x7f\xde\xe6\x54\xb2\x3b\xb6\xaf\x0c\x06\x39\xc9\x05\x38\xfd\xd6\x53\xe5\x6a\xe4\x5c\x64\xd9\x44\x08\x8f\x81\x2a\xaf\xb0\x5d\x43\x5b\x38\xd2\xb6\x06\xcb\x45\x68\x3c\xd3\x4c\x1c\x15\xcd\xa0\x77\x42\x9c\x1e\xd0\x6f\x5a\x5d\xa3\x03\xd7\x83\x4f\xc0\x6a\xff\x6d\xf6\x2c\x15\xa7\x30\x3b\xe4\x9f\xe1\xd0\x37\xda\x16\xda\xee\x06\x7e\x05\x6b\x89\x6b\xf5\xd6\xb9\x63\xb8\x03\x7f\x43\xc5\x54\xb9\x02\x18\xa5\xc8\xd8\x57\x98\xfd\xfc\xf0\x90\xc1\x1b\xdc\xd6\xe7\x6b\x1d\xf6\x95\x0b\x4f\x84\x78\x9a\x3b\xcf\x20\x87\x6a\xf3\x27\x2a\xae\x63\x3f\x9a\xea\x3f\x9c\xe0\x7d\xed\x2c\xc8\x6e\xf5\xee\x3d\xb8\x1f\x29\x9b\x6e\xfb\x82\x3c\x6e\xb5\x41\x29\xfe\xa9\x7d\x3a\x95\x2f\xcf\xc5\xe7\x7a\x18\x3f\xf4\x9e\x7c\xe8\xa7\x7b\x04\xc3\xfb\x7e\xfa\x18\x00\xa1\x1a\x97\x4c\x0d\x29\x30\x42\xdb\x1c\x8a\xc2\x4f\xc1\x3b\x10\xda\xbd\x6a\x06\x8f\xb0\xa2\xce\x68\xa1\x6d\x40\x55\x79\x4c\xd6\x2b\x17\xd8\x23\x94\xc9\xd2\x16\x8c\xe1\xbd\xa7\x6a\xb7\x1f\x07\xee\xf7\x7e\xe9\x47\xce\x53\x89\xbc\xc7\x2a\x08\xf9\xff\xf9\xcb\xf3\x54\xf0\x70\x14\x53\x31\x9f\xd6\xbf\x7e\x5d\x81\xda\xa3\x38\x9f\xf5\x0b\x86\xc8\xf5\x13\x8f\x86\xa0\x48\x64\x50\x6c\xc0\x80\x55\xcd\xd1\xbf\x3c\x09\x12\x3e\x30\xda\x38\x0c\x27\x55\xb2\x44\x67\xe8\x58\xe2\x8f\x91\xdd\x49\xfe\x5f\x84\x1c\x9c\x6b\xb7\x34\x8a\xa7\x55\xd1\x00\x67\x31\xcc\xcb\xeb\x75\x36\x09\x0e\x55\xd4\xfe\x8f\x47\x67\xb4\x82\x20\x45\x74\x42\x2c\x1c\xc6\xdd\xb1\x01\xe6\xa3\x43\x29\x6e\xc8\x18\x6d\x77\x77\x75\x09\x36\x25\x9b\xae\xc8\xd6\x1d\x25\x3c\xdc\x59\x38\x80\x36\xb0\x89\x79\x54\xc3\xa1\x41\xc5\xe4\x9b\x3d\x65\xe4\xa4\x77\xc9\xc1\xc7\x8f\xce\x58\x3a\xd3\x03\xa7\xde\xa9\x7d\x3e\xd0\x7f\xee\xf2\xdd\xf5\xea\xf1\xa0\xe0\xae\x4f\x3c\x5c\xdf\x93\x0c\xfa\x94\x93\xe2\x97\x8b\x7b\x3c\x46\x97\x79\xcd\x5a\x81\x79\x5d\x14\x64\xc3\x6f\xd6\x1c\xb3\x24\x29\xc9\x45\x4d\xf2\x52\x64\x97\x0f\x3a\x70\xe8\x84\x91\x55\xd7\x83\xeb\xc7\x2f\xa6\xc0\x09\xbd\x51\x90\xc2\x68\x5b\x3d\xb4\x9b\x14\x59\x06\x6d\xd1\xf7\x67\xc9\x9f\xa4\x45\xf3\xe9\x12\x76\x8f\xcb\x67\xed\xbf\x9c\x4f\xcf\xa7\xb3\xe1\xa6\x55\x65\xcc\x8a\x8c\x56\x47\x29\xae\xb6\xd7\xc4\x2b\x8f\x01\x6b\xf6\xe9\x12\x3b\x69\x09\x7d\x7a\xeb\x52\xf3\x60\x25\x86\xa3\x24\x7f\x94\x62\xfe\xbf\xd9\x7b\x9d\x48\x3c\xfe\x55\x61\x38\xdd\xad\x5c\x25\xc5\x7c\x36\x2b\x47\x31\x06\x10\xe0\x77\x41\x8a\xdf\x45\x96\x2b\xb2\xdb\xec\xbf\x22\x3b\x43\x56\xdd\xa5\xce\x3a\x7e\xca\xc4\x1f\xbd\xca\x81\x4c\x55\xe2\xfb\x18\xd5\x41\xdc\x3a\x6f\x45\x5a\xcc\x9b\x4d\x89\xfd\x32\xee\x5f\x01\xef\xa5\x48\x2d\x0c\xee\x02\x45\x8c\xb3\x14\xb1\xdb\x3c\x52\x06\xf9\xa1\x9d\x3e\x52\x2b\xf2\x2c\x45\xc2\x2e\x5d\x21\x0f\x71\x9d\x27\x26\x45\x46\x8a\xbb\xe5\xea\x7b\x71\x72\x56\x6e\x14\xeb\x76\xf1\x15\xac\x01\xe7\x75\x68\x25\xb2\xd7\x6a\xfc\x64\x29\x5a\x4d\xca\x9a\x8f\x0b\xb2\x8c\x0f\x9c\x86\x16\x8c\xa1\x4f\x2b\xaf\x0f\xda\xe0\x0e\x2f\x83\x02\x53\xd7\x8f\x8c\x2c\x1d\x52\x77\x2b\x70\xb0\xd1\x46\xb3\xc6\x93\xe4\x80\xa2\x18\x2e\xe4\xe2\xfa\xf2\xf6\xe3\x9b\xab\xeb\xe5\xc7\xf5\xe5\xcd\x87\xab\xc5\xe5\x40\x5c\x78\x72\xa7\x0a\x60\xcc\x48\xe0\x6e\x88\xf8\x17\x6d\xb0\xed\xc5\xc3\x30\x1a\x7d\x40\x8b\x21\xac\x3c\x6d\x30\xc5\xdb\x33\xbb\xb7\xc8\x43\x13\xae\x49\x94\x93\x86\x27\xda\x74\x90\xe2\x62\x76\x31\x1b\x2c\x07\xb5\xc7\xe8\xe4\x5f\x6f\x6f\x57\x89\x40\x5b\xcd\x1a\xcc\x12\x0d\x1c\xd7\xa8\xc8\x16\x41\x8a\x57\xa9\x2a\xeb\x12\xa9\xe2\x5e\xf8\x32\x91\x85\x4a\x29\x0c\xe1\x76\xef\x31\xec\xc9\x14\x0d\xbb\x76\xdf\x16\xb4\xa9\x3c\x26\xd2\x4e\xb7\xb0\xa1\x2b\xfb\x65\xf3\x04\x6a\x05\x4d\x55\x7c\x47\xd5\xa8\xee\x91\x31\x74\xcf\x38\x31\xd5\x17\x66\x2c\xc3\x69\xb8\x6a\x46\xed\x4a\x79\x20\xeb\x3c\xdd\x0b\x9f\x7d\xee\xb4\xef\xa7\x91\xb6\x99\x74\x80\x67\xfb\xe6\x93\xe7\xe7\xe3\x0b\x21\x92\x71\x13\xd4\x2c\x96\x4d\x36\x22\x0e\xca\x83\x7b\xf6\x19\xfa\x0d\x6d\xb8\x7d\x1e\xe5\x6d\x4f\x4a\x90\xbe\xb5\x61\x0f\x5b\xea\x98\xcd\xd6\xc6\xd5\x4a\x8a\x17\x9f\x17\xef\xee\xd6\xb7\x97\x37\x1f\x97\xd7\xeb\x2f\x2f\x26\x09\x89\xe5\x27\x14\xe5\x52\xee\x39\x65\xaa\x7c\x84\x87\x9e\x51\x68\x08\x24\x1f\xa1\x1a\x37\x64\xa4\xa1\xca\xbf\x01\x00\x00\xff\xff\xfd\x32\xb3\x08\x16\x0e\x00\x00")
|
||||
var _corednsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\xdd\x6e\x1b\xb7\x12\xbe\xd7\x53\x10\x7b\x90\xbb\xb3\xb2\x04\x23\x39\x3e\xbc\x4b\x24\x37\x35\x90\xb8\x82\x65\xe7\xa6\x28\x82\x11\x77\x24\xb1\xe6\x72\x58\x72\x56\xb1\x9a\xe6\xdd\x0b\xee\x9f\xb9\xf2\x3a\x48\x82\xec\xcd\x92\x1c\xce\x37\xe4\xfc\x7c\x43\x70\xfa\x03\xfa\xa0\xc9\x4a\x71\x98\x4f\xee\xb5\x2d\xa4\x58\xa3\x3f\x68\x85\xaf\x95\xa2\xca\xf2\xa4\x44\x86\x02\x18\xe4\x44\x08\x0b\x25\x4a\xa1\xc8\x63\x61\x43\x3b\x0f\x0e\x14\x4a\x71\x5f\x6d\x30\x0f\xc7\xc0\x58\x4e\xf2\x3c\x9f\xa4\xd0\x7e\x03\x6a\x0a\x15\xef\xc9\xeb\xbf\x81\x35\xd9\xe9\xfd\x45\x98\x6a\x3a\x3b\xcc\x37\xc8\xd0\x59\x5e\x98\x2a\x30\xfa\x1b\x32\x38\x30\x6b\x60\x83\x26\xc4\x91\xa8\xed\x78\x8b\x8c\xb5\xfe\x86\x88\x03\x7b\x70\x4e\xdb\x5d\x63\x28\x2f\x70\x0b\x95\xe1\xd0\x9f\xb7\x39\x95\xec\x8e\xed\x2b\x83\x41\x4e\x72\x01\x4e\xbf\xf5\x54\xb9\x1a\x39\x17\x59\x36\x11\xc2\x63\xa0\xca\x2b\x6c\xd7\xd0\x16\x8e\xb4\xad\xc1\x72\x11\x1a\xcf\x34\x13\x47\x45\x33\xe8\x9d\x10\xa7\x07\xf4\x9b\x56\xd7\xe8\xc0\xf5\xe0\x13\xb0\xda\x7f\x9b\x3d\x4b\xc5\x29\xcc\x0e\xf9\x67\x38\xf4\x8d\xb6\x85\xb6\xbb\x81\x5f\xc1\x5a\xe2\x5a\xbd\x75\xee\x18\xee\xc0\xdf\x50\x31\x55\xae\x00\x46\x29\x32\xf6\x15\x66\x3f\x3f\x3c\x64\xf0\x06\xb7\xf5\xf9\x5a\x87\x7d\xe5\xc2\x13\x21\x9e\xe6\xce\x33\xc8\xa1\xda\xfc\x89\x8a\xeb\xd8\x8f\xa6\xfa\x0f\x27\x78\x5f\x3b\x0b\xb2\x5b\xbd\x7b\x0f\xee\x47\xca\xa6\xdb\xbe\x20\x8f\x5b\x6d\x50\x8a\x7f\x6a\x9f\x4e\xe5\xcb\x73\xf1\xb9\x1e\xc6\x0f\xbd\x27\x1f\xfa\xe9\x1e\xc1\xf0\xbe\x9f\x3e\x06\x40\xa8\xc6\x25\x53\x43\x0a\x8c\xd0\x36\x87\xa2\xf0\x53\xf0\x0e\x84\x76\xaf\x9a\xc1\x23\xac\xa8\x33\x5a\x68\x1b\x50\x55\x1e\x93\xf5\xca\x05\xf6\x08\x65\xb2\xb4\x05\x63\x78\xef\xa9\xda\xed\xc7\x81\xfb\xbd\x5f\xfa\x91\xf3\x54\x22\xef\xb1\x0a\x42\xfe\x7f\xfe\xf2\x3c\x15\x3c\x1c\xc5\x54\x9c\x21\xab\xb3\x58\x10\xe6\x30\x55\x64\xb7\xfd\x06\x05\x6a\x8f\xe2\x7c\xd6\x2f\x18\x22\xd7\x4f\x3c\x1a\x82\x22\x91\x41\xb1\x01\x03\x56\x35\x77\xf8\xf2\x24\x5a\xf8\xc0\x68\xe3\x30\x9c\x94\xcb\x12\x9d\xa1\x63\x89\x3f\xc6\x7a\x27\x85\x70\x11\x72\x70\xae\xdd\xd2\x28\x9e\x96\x47\x03\x9c\xc5\x78\x2f\xaf\xd7\xd9\x24\x38\x54\x51\xfb\x3f\x1e\x9d\xd1\x0a\x82\x14\xf3\x89\x10\xb1\x82\x18\x77\xc7\x06\x98\x8f\x0e\xa5\xb8\x21\x63\xb4\xdd\xdd\xd5\xb5\xd8\xd4\x6e\xba\x22\x5b\x77\x94\xf0\x70\x67\xe1\x00\xda\xc0\x26\x26\x54\x0d\x87\x06\x15\x93\x6f\xf6\x94\x91\x9c\xde\x25\x07\x1f\x3f\x3a\x63\xe9\x4c\x0f\x9c\x7a\xa7\xf6\xf9\x40\xff\xb9\xcb\x77\xd7\xab\xc7\x83\xca\xbb\x3e\xf1\x70\x7d\x4f\x32\xe8\x53\x72\x8a\x5f\x2e\xee\xf1\x18\x5d\xe6\x35\x6b\x05\xe6\x75\x51\x90\x0d\xbf\x59\x73\xcc\x92\xec\x24\x17\x35\xc9\x4b\x91\x5d\x3e\xe8\xc0\xa1\x13\x46\x7a\x5d\x0f\xae\x1f\xbf\x98\x02\x27\x3c\x47\x41\x0a\xa3\x6d\xf5\xd0\x6e\x52\x64\x19\xb4\x45\xdf\x9f\x25\x7f\x92\x16\xcd\xa7\x4b\xd8\x3d\x2e\x9f\xb5\x7f\x39\x9f\x9e\x4f\x67\xc3\x4d\xab\xca\x98\x15\x19\xad\x8e\x52\x5c\x6d\xaf\x89\x57\x1e\x03\xd6\x34\xd4\x25\x76\xd2\x1b\xfa\xf4\xd6\xa5\xe6\xc1\x4a\x0c\x47\x49\xfe\x28\xc5\xfc\x7f\xb3\xf7\x3a\x91\x78\xfc\xab\xc2\x70\xba\x5b\xb9\x4a\x8a\xf9\x6c\x56\x8e\x62\x0c\x20\xc0\xef\x82\x14\xbf\x8b\x2c\x8f\xf5\x98\xfd\x57\x64\x75\x8d\x76\x97\xeb\x88\x2a\x13\x7f\xf4\x2a\x07\x32\x55\x89\xef\x63\x54\x07\x71\xeb\xbc\x15\xf9\x31\x6f\x36\x25\xf6\xcb\xb8\x7f\x05\xbc\x97\x22\xb5\x30\xb8\x0b\x14\x31\xce\x52\xc4\xb6\xf3\xc8\x1d\xe4\x87\x76\xfa\x48\xad\xc8\xb3\x14\x09\xcd\x74\x85\x3c\xc4\x75\x9e\x98\x14\x19\x29\xee\x96\xab\xef\xc5\xc9\x59\xb9\x51\xac\xdb\xc5\x57\xb0\x06\xe4\xd7\xa1\x95\xc8\x5e\xab\xf1\x93\xa5\x68\x35\x3b\x6b\x3e\x2e\xc8\x32\x3e\x70\x1a\x5a\x30\x86\x3e\xad\xbc\x3e\x68\x83\x3b\xbc\x0c\x0a\x4c\x5d\x3f\x32\xd2\x75\x48\xdd\xad\xc0\xc1\x46\x1b\xcd\x1a\x4f\x92\x03\x8a\x62\xb8\x90\x8b\xeb\xcb\xdb\x8f\x6f\xae\xae\x97\x1f\xd7\x97\x37\x1f\xae\x16\x97\x03\x71\xe1\xc9\x9d\x2a\x80\x31\x23\x81\xbb\x21\xe2\x5f\xb4\xc1\xb6\x29\x0f\xc3\x68\xf4\x01\x2d\x86\xb0\xf2\xb4\xc1\x14\x6f\xcf\xec\xde\x22\x0f\x4d\xb8\x26\x51\x4e\x3a\x9f\x68\xd3\x41\x8a\x8b\xd9\xc5\x6c\xb0\x1c\xd4\x1e\xa3\x93\x7f\xbd\xbd\x5d\x25\x02\x6d\x35\x6b\x30\x4b\x34\x70\x5c\xa3\x22\x5b\x04\x29\x5e\xa5\xaa\xac\x4b\xa4\x8a\x7b\xe1\xcb\x44\x16\x2a\xa5\x30\x84\xdb\xbd\xc7\xb0\x27\x53\x34\xec\xda\x7d\x5b\xd0\xa6\xf2\x98\x48\x3b\xdd\xc2\x86\xae\xec\x97\xcd\x5b\xa8\x15\x34\x55\xf1\x1d\x55\xa3\xba\xd7\xc6\xd0\x3d\xe3\xc4\x54\x5f\x98\xb1\x0c\xa7\xe1\xaa\x19\xb5\x2b\xe5\x81\xac\xf3\x74\x2f\x7c\xf6\xdd\xd3\x3e\xa4\x46\xda\x66\xd2\x01\x9e\xed\x9b\x4f\xde\xa1\x8f\x4f\x85\x48\xc6\x4d\x50\xb3\x58\x36\xd9\x88\x38\x28\x0f\xee\xd9\xf7\xe8\x37\xb4\xe1\xf6\x9d\x94\xb7\x3d\x29\x41\xfa\xd6\x86\x3d\x6c\xa9\x63\x36\x5b\x1b\x57\x2b\x29\x5e\x7c\x5e\xbc\xbb\x5b\xdf\x5e\xde\x7c\x5c\x5e\xaf\xbf\xbc\x98\x24\x24\x96\x9f\x50\x94\x4b\xb9\xe7\x94\xa9\xf2\x11\x1e\x7a\x46\xa1\x21\x90\x7c\x84\x6a\xdc\x90\x91\x86\x2a\xff\x06\x00\x00\xff\xff\xb5\xed\x36\x67\x1f\x0e\x00\x00")
|
||||
|
||||
func corednsYamlBytes() ([]byte, error) {
|
||||
return bindataRead(
|
||||
|
Loading…
Reference in New Issue
Block a user