From 261023f9c3c93d9a1c207dfdce841ff5490504d3 Mon Sep 17 00:00:00 2001 From: Michal Zegan Date: Wed, 19 Dec 2018 11:47:30 +0100 Subject: Add ansible nfs role This commit adds role for creating /dockerdata-nfs and exporting i over nfs for later use during onap deployment. Change-Id: I0ea8e858d581534b983eaab6e1ee570068fc623c Issue-ID: OOM-1551 Signed-off-by: Michal Zegan --- ansible/roles/nfs/templates/exports.j2 | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 ansible/roles/nfs/templates/exports.j2 (limited to 'ansible/roles/nfs/templates') diff --git a/ansible/roles/nfs/templates/exports.j2 b/ansible/roles/nfs/templates/exports.j2 new file mode 100644 index 00000000..1f6956c2 --- /dev/null +++ b/ansible/roles/nfs/templates/exports.j2 @@ -0,0 +1,3 @@ +{% for host in groups.kubernetes[1:] -%} + {{ nfs_mount_path }} {{ hostvars[host].ansible_host }}(rw,sync,no_root_squash,no_subtree_check) +{% endfor %} -- cgit 1.2.3-korg