diff --git a/cli/cmd/commands/helm.go b/cli/cmd/commands/helm.go index e54c942a12..e69b7413ec 100644 --- a/cli/cmd/commands/helm.go +++ b/cli/cmd/commands/helm.go @@ -46,6 +46,7 @@ func runHelm(ctx context.Context, _ *types.GetAuthenticatedUserResponse, client execCommand := exec.Command("helm", args...) + execCommand.Stdin = os.Stdin execCommand.Stdout = os.Stdout execCommand.Stderr = os.Stderr diff --git a/cli/cmd/commands/kubectl.go b/cli/cmd/commands/kubectl.go index f14a79d731..79ce04ac9f 100644 --- a/cli/cmd/commands/kubectl.go +++ b/cli/cmd/commands/kubectl.go @@ -64,6 +64,7 @@ func runKubectl(ctx context.Context, _ *types.GetAuthenticatedUserResponse, clie execCommand := exec.Command("kubectl", args...) + execCommand.Stdin = os.Stdin execCommand.Stdout = os.Stdout execCommand.Stderr = os.Stderr