| 40 | } |
| 41 | |
| 42 | type realUpdatePlan struct { |
| 43 | its workloads.InstanceSet |
| 44 | pods []corev1.Pod |
| 45 | dag *graph.DAG |
| 46 | podsToBeUpdated []*corev1.Pod |
| 47 | isPodUpdated func(*workloads.InstanceSet, *corev1.Pod) (bool, error) |
| 48 | } |
| 49 | |
| 50 | var _ updatePlan = &realUpdatePlan{} |
| 51 |
nothing calls this directly
no outgoing calls
no test coverage detected