Skip to content

Commit ffb0920

Browse files
authored
1 parent 83f95f0 commit ffb0920

File tree

1 file changed

+16
-0
lines changed
  • docker-java-api/src/main/java/com/github/dockerjava/api/model

1 file changed

+16
-0
lines changed

docker-java-api/src/main/java/com/github/dockerjava/api/model/Capability.java

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ public enum Capability {
1818
* </ul>
1919
*/
2020
AUDIT_CONTROL,
21+
/**
22+
* Allow reading the audit log via multicast netlink socket.
23+
*/
24+
AUDIT_READ,
2125
/**
2226
* Write records to kernel auditing log.
2327
*/
@@ -26,6 +30,14 @@ public enum Capability {
2630
* Employ features that can block system suspend.
2731
*/
2832
BLOCK_SUSPEND,
33+
/**
34+
* Allow creating BPF maps, loading BPF Type Format (BTF) data, retrieve JITed code of BPF programs, and more.
35+
*/
36+
BPF,
37+
/**
38+
* Allow checkpoint/restore related operations. Introduced in kernel 5.9.
39+
*/
40+
CHECKPOINT_RESTORE,
2941
/**
3042
* Make arbitrary changes to file UIDs and GIDs (see chown(2)).
3143
*/
@@ -120,6 +132,10 @@ public enum Capability {
120132
* </ul>
121133
*/
122134
NET_RAW,
135+
/**
136+
* Allow system performance and observability privileged operations using perf_events, i915_perf and other kernel subsystems
137+
*/
138+
PERFMON,
123139
/**
124140
* Set file capabilities.
125141
*/

0 commit comments

Comments
 (0)