Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NodeAddress (0.4 sec)

  1. pkg/printers/internalversion/printers_test.go

    	}{
    		{
    			node: api.Node{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo1"},
    				Status: api.NodeStatus{
    					NodeInfo:  api.NodeSystemInfo{OSImage: "fake-os-image"},
    					Addresses: []api.NodeAddress{{Type: api.NodeExternalIP, Address: "1.1.1.1"}},
    				},
    			},
    			// Columns: Name, Status, Roles, Age, KubeletVersion, NodeInternalIP, NodeExternalIP, OSImage, KernelVersion, ContainerRuntimeVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    					Conditions: []v1.NodeCondition{
    						{
    							Type:    v1.NodeReady,
    							Status:  v1.ConditionTrue,
    							Reason:  "Ready",
    							Message: "Node ready",
    						},
    					},
    					Addresses: []v1.NodeAddress{
    						{
    							Type:    v1.NodeInternalIP,
    							Address: testKubeletHostIP,
    						},
    						{
    							Type:    v1.NodeInternalIP,
    							Address: testKubeletHostIPv6,
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	// pods.
    	mirrorPodClient kubepod.MirrorClient
    
    	rootDirectory    string
    	podLogsDirectory string
    
    	lastObservedNodeAddressesMux sync.RWMutex
    	lastObservedNodeAddresses    []v1.NodeAddress
    
    	// onRepeatedHeartbeatFailure is called when a heartbeat operation fails more than once. optional.
    	onRepeatedHeartbeatFailure func()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top