4493b6f176
The ocid project was renamed to CRI-O, months ago, it is time that we moved all of the code to the new name. We want to elminate the name ocid from use. Move fully to crio. Also cric is being renamed to crioctl for the time being. Signed-off-by: Dan Walsh <dwalsh@redhat.com>
14 lines
555 B
Go
14 lines
555 B
Go
package apparmor
|
|
|
|
const (
|
|
// DefaultApparmorProfile is the name of default apparmor profile name.
|
|
DefaultApparmorProfile = "crio-default"
|
|
|
|
// 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/"
|
|
)
|