ソースを参照

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"