summaryrefslogtreecommitdiffstats
path: root/roles/openshift_node/tasks/storage_plugins/nfs.yml
blob: 8380714d4c434cd69fc7324b3f977cd18495beeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
- name: Install NFS storage plugin dependencies
  action: "{{ ansible_pkg_mgr }} name=nfs-utils state=present"
  when: not openshift.common.is_atomic | bool

- name: Set seboolean to allow nfs storage plugin access from containers
  seboolean:
    name: virt_use_nfs
    state: yes
    persistent: yes
  when: ansible_selinux and ansible_selinux.status == "enabled"

- name: Set seboolean to allow nfs storage plugin access from containers(sandbox)
  seboolean:
    name: virt_sandbox_use_nfs
    state: yes
    persistent: yes
  when: ansible_selinux and ansible_selinux.status == "enabled"