mirror of
https://github.com/kemko/nomad.git
synced 2026-01-07 10:55:42 +03:00
Pass-through the `-secret` and `-parameter` flags to allow setting parameters for the snapshot and overriding the secrets we've stored on the CSI volume in the state store.
69 lines
2.0 KiB
Plaintext
69 lines
2.0 KiB
Plaintext
---
|
|
layout: docs
|
|
|
|
page_title: 'Commands: volume snapshot create'
|
|
description: |
|
|
Create external volume snapshots.
|
|
---
|
|
|
|
# Command: volume snapshot create
|
|
|
|
The `volume snapshot create` command creates a snapshot of an existing
|
|
[Container Storage Interface (CSI)][csi] volume. Only CSI plugins that
|
|
implement the [Controller][csi_plugins_internals] interface support this
|
|
command.
|
|
|
|
## Usage
|
|
|
|
```plaintext
|
|
nomad volume snapshot create [volume] [snapshot_name]
|
|
```
|
|
|
|
The `volume snapshot create` command requires a volume ID or prefix. If there
|
|
is an exact match based on the provided volume ID or prefix, then the specific
|
|
volume is snapshotted. Otherwise, a list of matching volumes and information
|
|
will be displayed. The volume must still be [registered] with Nomad in order
|
|
to be snapshotted.
|
|
|
|
If an optional snapshot name is provided, the argument will be passed to the
|
|
CSI plugin to be used as the ID of the resulting snapshot. Not all plugins
|
|
accept this name and it may be ignored.
|
|
|
|
When ACLs are enabled, this command requires a token with the
|
|
`csi-write-volume` capability for the volume's namespace.
|
|
|
|
## General Options
|
|
|
|
@include 'general_options.mdx'
|
|
|
|
## Snapshot Create Options
|
|
|
|
- `-parameter`: Parameters to pass to the plugin to create a
|
|
snapshot. Accepts multiple flags in the form `-parameter key=value`
|
|
|
|
- `-secret`: Secrets to pass to the plugin to create a snapshot. Accepts
|
|
multiple flags in the form `-secret key=value`
|
|
|
|
- `-verbose`: Display full information for the resulting snapshot.
|
|
|
|
## Examples
|
|
|
|
Snapshot a volume:
|
|
|
|
```shell-session
|
|
$ nomad volume snapshot create ebs_prod_db1
|
|
Completed snapshot of volume ebs_prod_db1 with snapshot ID snap-12345.
|
|
```
|
|
|
|
Snapshot a volume with a suggested snapshot ID:
|
|
|
|
```shell-session
|
|
$ nomad volume snapshot create ebs_prod_db1 snap-12345
|
|
Completed snapshot of volume ebs_prod_db1 with snapshot ID snap-12345.
|
|
```
|
|
|
|
[csi]: https://github.com/container-storage-interface/spec
|
|
[csi_plugin]: /docs/job-specification/csi_plugin
|
|
[registered]: /docs/commands/volume/register
|
|
[csi_plugins_internals]: /docs/internals/plugins/csi#csi-plugins
|