mirror of
https://github.com/kemko/nomad.git
synced 2026-01-07 19:05:42 +03:00
csi: subcommand for volume snapshot (#12152)
This commit is contained in:
@@ -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,
|
||||
|
||||
45
command/volume_snapshot.go
Normal file
45
command/volume_snapshot.go
Normal 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)
|
||||
}
|
||||
Reference in New Issue
Block a user