type ExecOptions …
func ExecWithOptions(f *framework.Framework, options ExecOptions) (string, string, error) { … }
func ExecWithOptionsContext(ctx context.Context, f *framework.Framework, options ExecOptions) (string, string, error) { … }
func ExecCommandInContainerWithFullOutput(f *framework.Framework, podName, containerName string, cmd ...string) (string, string, error) { … }
func ExecCommandInContainer(f *framework.Framework, podName, containerName string, cmd ...string) string { … }
func ExecShellInContainer(f *framework.Framework, podName, containerName string, cmd string) string { … }
func execCommandInPod(ctx context.Context, f *framework.Framework, podName string, cmd ...string) string { … }
func execCommandInPodWithFullOutput(ctx context.Context, f *framework.Framework, podName string, cmd ...string) (string, string, error) { … }
func ExecShellInPod(ctx context.Context, f *framework.Framework, podName string, cmd string) string { … }
func ExecShellInPodWithFullOutput(ctx context.Context, f *framework.Framework, podName string, cmd string) (string, string, error) { … }
func execute(ctx context.Context, method string, url *url.URL, config *restclient.Config, stdin io.Reader, stdout, stderr io.Writer, tty bool) error { … }