Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LocalGet (0.34 sec)

  1. pkg/kubelet/kubelet_pods_test.go

    127.0.0.1	localhost
    ::1	localhost ip6-localhost ip6-loopback
    fe00::0	ip6-localnet
    fe00::0	ip6-mcastprefix
    fe00::1	ip6-allnodes
    fe00::2	ip6-allrouters
    123.45.67.89	some.domain
    `,
    			expectedHostsFileContent: `# Kubernetes-managed hosts file (host network).
    # hosts file for testing.
    127.0.0.1	localhost
    ::1	localhost ip6-localhost ip6-loopback
    fe00::0	ip6-localnet
    fe00::0	ip6-mcastprefix
    fe00::1	ip6-allnodes
    fe00::2	ip6-allrouters
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    	buffer.WriteString("127.0.0.1\tlocalhost\n")                      // ipv4 localhost
    	buffer.WriteString("::1\tlocalhost ip6-localhost ip6-loopback\n") // ipv6 localhost
    	buffer.WriteString("fe00::0\tip6-localnet\n")
    	buffer.WriteString("fe00::0\tip6-mcastprefix\n")
    	buffer.WriteString("fe00::1\tip6-allnodes\n")
    	buffer.WriteString("fe00::2\tip6-allrouters\n")
    	if len(hostDomainName) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top