fp/ansible/roles/our/tasks/filesystem.yml
CJ_Clippy bf53429e0f
Some checks failed
fp/our CI/CD / build (push) Successful in 6m48s
ci / test (push) Failing after 7m33s
use command instead of entrypoing
2025-10-05 22:19:07 -08:00

13 lines
328 B
YAML

---
- name: Get VFS mount tag
ansible.builtin.set_fact:
our_vfs_mount_tag: "{{ lookup('dotenv', 'VULTR_VFS_MOUNT_TAG', file='../../../../.env.production') }}"
- name: Mount VFS
ansible.posix.mount:
src: "{{ our_vfs_mount_tag }}"
path: /mnt/vfs
fstype: virtiofs
opts: defaults,_netdev
state: mounted