Last active
September 13, 2017 02:13
-
-
Save sjenning/d87a320c38ef9a1c88d40a53785df4bf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module kubedns 1.0; | |
| require { | |
| type container_var_run_t; | |
| type container_t; | |
| class file { open read ioctl }; | |
| } | |
| #============= container_t ============== | |
| allow container_t container_var_run_t:file read; | |
| allow container_t container_var_run_t:file open; | |
| allow container_t container_var_run_t:file ioctl; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment