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
experimental/ssh: drop [EXPERIMENTAL] tag and clean up help copy (#5342)
## Summary
- Replace verbose disclaimer with lightweight tag, then drop
[EXPERIMENTAL] entirely
- Hide env-version flag, fix alignment in help text
- Replace tabs with spaces, update `<connection>` to `<name>` in
examples
Supersedes #5325 and #5326 (fork PRs that couldn't run CI).
## Test plan
- [ ] Verify `databricks ssh --help`, `databricks ssh connect --help`,
`databricks ssh setup --help` output
- [ ] CI passes (including `test-exp-ssh`)
cmd.Flags().DurationVar(&shutdownDelay, "shutdown-delay", defaultShutdownDelay, "Delay before shutting down the server after the last client disconnects")
43
45
cmd.Flags().IntVar(&maxClients, "max-clients", defaultMaxClients, "Maximum number of SSH clients")
44
46
cmd.Flags().BoolVar(&autoStartCluster, "auto-start-cluster", true, "Automatically start the cluster if it is not running")
45
47
46
-
cmd.Flags().StringVar(&connectionName, "name", "", "Connection name (for serverless compute)")
47
-
cmd.Flags().MarkHidden("name")
48
-
cmd.Flags().StringVar(&accelerator, "accelerator", "", "GPU accelerator type (GPU_1xA10 or GPU_8xH100)")
49
-
cmd.Flags().MarkHidden("accelerator")
48
+
cmd.Flags().StringVar(&connectionName, "name", "", "Connection name to reuse across sessions (serverless only)")
49
+
cmd.Flags().StringVar(&accelerator, "accelerator", "", "Serverless GPU accelerator type (GPU_1xA10 or GPU_8xH100)")
50
50
cmd.Flags().StringVar(&ide, "ide", "", "Open remote IDE window (vscode or cursor)")
@@ -69,7 +68,7 @@ the SSH server and handling the connection proxy.
69
68
cmd.Flags().BoolVar(&skipSettingsCheck, "skip-settings-check", false, "Skip checking and updating IDE settings")
70
69
cmd.Flags().MarkHidden("skip-settings-check")
71
70
72
-
cmd.Flags().IntVar(&environmentVersion, "environment-version", defaultEnvironmentVersion, "Environment version for serverless compute")
71
+
cmd.Flags().IntVar(&environmentVersion, "environment-version", defaultEnvironmentVersion, "Environment version for AI Runtime")
73
72
cmd.Flags().MarkHidden("environment-version")
74
73
75
74
cmd.Flags().BoolVar(&autoApprove, "auto-approve", false, "Skip confirmation prompts, installing IDE extensions and applying IDE settings without asking")
0 commit comments