From 1b3f2a1e6dfd0c12079805818c1583eaf0f2bcc8 Mon Sep 17 00:00:00 2001 From: josiah Date: Mon, 8 Jan 2024 16:45:32 -0600 Subject: [PATCH] Remove mount argument, update bind mount. That nfs volume mount is not needed now that I figured out how to do LVM expansion within Proxmox. Still more to figure out, but for now this is great. --- ansible/roles/highsea/tasks/main.yml | 9 --------- ansible/roles/highsea/templates/highsea-compose.yml | 2 +- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/ansible/roles/highsea/tasks/main.yml b/ansible/roles/highsea/tasks/main.yml index 27d0645..262391b 100644 --- a/ansible/roles/highsea/tasks/main.yml +++ b/ansible/roles/highsea/tasks/main.yml @@ -33,15 +33,6 @@ # TODO: Partition, detect PV, add new disk to LVM. -# Mount remote storage under ~/apps -- name: Mount an NFS volume - ansible.posix.mount: - src: sainthood.home.jowj.net:/volume1/bikeshed_workloads/highsea-apps/ - path: /home/josiah/backups - opts: rw,sync,hard - state: mounted - fstype: nfs - - name: Mount usenet volume ansible.posix.mount: src: storage.home.jowj.net:/volume1/usenet diff --git a/ansible/roles/highsea/templates/highsea-compose.yml b/ansible/roles/highsea/templates/highsea-compose.yml index b6f3dce..2715cee 100644 --- a/ansible/roles/highsea/templates/highsea-compose.yml +++ b/ansible/roles/highsea/templates/highsea-compose.yml @@ -167,7 +167,7 @@ services: - "/home/josiah/apps/readarr:/config" - "/media/usenet/audiobooks:/media/usenet/book-library/readarr/audiobooks" - "/media/usenet/book-library/readarr:/media/usenet/book-library/readarr" # not ready - - "/home/josiah/Downloads/usenet-complete/:/media/downloads" + - "/home/josiah/Downloads/usenet-complete/books:/data/downloads/books" labels: - "traefik.enable=true" - "traefik.http.services.highsea-readarr.loadbalancer.server.port=8787"