ExecBuffered starts a new exec request, waits for it to finish and returns the stdout and stderr to the caller
(ctx context.Context, pod *k8sv1.Pod, container string, command []string, input io.Reader)
| 64 | |
| 65 | // ExecBuffered starts a new exec request, waits for it to finish and returns the stdout and stderr to the caller |
| 66 | ExecBuffered(ctx context.Context, pod *k8sv1.Pod, container string, command []string, input io.Reader) ([]byte, []byte, error) |
| 67 | |
| 68 | // ExecBufferedCombined starts a new exec request, waits for it to finish and returns the output to the caller |
| 69 | ExecBufferedCombined(ctx context.Context, pod *k8sv1.Pod, container string, command []string, input io.Reader) ([]byte, error) |
no outgoing calls
no test coverage detected