Ver código fonte

Enable additional 'virt_sandbox_use_nfs' seboolean as per documentation:

https://docs.openshift.org/latest/install_config/persistent_storage/persistent_storage_nfs.html#nfs-selinux
George Goh 8 anos atrás
pai
commit
a704c30b3a
1 arquivos alterados com 7 adições e 0 exclusões
  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"