Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for truncatePodHostnameIfNeeded (0.48 sec)

  1. pkg/kubelet/kubelet_pods.go

    		buffer.WriteString(fmt.Sprintf("%s\t%s\n", hostAlias.IP, strings.Join(hostAlias.Hostnames, "\t")))
    	}
    	return buffer.Bytes()
    }
    
    // truncatePodHostnameIfNeeded truncates the pod hostname if it's longer than 63 chars.
    func truncatePodHostnameIfNeeded(podName, hostname string) (string, error) {
    	// Cap hostname at 63 chars (specification is 64bytes which is 63 chars and the null terminating char).
    	const hostnameMaxLen = 63
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    			output: "1234567.1234567.1234567.1234567.1234567.1234567.1234567.123456",          //8*8-2=62 chars
    		},
    	} {
    		t.Logf("TestCase: %q", c)
    		output, err := truncatePodHostnameIfNeeded("test-pod", test.input)
    		assert.NoError(t, err)
    		assert.Equal(t, test.output, output)
    	}
    }
    
    func TestGenerateAPIPodStatusHostNetworkPodIPs(t *testing.T) {
    	testcases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top