You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/upgrade/automatic.md
+35-2Lines changed: 35 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ Note we are still working towards zero-downtime upgrade, due to some known issue
34
34
- Back up your VMs if needed.
35
35
- Do not operate the cluster during an upgrade. For example, creating new VMs, uploading new images, etc.
36
36
- Make sure your hardware meets the **preferred**[hardware requirements](../install/requirements.md#hardware-requirements). This is due to there will be intermediate resources consumed by an upgrade.
37
-
- Make sure each node has at least 25 GB of free space (`df -h /usr/local/`).
37
+
- Make sure each node has at least 30 GiB of free system disk space (`df -h /usr/local/`). If any node in the cluster has less than 30 GiB of free system disk space, the upgrade will be denied. Check [free system disk space requirement](#free-system-disk-space-requirement) for more information.
38
38
39
39
:::
40
40
@@ -101,7 +101,7 @@ Make sure to check [Upgrade support matrix](#upgrade-support-matrix) section fir
101
101
name: v1.0.2
102
102
namespace: harvester-system
103
103
spec:
104
-
isoChecksum: <SHA-512 checksum of the ISO>
104
+
isoChecksum: <SHA-512 checksum of the ISO>
105
105
isoURL: http://10.10.0.1/harvester.iso # change to local ISO URL
106
106
releaseDate: '20220512'
107
107
```
@@ -117,3 +117,36 @@ Make sure to check [Upgrade support matrix](#upgrade-support-matrix) section fir
117
117
```
118
118
119
119
- An upgrade button should show up on the Harvester GUI Dashboard page.
120
+
121
+
## Free system disk space requirement
122
+
123
+
_Available as of v1.2.0_
124
+
125
+
The minimum free system disk space requirement in Harvester v1.2.0 is 30 GiB, which will be revised in each release.
126
+
127
+
Harvester will check the amount of free system disk space on each node when you select **Upgrade**. If any node does not meet the requirement, the upgrade will be denied as follows
If some nodes do not have enough free system disk space, but you still want to try upgrading, you can customize the upgrade by updating the `harvesterhci.io/minFreeDiskSpaceGB` annotation of `Version` object.
132
+
133
+
```
134
+
apiVersion: harvesterhci.io/v1beta1
135
+
kind: Version
136
+
metadata:
137
+
annotations:
138
+
harvesterhci.io/minFreeDiskSpaceGB: "30" # the value is pre-defined and may be customized
0 commit comments