41 lines
766 B
Markdown
41 lines
766 B
Markdown
# Velero
|
|
## Installation
|
|
|
|
voir https://gmo-docs.dyndns.org/kube/velero-srv/
|
|
|
|
### Velero-secret
|
|
```
|
|
helm upgrade velero-secret ./kube-backups \
|
|
--install \
|
|
--atomic \
|
|
--cleanup-on-fail \
|
|
--values=./kube-backups/velero-values.yaml \
|
|
--namespace velero \
|
|
--create-namespace
|
|
```
|
|
|
|
## Velero
|
|
```
|
|
helm repo add vmware-tanzu https://vmware-tanzu.github.io/helm-charts/
|
|
helm repo update
|
|
helm search repo vmware-tanzu
|
|
helm show values vmware-tanzu/velero
|
|
|
|
helm upgrade velero vmware-tanzu/velero \
|
|
--install \
|
|
--atomic \
|
|
--cleanup-on-fail \
|
|
--values=velero-values.yaml \
|
|
--namespace velero \
|
|
--create-namespace
|
|
```
|
|
|
|
## Désinstallation
|
|
|
|
helm uninstall velero -n velero
|
|
helm uninstall kube-backups -n velero
|
|
|
|
## Changelog
|
|
### v1.0 - 2023-02-19 - GMo
|
|
- Version initiale
|