ansible/playbooks/influxdb.yml
2022-07-12 14:08:06 +00:00

25 lines
466 B
YAML

---
- import_playbook: "include/deploy-kvm-guest.yml myhosts=influxdb"
- name: configure instance
hosts: influxdb
user: root
gather_facts: true
vars_files:
- "{{ ansible_private }}/vars.yml"
pre_tasks:
- name: mount /export
mount:
name: /export
src: LABEL=/export
fstype: xfs
opts: noatime,noexec,nosuid,nodev
passno: "0"
dump: "0"
state: mounted
roles:
- base
- influxdb