mirror of
https://github.com/coder/coder.git
synced 2025-07-12 00:14:10 +00:00
This enables a "kubernetes_pod" to attach multiple agents that could be for multiple services. Each agent is required to have a unique name, so SSH syntax is: `coder ssh <workspace>.<agent>` A resource can have zero agents too, they aren't required.
15 lines
208 B
Go
15 lines
208 B
Go
package cli
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func workspaceShow() *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "show",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
return nil
|
|
},
|
|
}
|
|
}
|