Skip to content

Commit

Permalink
updates for inlets 3.0 (#22)
Browse files Browse the repository at this point in the history
Signed-off-by: Nandor Kracser <[email protected]>
  • Loading branch information
bonifaido authored Mar 3, 2021
1 parent 64875ca commit 502b496
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kurun.go
Original file line number Diff line number Diff line change
Expand Up @@ -396,14 +396,14 @@ var portForwardCmd = &cobra.Command{
return err
}

fmt.Println("Waiting for kubeclt port-forward to build up the connection")
fmt.Println("Waiting for kubectl port-forward to build up the connection")
time.Sleep(2 * time.Second)

/////

upstream := args[0]

inletsCommand := exec.Command("inlets", "client", "--upstream", upstream, "--remote", "127.0.0.1:"+fmt.Sprint(localPort), "--token", token)
inletsCommand := exec.Command("inlets", "client", "--insecure", "--upstream", upstream, "--url", "ws://127.0.0.1:"+fmt.Sprint(localPort), "--token", token)
inletsCommand.Stderr = os.Stderr
inletsCommand.Stdout = os.Stdout

Expand Down

0 comments on commit 502b496

Please sign in to comment.