Gitiles
Code Review
Sign In
gerrit.nordix.org
/
onap
/
oom
/
offline-installer
/
bb3bef83ca562b9aadc288b3ec46264d73ec73ac
/
.
/
ansible
/
roles
/
nfs
/
templates
/
exports.j2
blob: 465c9d2132ba67be32c6c86688458bc799fda771 [
file
] [
log
] [
blame
]
{%
for
host
in
groups
.
kubernetes
|
difference
(
groups
[
'nfs-server'
])
-%}
{{
nfs_mount_path
}}
{{
hostvars
[
host
].
ansible_host
|
default
(
hostvars
[
host
].
inventory_hostname
)
}}(
rw
,
sync
,
no_root_squash
,
no_subtree_check
)
{%
endfor
%}