Added information about minimum space required for Minio install. (#3393)
https://github.com/vmware-tanzu/velero/issues/3108 Signed-off-by: Dave Smith-Uchida <dsmithuchida@vmware.com>pull/3408/head
parent
75fd5a187d
commit
1fd49f4fd6
|
@ -19,6 +19,8 @@ If you encounter issues with installing or configuring, see [Debugging Installat
|
|||
* Access to a Kubernetes cluster, version 1.7 or later. **Note:** restic support requires Kubernetes version 1.10 or later, or an earlier version with the mount propagation feature enabled. Restic support is not required for this example, but may be of interest later. See [Restic Integration][17].
|
||||
* A DNS server on the cluster
|
||||
* `kubectl` installed
|
||||
* Sufficient disk space to store backups in Minio. You will need sufficient disk space available to handle any
|
||||
backups plus at least 1GB additional. Minio will not operate if less than 1GB of free disk space is available.
|
||||
|
||||
## Download Velero
|
||||
|
||||
|
@ -63,6 +65,10 @@ These instructions start the Velero server and a Minio instance that is accessib
|
|||
```
|
||||
kubectl apply -f examples/minio/00-minio-deployment.yaml
|
||||
```
|
||||
_Note_: The example Minio yaml provided uses "empty dir". Your node needs to have enough space available to store the
|
||||
data being backed up plus 1GB of free space. If the node does not have enough space, you can modify the example yaml to
|
||||
use a Persistent Volume instead of "empty dir"
|
||||
|
||||
```
|
||||
velero install \
|
||||
--provider aws \
|
||||
|
|
Loading…
Reference in New Issue