Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for convertStatusToAPIStatus (0.31 sec)

  1. pkg/kubelet/kubelet_pods.go

    			ips = append(ips, ip)
    			break
    		}
    	}
    	return ips
    }
    
    // convertStatusToAPIStatus initialize an api PodStatus for the given pod from
    // the given internal pod status and the previous state of the pod from the API.
    // It is purely transformative and does not alter the kubelet state at all.
    func (kl *Kubelet) convertStatusToAPIStatus(pod *v1.Pod, podStatus *kubecontainer.PodStatus, oldPodStatus v1.PodStatus) *v1.PodStatus {
    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_test.go

    }
    
    // Test generateAPIPodStatus with different reason cache and old api pod status.
    func TestGenerateAPIPodStatusWithReasonCache(t *testing.T) {
    	// The following waiting reason and message  are generated in convertStatusToAPIStatus()
    	testTimestamp := time.Unix(123456789, 987654321)
    	testErrorReason := fmt.Errorf("test-error")
    	emptyContainerID := (&kubecontainer.ContainerID{}).String()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top