You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Skip prompts in ssh connect proxy mode and ssh server command (#3634)
## Changes
- Skip prompts in ssh connect proxy mode and ssh server command
- Add profile option to the ProxyCommand when spawning ssh client from
`databricks ssh connect` (and the setup logic already adds it to the
config).
- Skip loading bundles in ssh server command, so the bundle doesn't
override the auth that's setup by the job logic that executes this
command (or worse, the server can fail to start if the bundle happens to
be incorrect)
## Tests
Only manual
Copy file name to clipboardExpand all lines: experimental/ssh/cmd/setup.go
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,13 @@ an SSH host configuration to your SSH config file.
34
34
cmd.Flags().StringVar(&sshConfigPath, "ssh-config", "", "Path to SSH config file (default ~/.ssh/config)")
35
35
cmd.Flags().DurationVar(&shutdownDelay, "shutdown-delay", defaultShutdownDelay, "SSH server will terminate after this delay if there are no active connections")
0 commit comments