7 kubernetes
John Johansen edited this page 2021-10-16 21:43:35 +00:00

Related

  • profiles are per container

Check you Kubernetes Version

AppArmor support was added to kubernetes in v1.4. Kubernetes older than v1.4 do not understand AppArmor annotations and they will be silently ignored.

To check your Kubernetes version you can do

kubectl get nodes -o=jsonpath=$'{range .items[*]}{@.metadata.name}: {@.status.nodeInfo.kubeletVersion}\n{end}'

????

References