2016-12-07 12:46:38 +00:00
|
|
|
package apparmor
|
|
|
|
|
|
|
|
const (
|
|
|
|
// DefaultApparmorProfile is the name of default apparmor profile name.
|
2017-05-12 13:36:15 +00:00
|
|
|
DefaultApparmorProfile = "crio-default"
|
2016-12-07 12:46:38 +00:00
|
|
|
|
|
|
|
// ContainerAnnotationKeyPrefix is the prefix to an annotation key specifying a container profile.
|
|
|
|
ContainerAnnotationKeyPrefix = "container.apparmor.security.beta.kubernetes.io/"
|
|
|
|
|
|
|
|
// ProfileRuntimeDefault is he profile specifying the runtime default.
|
|
|
|
ProfileRuntimeDefault = "runtime/default"
|
|
|
|
// ProfileNamePrefix is the prefix for specifying profiles loaded on the node.
|
|
|
|
ProfileNamePrefix = "localhost/"
|
|
|
|
)
|