csi: subcommand for volume snapshot (#12152)

This commit is contained in:
Tim Gross
2022-03-01 13:30:30 -05:00
committed by GitHub
parent 907c795874
commit 9cf99ce5ec
2 changed files with 50 additions and 0 deletions

View File

@@ -854,6 +854,11 @@ func Commands(metaPtr *Meta, agentUi cli.Ui) map[string]cli.CommandFactory {
Meta: meta,
}, nil
},
"volume snapshot": func() (cli.Command, error) {
return &VolumeSnapshotCommand{
Meta: meta,
}, nil
},
"volume snapshot create": func() (cli.Command, error) {
return &VolumeSnapshotCreateCommand{
Meta: meta,

View File

@@ -0,0 +1,45 @@
package command
import (
"strings"
"github.com/mitchellh/cli"
)
type VolumeSnapshotCommand struct {
Meta
}
func (f *VolumeSnapshotCommand) Name() string { return "snapshot" }
func (f *VolumeSnapshotCommand) Run(args []string) int {
return cli.RunResultHelp
}
func (f *VolumeSnapshotCommand) Synopsis() string {
return "Interact with volume snapshots"
}
func (f *VolumeSnapshotCommand) Help() string {
helpText := `
Usage: nomad volume snapshot <subcommand> [options] [args]
This command groups subcommands for interacting with CSI volume snapshots.
Create a snapshot of an external storage volume:
$ nomad volume snapshot create <volume id>
Display a list of CSI volume snapshots along with their
source volume ID as known to the external storage provider.
$ nomad volume snapshot list -plugin <plugin id>
Delete a snapshot of an external storage volume:
$ nomad volume snapshot delete <snapshot id>
Please see the individual subcommand help for detailed usage information.
`
return strings.TrimSpace(helpText)
}