()
| 5 | ) |
| 6 | |
| 7 | func 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 | } |
no test coverage detected