MCPcopy Index your code
hub / github.com/linuxkit/linuxkit / pushCmd

Function pushCmd

src/cmd/linuxkit/push.go:7–25  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

5)
6
7func pushCmd() *cobra.Command {
8
9 cmd := &cobra.Command{
10 Use: "push",
11 Short: "push a VM image to a cloud provider",
12 Long: `Push a VM image to a cloud provider.`,
13 }
14
15 // Please keep cases in alphabetical order
16 cmd.AddCommand(pushAWSCmd())
17 cmd.AddCommand(pushAzureCmd())
18 cmd.AddCommand(pushGCPCmd())
19 cmd.AddCommand(pushOpenstackCmd())
20 cmd.AddCommand(pushEquinixMetalCmd())
21 cmd.AddCommand(pushScalewayCmd())
22 cmd.AddCommand(pushVCenterCmd())
23
24 return cmd
25}

Callers 1

newCmdFunction · 0.85

Calls 7

pushAWSCmdFunction · 0.85
pushAzureCmdFunction · 0.85
pushGCPCmdFunction · 0.85
pushOpenstackCmdFunction · 0.85
pushEquinixMetalCmdFunction · 0.85
pushScalewayCmdFunction · 0.85
pushVCenterCmdFunction · 0.85

Tested by

no test coverage detected