Skip to content

Disaster Recovery

Daniel Glen edited this page Feb 22, 2024 · 18 revisions

Runbooks

I want to restore a file to a previous version

  1. Verify on the AWS console that a backup version exists
  2. Connect to the service pod $ kubectl exec -n $namespace --stdin --tty $pod_name -- /bin/sh
  3. Once connected, run aws s3api list-object-versions --bucket bucketname --prefix path/to/file. This will list all versions of the file in chronological order by LastModified date.
Clone this wiki locally