File tree Expand file tree Collapse file tree 4 files changed +64
-0
lines changed
content/hi/examples/pods/security/seccomp/alpha Expand file tree Collapse file tree 4 files changed +64
-0
lines changed Original file line number Diff line number Diff line change
1
+ apiVersion : v1
2
+ kind : Pod
3
+ metadata :
4
+ name : audit-pod
5
+ labels :
6
+ app : audit-pod
7
+ annotations :
8
+ seccomp.security.alpha.kubernetes.io/pod : localhost/profiles/audit.json
9
+ spec :
10
+ containers :
11
+ - name : test-container
12
+ image : hashicorp/http-echo:0.2.3
13
+ args :
14
+ - " -text=just made some syscalls!"
15
+ securityContext :
16
+ allowPrivilegeEscalation : false
Original file line number Diff line number Diff line change
1
+ apiVersion : v1
2
+ kind : Pod
3
+ metadata :
4
+ name : default-pod
5
+ labels :
6
+ app : default-pod
7
+ annotations :
8
+ seccomp.security.alpha.kubernetes.io/pod : runtime/default
9
+ spec :
10
+ containers :
11
+ - name : test-container
12
+ image : hashicorp/http-echo:0.2.3
13
+ args :
14
+ - " -text=just made some syscalls!"
15
+ securityContext :
16
+ allowPrivilegeEscalation : false
Original file line number Diff line number Diff line change
1
+ apiVersion : v1
2
+ kind : Pod
3
+ metadata :
4
+ name : fine-pod
5
+ labels :
6
+ app : fine-pod
7
+ annotations :
8
+ seccomp.security.alpha.kubernetes.io/pod : localhost/profiles/fine-grained.json
9
+ spec :
10
+ containers :
11
+ - name : test-container
12
+ image : hashicorp/http-echo:0.2.3
13
+ args :
14
+ - " -text=just made some syscalls!"
15
+ securityContext :
16
+ allowPrivilegeEscalation : false
Original file line number Diff line number Diff line change
1
+ apiVersion : v1
2
+ kind : Pod
3
+ metadata :
4
+ name : violation-pod
5
+ labels :
6
+ app : violation-pod
7
+ annotations :
8
+ seccomp.security.alpha.kubernetes.io/pod : localhost/profiles/violation.json
9
+ spec :
10
+ containers :
11
+ - name : test-container
12
+ image : hashicorp/http-echo:0.2.3
13
+ args :
14
+ - " -text=just made some syscalls!"
15
+ securityContext :
16
+ allowPrivilegeEscalation : false
You can’t perform that action at this time.
0 commit comments