/
/
/
Ansible role that deployes services on my runner machine
1# NFS Mount Unit for {{ item.name }}
2# Auto-generated by Ansible Runner Role
3
4[Unit]
5Description=NFS mount {{ item.name }} ({{ item.host }}:{{ item.nfs_path }})
6After=network-online.target rpc-statd.service
7Wants=network-online.target
8Before=docker.service
9
10[Mount]
11What={{ item.host }}:{{ item.nfs_path }}
12Where={{ item.local_path }}
13Type=nfs
14Options={{ runner_nfs_options }},_netdev
15TimeoutSec=30
16
17[Install]
18WantedBy=multi-user.target