Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions protect/control/v1/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -476,6 +476,16 @@ message WorkloadSecuritySpec {
// Path to the localhost seccomp profile, relative to the kubelet seccomp
// root; set only when seccomp_profile_type == SECCOMP_PROFILE_TYPE_LOCALHOST.
string seccomp_localhost_ref = 11;
AppArmorProfileType apparmor_profile_type = 12;
}

// We do not support custom Localhost AppArmor policies.
// Only RuntimeDefault, and Unconfined.
enum AppArmorProfileType {
// No AppArmor confinement (also the default when unset).
APP_ARMOR_PROFILE_TYPE_UNCONFINED = 0;
// The Edera runtime's built-in default profile.
APP_ARMOR_PROFILE_TYPE_RUNTIME_DEFAULT = 1;
}

enum WorkloadState {
Expand Down
Loading