Browse Source

Merge pull request #2095 from georgegoh/master

Enable additional 'virt_sandbox_use_nfs' seboolean as per documentation.
Scott Dodson 8 years ago
parent
commit
22fa78d473
1 changed files with 7 additions and 0 deletions
  1. 7 0
      roles/openshift_node/tasks/storage_plugins/nfs.yml

+ 7 - 0
roles/openshift_node/tasks/storage_plugins/nfs.yml

@@ -9,3 +9,10 @@
     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"