Skip to content

Commit

Permalink
docs: Update disaster_recovery.md to reflect quay.io as docker contai…
Browse files Browse the repository at this point in the history
…ner registry (argoproj#13520) (argoproj#13792)

ArgoCD docker images are being used from `quay.io` registry.
Updated document to reflect that in the `bash` commands.

Signed-off-by: Divyang Patel <divyang.jp@gmail.com>
Co-authored-by: Divyang Patel <divyang.jp@gmail.com>
  • Loading branch information
gcp-cherry-pick-bot[bot] and divyangjp authored May 28, 2023
1 parent e1184b4 commit e166cfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/operator-manual/disaster_recovery.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ export VERSION=v1.0.1
Export to a backup:

```bash
docker run -v ~/.kube:/home/argocd/.kube --rm argoproj/argocd:$VERSION argocd admin export > backup.yaml
docker run -v ~/.kube:/home/argocd/.kube --rm quay.io/argoproj/argocd:$VERSION argocd admin export > backup.yaml
```

Import from a backup:

```bash
docker run -i -v ~/.kube:/home/argocd/.kube --rm argoproj/argocd:$VERSION argocd admin import - < backup.yaml
docker run -i -v ~/.kube:/home/argocd/.kube --rm quay.io/argoproj/argocd:$VERSION argocd admin import - < backup.yaml
```

!!! note
Expand Down

0 comments on commit e166cfa

Please sign in to comment.