func getPodNames()

in pkg/controller/controller/dledger_controller.go [388:394]


func getPodNames(pods []corev1.Pod) []string {
	var podNames []string
	for _, pod := range pods {
		podNames = append(podNames, pod.Name)
	}
	return podNames
}