-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: PrimalPimmy <[email protected]> Fixes Signed-off-by: PrimalPimmy <[email protected]> Fixes Signed-off-by: PrimalPimmy <[email protected]> Fixes2 Signed-off-by: PrimalPimmy <[email protected]> Making seccomp work (I hope) Signed-off-by: PrimalPimmy <[email protected]> Fixed seccomp path Signed-off-by: PrimalPimmy <[email protected]> removed some elements Signed-off-by: PrimalPimmy <[email protected]> Seccomp iteration-2 Signed-off-by: PrimalPimmy <[email protected]> updated go Signed-off-by: PrimalPimmy <[email protected]> Only smoke test Signed-off-by: PrimalPimmy <[email protected]> Only smoke test Signed-off-by: PrimalPimmy <[email protected]> Again all tests Signed-off-by: PrimalPimmy <[email protected]> removed patch Signed-off-by: PrimalPimmy <[email protected]> secondary test Signed-off-by: PrimalPimmy <[email protected]> secondary test-2 Signed-off-by: PrimalPimmy <[email protected]> updated kubejson Signed-off-by: PrimalPimmy <[email protected]> updated yaml Signed-off-by: PrimalPimmy <[email protected]> updated yaml Signed-off-by: PrimalPimmy <[email protected]> updated yaml Signed-off-by: PrimalPimmy <[email protected]> updated yaml with seccomp patch Signed-off-by: PrimalPimmy <[email protected]> updated yaml with seccomp patch-2 Signed-off-by: PrimalPimmy <[email protected]> updated yaml with seccomp patch-3 Signed-off-by: PrimalPimmy <[email protected]> updated yaml with seccomp patch-4 Signed-off-by: PrimalPimmy <[email protected]> json Signed-off-by: PrimalPimmy <[email protected]> json Signed-off-by: PrimalPimmy <[email protected]> checking seccomp Signed-off-by: PrimalPimmy <[email protected]> working apparmor Signed-off-by: PrimalPimmy <[email protected]>
- Loading branch information
1 parent
5ce1883
commit f3cc38f
Showing
3 changed files
with
119 additions
and
42 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
{ | ||
"defaultAction": "SCMP_ACT_ERRNO", | ||
"architectures": [ | ||
"SCMP_ARCH_X86_64", | ||
"SCMP_ARCH_X86", | ||
"SCMP_ARCH_X32" | ||
], | ||
"syscalls": [ | ||
{ | ||
"names": [ | ||
"getsockopt", | ||
"epoll_ctl", | ||
"capget", | ||
"fstat", | ||
"mmap", | ||
"fstatfs", | ||
"bpf", | ||
"utimensat", | ||
"memfd_create", | ||
"prlimit64", | ||
"open", | ||
"getgid", | ||
"dup2", | ||
"sigaltstack", | ||
"clone", | ||
"stat", | ||
"read", | ||
"newfstatat", | ||
"setgroups", | ||
"sched_getaffinity", | ||
"wait4", | ||
"munmap", | ||
"accept4", | ||
"mprotect", | ||
"futex", | ||
"prctl", | ||
"gettid", | ||
"getsockname", | ||
"exit_group", | ||
"rt_sigaction", | ||
"readlinkat", | ||
"getcwd", | ||
"execve", | ||
"madvise", | ||
"dup", | ||
"fcntl", | ||
"close", | ||
"write", | ||
"setuid", | ||
"ioctl", | ||
"readv", | ||
"writev", | ||
"uname", | ||
"nanosleep", | ||
"socket", | ||
"bind", | ||
"capset", | ||
"getrlimit", | ||
"epoll_create1", | ||
"pread64", | ||
"eventfd2", | ||
"dup3", | ||
"brk", | ||
"getuid", | ||
"pipe", | ||
"chdir", | ||
"statfs", | ||
"unlinkat", | ||
"kill", | ||
"rt_sigreturn", | ||
"geteuid", | ||
"getrandom", | ||
"getpgid", | ||
"openat", | ||
"setgid", | ||
"getpid", | ||
"tgkill", | ||
"fsync", | ||
"faccessat2", | ||
"sched_yield", | ||
"getpeername", | ||
"setsockopt", | ||
"rt_sigprocmask", | ||
"connect", | ||
"perf_event_open", | ||
"access", | ||
"getdents64", | ||
"epoll_wait", | ||
"fork", | ||
"rename", | ||
"set_tid_address", | ||
"getppid", | ||
"pipe2", | ||
"epoll_pwait", | ||
"waitid", | ||
"arch_prctl", | ||
"listen", | ||
"lseek", | ||
"getegid", | ||
"mkdirat" | ||
], | ||
"action": "SCMP_ACT_ALLOW" | ||
} | ||
] | ||
} |
This file contains 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