ExecStream executes a command and streams the output to the given streams
(ctx context.Context, options *ExecStreamOptions)
| 141 | |
| 142 | // ExecStream executes a command and streams the output to the given streams |
| 143 | func (client *client) ExecStream(ctx context.Context, options *ExecStreamOptions) error { |
| 144 | return client.execStreamWithTransport(ctx, options) |
| 145 | } |
| 146 | |
| 147 | // ExecBuffered executes a command for kubernetes and returns the output and error buffers |
| 148 | func (client *client) ExecBuffered(ctx context.Context, pod *corev1.Pod, container string, command []string, stdin io.Reader) ([]byte, []byte, error) { |
no test coverage detected