Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GetPodFullName (0.13 sec)

  1. pkg/kubelet/container/runtime.go

    	}
    	return &pod
    }
    
    // IsEmpty returns true if the pod is empty.
    func (p *Pod) IsEmpty() bool {
    	return reflect.DeepEqual(p, &Pod{})
    }
    
    // GetPodFullName returns a name that uniquely identifies a pod.
    func GetPodFullName(pod *v1.Pod) string {
    	// Use underscore as the delimiter because it is not allowed in pod name
    	// (DNS subdomain format), while allowed in the container name format.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top