Kubernetes AppArmor in Docker Container
41 words
One minute
Connect to the Node that is Running the POD
Find the Container ID
1
| docker ps -a | grep apparmor
|
Inspect the Container
1
| docker inspect 41f014a9e7a8 | grep -i profile
|
1
2
3
| ...
"AppArmorProfile": "very-secure",
...
|