PodRenamed checks if the operator pod was renamed
(operatorPod corev1.Pod, expectedOperatorPodName string)
| 261 | |
| 262 | // PodRenamed checks if the operator pod was renamed |
| 263 | func PodRenamed(operatorPod corev1.Pod, expectedOperatorPodName string) bool { |
| 264 | return operatorPod.GetName() != expectedOperatorPodName |
| 265 | } |
| 266 | |
| 267 | // PodRestarted checks if the operator pod was restarted |
| 268 | func PodRestarted(operatorPod corev1.Pod) bool { |