Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for oldPodStatus (0.35 sec)

  1. pkg/util/pod/pod.go

    func PatchPodStatus(ctx context.Context, c clientset.Interface, namespace, name string, uid types.UID, oldPodStatus, newPodStatus v1.PodStatus) (*v1.Pod, []byte, bool, error) {
    	patchBytes, unchanged, err := preparePatchBytesForPodStatus(namespace, name, uid, oldPodStatus, newPodStatus)
    	if err != nil {
    		return nil, nil, false, err
    	}
    	if unchanged {
    		return nil, patchBytes, true, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 15:22:29 UTC 2022
    - 3K bytes
    - Viewed (0)
Back to top