Skip to content

Commit

Permalink
Merge pull request #4354 from afbjorklund/kubectl-stdin
Browse files Browse the repository at this point in the history
Pass minikube stdin to the kubectl command
  • Loading branch information
tstromberg authored May 29, 2019
2 parents dbc64c0 + e809cbd commit 2875909
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cmd/minikube/cmd/kubectl.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ var kubectlCmd = &cobra.Command{

glog.Infof("Running %s %v", path, args)
c := exec.Command(path, args...)
c.Stdin = os.Stdin
c.Stdout = os.Stdout
c.Stderr = os.Stderr
if err := c.Run(); err != nil {
Expand Down

0 comments on commit 2875909

Please sign in to comment.