()
| 105 | } |
| 106 | |
| 107 | func ClientExec() (*PodExec, error) { |
| 108 | podName, err := GetClientPodNameInWorker() |
| 109 | if err != nil { |
| 110 | return nil, err |
| 111 | } |
| 112 | |
| 113 | return NewPodExec(DragonflyNamespace, podName, "client"), nil |
| 114 | } |
| 115 | |
| 116 | func SeedClientExec(n int) (*PodExec, error) { |
| 117 | podName, err := GetSeedClientPodName(n) |
no test coverage detected