12 lines
301 B
YAML
12 lines
301 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
|
|
state: mounted
|