MCPcopy Create free account
hub / github.com/rilldata/rill / DeploymentCmd

Function DeploymentCmd

cli/cmd/project/deployment/deployment.go:8–21  ·  view source on GitHub ↗
(ch *cmdutil.Helper)

Source from the content-addressed store, hash-verified

6)
7
8func DeploymentCmd(ch *cmdutil.Helper) *cobra.Command {
9 deploymentCmd := &cobra.Command{
10 Use: "deployment",
11 Short: "Manage project deployments",
12 }
13
14 deploymentCmd.AddCommand(ListCmd(ch))
15 deploymentCmd.AddCommand(ShowCmd(ch))
16 deploymentCmd.AddCommand(CreateCmd(ch))
17 deploymentCmd.AddCommand(DeleteCmd(ch))
18 deploymentCmd.AddCommand(StartCmd(ch))
19 deploymentCmd.AddCommand(StopCmd(ch))
20 return deploymentCmd
21}

Callers 1

ProjectCmdFunction · 0.92

Calls 6

StopCmdFunction · 0.85
ListCmdFunction · 0.70
ShowCmdFunction · 0.70
CreateCmdFunction · 0.70
DeleteCmdFunction · 0.70
StartCmdFunction · 0.70

Tested by

no test coverage detected