aboutsummaryrefslogtreecommitdiff
path: root/TODOs.org (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Semi working setup: Terraform and LetsEncrypt workingEuAndreh2020-08-101-3/+19
|
* Use password via stdin, and store the snapshot image configuration.nixEuAndreh2020-08-101-2/+0
|
* Use new image with new SSH key and andreh userEuAndreh2020-08-101-9/+7
|
* Migration: Remove Ansible and Docker code, move only to NixOSEuAndreh2020-08-101-0/+5
|
* WIP: Move to Vultr and NixOSEuAndreh2020-08-101-0/+1
|
* TODOs.orgEuAndreh2020-08-101-15/+15
|
* Remove gpodder.net sync software from the serverEuAndreh2020-08-061-1/+4
|
* TODOs.orgEuAndreh2020-08-051-1/+8
|
* TODOs.orgEuAndreh2020-08-051-1/+14
|
* TODOs.org: move old stuff to archive.orgEuAndreh2020-08-021-375/+3
|
* TODOs.orgEuAndreh2020-08-021-0/+6
|
* TODOs.orgEuAndreh2019-11-161-1/+2
|
* TODOs.orgEuAndreh2019-11-161-0/+1
|
* TODOs.orgEuAndreh2019-11-021-0/+1
|
* TODOs.orgEuAndreh2019-06-181-0/+1
|
* TODOs.orgEuAndreh2019-06-171-2/+5
|
* TODOs.orgEuAndreh2019-06-161-2/+12
|
* TODOs.orgEuAndreh2019-06-151-0/+5
|
* TODOs.orgEuAndreh2019-06-141-0/+2
|
* TODOs.orgEuAndreh2019-06-141-0/+1
|
* TODOs.orgEuAndreh2019-06-131-0/+2
|
* TODOs.orgEuAndreh2019-06-131-0/+1
|
* TODOs.orgEuAndreh2019-06-131-0/+2
|
* TODOs.orgEuAndreh2019-06-111-1/+2
|
* TODOs.orgEuAndreh2019-06-111-1/+4
|
* TODOs.orgEuAndreh2019-06-111-6/+10
|
* Run shutdown with Ansible instead of BashEuAndreh2019-06-111-1/+4
|
* TODOs.orgEuAndreh2019-06-101-15/+27
|
* Store updated Terraform files in case of failureEuAndreh2019-06-101-1/+2
|
* Trust commited keyEuAndreh2019-06-101-0/+2
|
* Encrypt attached logEuAndreh2019-06-101-2/+3
|
* Send logs via email after finishing provision.shEuAndreh2019-06-101-0/+2
| | | | The email will be send for both sucessfull and failed runs.
* Fail CI run if backup failsEuAndreh2019-06-101-1/+2
|
* Provision DNS entries using DigitalOcean instead of DNS registrarEuAndreh2019-06-101-19/+82
| | | | | | | | | | | | | This way we can implement dynamic (provision-time) Floating IP, instead of a hardcoded pre-created Floating IP address. Related changes: - remove =terraform-godaddy= provider, use =digitalocean_record= instead; - create =generated-known-hosts= after provisioning instead of during =setup.sh=: use the =$(terraform output public_floating_ip)= value to make this file dynamic; - remote the =$PINNED_IP= and =$TF_VAR_floating_ip= variables; - add type and descriptions to variable declarations in Terraform recipe.
* TODOs.orgEuAndreh2019-06-081-0/+1
|
* TODOs.orgEuAndreh2019-06-081-0/+4
|
* Use terraform-godaddy and Terraform 0.11EuAndreh2019-06-081-0/+1
| | | | | | | | | | | | The =terraform-godaddy= package supports only Terraform 0.11 as of now. It is not packaged by default by nixpkgs, and the =postInstall= hook is required because Terraform looks for providers usinthe the =terraform-provider-$name= template, which the package doesn't follow. I had to remove the loop on vps.tf since it requires Terraform 0.12. I'll either wait for =terraform-godaddy= to upgrade to 0.12 or try to do it myself if it bothers me enough.
* TODOs.orgEuAndreh2019-06-081-21/+21
|
* Use nextcloud.${TLD} instead of cloud.${TLD} as CNAME for Nextcloud installationEuAndreh2019-06-081-1/+1
|
* TODOs.orgEuAndreh2019-06-081-1/+9
|
* TODOs.orgEuAndreh2019-06-071-0/+6
|
* TODOs.orgEuAndreh2019-06-071-0/+2
|
* Allow backups to fail for nowEuAndreh2019-06-061-0/+1
|
* TODOs.orgEuAndreh2019-06-051-1/+2
|
* TODOs.orgEuAndreh2019-06-051-0/+1
|
* Always destroy infrastructure before applyingEuAndreh2019-06-051-1/+2
|
* TODOs.orgEuAndreh2019-06-051-1/+2
|
* TODOs.orgEuAndreh2019-06-051-1/+5
|
* TODOs.orgEuAndreh2019-06-051-0/+19
|
* Use Ansible instead of Bash for provisioningEuAndreh2019-06-051-3/+29
| | | | | | | | | | | | | | | | | | The deployment is not quite working, and I'm unable to test right now: DigitalOcean is returning 503 for my requests. As of this commit, I can run =ansible-playbook provider.yml= more than once and it will actually be idempotent. Notes: - SSH fingerprint are now taken from the public key file instead of manually supplying it in the terraform template using the =digitalocean_ssh_key= resource; - use Ansible instead of ad-hoc Bash scripts for provisioning the Droplets created by Terraform; - use the =filename.env.extension= to create the concrete files in CI; - use the =user_data= to add the know SSH key pair to the newly created Droplet; - add =rotate-ssh-keys.sh= utils;