Преглед изворни кода

Merge pull request #2095 from georgegoh/master

Enable additional 'virt_sandbox_use_nfs' seboolean as per documentation.
Scott Dodson пре 8 година
родитељ
комит
22fa78d473
1 измењених фајлова са 7 додато и 0 уклоњено
  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"