We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f98e8a7 commit c669319Copy full SHA for c669319
1 file changed
protect/control/v1/common.proto
@@ -476,6 +476,16 @@ message WorkloadSecuritySpec {
476
// Path to the localhost seccomp profile, relative to the kubelet seccomp
477
// root; set only when seccomp_profile_type == SECCOMP_PROFILE_TYPE_LOCALHOST.
478
string seccomp_localhost_ref = 11;
479
+ AppArmorProfileType apparmor_profile_type = 12;
480
+}
481
+
482
+// We do not support custom Localhost AppArmor policies.
483
+// Only RuntimeDefault, and Unconfined.
484
+enum AppArmorProfileType {
485
+ // No AppArmor confinement (also the default when unset).
486
+ APP_ARMOR_PROFILE_TYPE_UNCONFINED = 0;
487
+ // The Edera runtime's built-in default profile.
488
+ APP_ARMOR_PROFILE_TYPE_RUNTIME_DEFAULT = 1;
489
}
490
491
enum WorkloadState {
0 commit comments