Skip to content

Commit 25c6db5

Browse files
authored
shared storage (#213)
1 parent d9e59a0 commit 25c6db5

File tree

17 files changed

+689
-353
lines changed

17 files changed

+689
-353
lines changed

apps/docs/content/features/backup.mdx

Lines changed: 84 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,90 @@ Whether a service supports backups is specified on the documentation page of eac
88

99
## Frequency and volume
1010

11-
By default, your data is backed up automatically **every day** between 00:00:00 UTC and 01:00:00 UTC, unless you update your settings:
12-
13-
### In GUI
14-
15-
Following changes are available in Zerops GUI. Go to the service detail and choose **Backups List & Configuration** section in the left menu.
16-
17-
- do a one-time backup of your data
18-
- change time of your automatic backup
19-
- turn off backing up your data completely
20-
- view all of your backups
21-
- download a backup
22-
- delete a backup
11+
By default, your data is backed up automatically **every day** between 00:00:00 UTC and 01:00:00 UTC, unless you update your settings.
12+
13+
### Managing Backups in GUI
14+
15+
To manage backups, go to the service detail and choose **Backups List & Configuration** section in the left menu.
16+
17+
#### Configure Backup Settings
18+
19+
From this section, you can:
20+
- Do a one-time backup of your data
21+
- Change the frequency of your automatic backups
22+
- Turn off backing up your data completely
23+
24+
<p align="center">
25+
<img
26+
src="/img/screenshots/backup_frequency.png"
27+
alt="Backup frequency configuration"
28+
width="90%"
29+
height="auto"
30+
/>
31+
</p>
32+
33+
#### Backup Frequency Options
34+
35+
You can configure backups with several preset schedules:
36+
- **No backups**: Disable automatic backups (not recommended)
37+
- **Once a day**: Daily backups at the specified time
38+
- **Once a week**: Weekly backups on the specified day and time
39+
- **Once a month**: Monthly backups on the specified day and time
40+
- **Custom CRON**: Define a custom schedule using CRON syntax
41+
42+
For the Custom CRON option, you can use the following syntax:
43+
44+
<table className="w-full">
45+
<thead>
46+
<tr>
47+
<th className="whitespace-nowrap w-fit">Field name</th>
48+
<th className="w-full">Allowed values</th>
49+
</tr>
50+
</thead>
51+
<tbody>
52+
<tr className="text-left">
53+
<td className="w-fit">Minute</td>
54+
<td className="w-fit">0-59</td>
55+
</tr>
56+
<tr className="text-left">
57+
<td className="w-fit">Hour</td>
58+
<td className="w-fit">0-23</td>
59+
</tr>
60+
<tr className="text-left">
61+
<td className="w-fit">Day</td>
62+
<td className="w-fit">1-31</td>
63+
</tr>
64+
<tr className="text-left">
65+
<td className="w-fit">Month</td>
66+
<td className="w-fit">1-12</td>
67+
</tr>
68+
<tr className="text-left">
69+
<td className="w-fit">Week Day</td>
70+
<td className="w-fit">0–7; both 0 and 7 represent Sunday</td>
71+
</tr>
72+
</tbody>
73+
</table>
74+
75+
Examples:
76+
- `0 2 * * *` - Every day at 2:00 AM
77+
- `0 4 * * 0` - Every Sunday at 4:00 AM
78+
- `0 0 1 * *` - First day of every month at midnight
79+
80+
#### View and Manage Backup Files
81+
82+
In the same section, you can:
83+
- View all of your backups
84+
- Download a backup
85+
- Delete a backup
86+
87+
<p align="center">
88+
<img
89+
src="/img/screenshots/list_of_backups.png"
90+
alt="List of backups"
91+
width="90%"
92+
height="auto"
93+
/>
94+
</p>
2395

2496
### Limits
2597

apps/docs/content/mariadb/how-to/create.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Vertical auto scaling has following default configuration:
112112

113113
<ResourceTable resources={{
114114
ram: {
115-
min: '0.250 GB',
115+
min: '0.25 GB',
116116
}
117117
}} />
118118

apps/docs/content/mariadb/how-to/scale.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Vertical auto scaling has following default configuration:
4141

4242
<ResourceTable resources={{
4343
ram: {
44-
min: '0.250 GB',
44+
min: '0.25 GB',
4545
}
4646
}} />
4747

apps/docs/content/postgresql/how-to/create.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Vertical auto-scaling has the following default configuration:
109109

110110
<ResourceTable resources={{
111111
ram: {
112-
min: '0.250 GB',
112+
min: '0.25 GB',
113113
}
114114
}} />
115115

apps/docs/content/postgresql/how-to/scale.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Vertical auto scaling has following default configuration:
4141

4242
<ResourceTable resources={{
4343
ram: {
44-
min: '0.250 GB',
44+
min: '0.25 GB',
4545
}
4646
}} />
4747

0 commit comments

Comments
 (0)