Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion volumes/snapshots.html.markerb
Original file line number Diff line number Diff line change
Expand Up @@ -161,17 +161,17 @@
Total stored size: 2.5 GiB
```

## Disable automatic daily snapshots

Check warning on line 164 in volumes/snapshots.html.markerb

View workflow job for this annotation

GitHub Actions / Vale linter

[vale] reported by reviewdog 🐶 Use 'turn off' or 'off' instead of 'Disable'. Raw Output: {"message":"Use 'turn off' or 'off' instead of 'Disable'.","location":{"path":"volumes/snapshots.html.markerb","range":{"start":{"line":164,"column":4},"end":{"line":164,"column":11}}},"severity":"WARNING","code":{"value":"Google.WordListCase","url":"https://developers.google.com/style/word-list"}}

Automatic daily snapshots are enabled by default. To disable automatic snapshots, use the `--scheduled-snapshots=false` flag.
Automatic daily snapshots are enabled by default. To disable automatic snapshots, use the `--scheduled-snapshots=false` flag. Snapshots of encrypted volumes (defaults to `true`) are likewise encrypted at rest.

Check warning on line 166 in volumes/snapshots.html.markerb

View workflow job for this annotation

GitHub Actions / Vale linter

[vale] reported by reviewdog 🐶 Use 'turn off' or 'off' instead of 'disable'. Raw Output: {"message":"Use 'turn off' or 'off' instead of 'disable'.","location":{"path":"volumes/snapshots.html.markerb","range":{"start":{"line":166,"column":54},"end":{"line":166,"column":61}}},"severity":"WARNING","code":{"value":"Google.WordListCase","url":"https://developers.google.com/style/word-list"}}

Disable automatic snapshots when you create a volume:

Check warning on line 168 in volumes/snapshots.html.markerb

View workflow job for this annotation

GitHub Actions / Vale linter

[vale] reported by reviewdog 🐶 Use 'turn off' or 'off' instead of 'Disable'. Raw Output: {"message":"Use 'turn off' or 'off' instead of 'Disable'.","location":{"path":"volumes/snapshots.html.markerb","range":{"start":{"line":168,"column":1},"end":{"line":168,"column":8}}},"severity":"WARNING","code":{"value":"Google.WordListCase","url":"https://developers.google.com/style/word-list"}}

```
fly volumes create <my_volume_name> --scheduled-snapshots=false
```

Disable automatic snapshots for an existing volume:

Check warning on line 174 in volumes/snapshots.html.markerb

View workflow job for this annotation

GitHub Actions / Vale linter

[vale] reported by reviewdog 🐶 Use 'turn off' or 'off' instead of 'Disable'. Raw Output: {"message":"Use 'turn off' or 'off' instead of 'Disable'.","location":{"path":"volumes/snapshots.html.markerb","range":{"start":{"line":174,"column":1},"end":{"line":174,"column":8}}},"severity":"WARNING","code":{"value":"Google.WordListCase","url":"https://developers.google.com/style/word-list"}}

```
fly volumes update <volume id> --scheduled-snapshots=false
Expand All @@ -179,7 +179,7 @@

Disabling automatic snapshots will not remove any existing snapshots for the volume; snapshots are only removed at the end of their retention periods.

For Fly Launch apps, you can disable automatic snapshots in the `[mounts]` section of your app's `fly.toml` file. Any new Fly Volumes `fly deploy` creates will have automatic snapshots disabled:

Check warning on line 182 in volumes/snapshots.html.markerb

View workflow job for this annotation

GitHub Actions / Vale linter

[vale] reported by reviewdog 🐶 Use 'turn off' or 'off' instead of 'disabled'. Raw Output: {"message":"Use 'turn off' or 'off' instead of 'disabled'.","location":{"path":"volumes/snapshots.html.markerb","range":{"start":{"line":182,"column":186},"end":{"line":182,"column":194}}},"severity":"WARNING","code":{"value":"Google.WordListCase","url":"https://developers.google.com/style/word-list"}}

Check warning on line 182 in volumes/snapshots.html.markerb

View workflow job for this annotation

GitHub Actions / Vale linter

[vale] reported by reviewdog 🐶 Use 'turn off' or 'off' instead of 'disable'. Raw Output: {"message":"Use 'turn off' or 'off' instead of 'disable'.","location":{"path":"volumes/snapshots.html.markerb","range":{"start":{"line":182,"column":30},"end":{"line":182,"column":37}}},"severity":"WARNING","code":{"value":"Google.WordListCase","url":"https://developers.google.com/style/word-list"}}

```toml
[mounts]
Expand Down
Loading