package dns

import "k8s.io/kubernetes/test/images/agnhost/dns"

Index

Variables

var CmdDNSServerList = &cobra.Command{
	Use:   "dns-server-list",
	Short: "Prints the host's DNS Server list",
	Long:  `Prints the DNS Server list of this host.`,
	Args:  cobra.MaximumNArgs(0),
	Run:   printDNSServerList,
}

CmdDNSServerList is used by agnhost Cobra.

var CmdDNSSuffix = &cobra.Command{
	Use:   "dns-suffix",
	Short: "Prints the host's DNS suffix list",
	Long:  `Prints the DNS suffixes of this host.`,
	Args:  cobra.MaximumNArgs(0),
	Run:   printDNSSuffixList,
}

CmdDNSSuffix is used by agnhost Cobra.

var CmdEtcHosts = &cobra.Command{
	Use:   "etc-hosts",
	Short: "Prints the host's /etc/hosts file",
	Long:  `Prints the "hosts" file of this host."`,
	Args:  cobra.MaximumNArgs(0),
	Run:   printHostsFile,
}

CmdEtcHosts is used by agnhost Cobra.

Functions

func GetDNSSuffixList

func GetDNSSuffixList() []string

GetDNSSuffixList reads DNS config file and returns the list of configured DNS suffixes

Source Files

common.go dns.go

Version
v1.33.2 (latest)
Published
Jun 17, 2025
Platform
linux/amd64
Imports
4 packages
Last checked
1 hour ago

Tools for package owners.