# unikraft instances checkpoint edit

Edit an instance checkpoint.

```
unikraft instances checkpoint edit <target> [flags]
```

## Examples

Update checkpoint tags:

```bash
unikraft instance checkpoint edit my-checkpoint --set tags=env-dev
```

## Options

```
  --add <name>=<value>        Key-value pairs to add to the instance-checkpoint.
  --add-file <name>=<filename>  Files containing key-value pairs to add to the instance-checkpoint.
  --cmd CMD                   Run a command to edit fields (receives YAML on stdin, outputs edited YAML on stdout).
  --del <name>=<value>        Keys to delete from the instance-checkpoint.
  --del-file <name>=<filename>  Files containing keys to delete from the instance-checkpoint.
  --delete-lock               Prevent deletion of the checkpoint.
  --dry-run                   Print patches without applying them.
  -f, --field FIELD           Specify which fields to include in the output.
  --load LOAD                 Load fields from a YAML file.
  -o, --output OUTPUT         Output format. One of: kv, table, json, yaml, raw, quiet, template.
  --save FILE                 Save editable fields as YAML to a file (use - for stdout).
  --set <name>=<value>        Key-value pairs to set on the instance-checkpoint.
  --set-file <name>=<filename>  Files containing key-value pairs to set on the instance-checkpoint.
  --tag tag                   Checkpoint tag.
  --visual                    Open an editor to modify fields visually.
```

## Options inherited from parent commands

```
  --config file               Path to the configuration file.
  --log-level level           Set the logging level. (default info)
  --log-type type             Set the log type. (default text)
  --profile name              Set the current profile.
  --telemetry                 Toggle anonymous usage analytics. (default true)
  --timeout duration          Set a deadline for the command (e.g. 30s, 5m, 1h).
```

## See Also

* [`unikraft instances checkpoint`](../checkpoint.mdx): Manage instance checkpoints.

