func()

in pkg/model/cluster.go [110:115]


func (c *Cluster) GetPod(namespace string, name string) (*Pod, bool) {
	c.mu.Lock()
	pod, ok := c.pods[objectKey{namespace: namespace, name: name}]
	c.mu.Unlock()
	return pod, ok
}