diff options
| -rw-r--r-- | TODOs.org | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -27,6 +27,15 @@ Put it in an environment variable? Done by appending to content of =~/.ssh/config=. **** DOING Automate deployment with Terraform and deployment scripts **** NEXT Use DigitalOcean's Floating IP in front of the droplet +**** TODO Backup data during deployments +Is this approach feasible? Will it make the deployment take too much longer? What are the alternatives? + +Initial sketch of the backup commands: +#+BEGIN_SOURCE shell +rsync --verbose --progress --stats --update --recursive "$HOME/backups/" "$RSYNC_REMOTE" +borg create -svp -C lzma,6 "~/borgbackup::{hostname}-{now}-${VPS_COMMIT_SHA} ${VOLUME_HOME}" +rsync --verbose --progress --stats --update --recursive "$RSYNC_REMOTE" "$HOME/borgbackups/" +#+END_SOURCE **** TODO Test provisioning DNS entries with other DNS registrars **** DONE Namecheap whitelist IP limitation CLOSED: [2019-05-26 Sun 17:14] |
