diff --git a/docs/admin/apparmor/deny-write.profile b/docs/admin/apparmor/deny-write.profile deleted file mode 100644 index c2653c7112..0000000000 --- a/docs/admin/apparmor/deny-write.profile +++ /dev/null @@ -1,10 +0,0 @@ -#include - -profile k8s-apparmor-example-deny-write flags=(attach_disconnected) { - #include - - file, - - # Deny all file writes. - deny /** w, -} diff --git a/docs/admin/apparmor/hello-apparmor-pod.yaml b/docs/admin/apparmor/hello-apparmor-pod.yaml deleted file mode 100644 index 3e9b3b2a9c..0000000000 --- a/docs/admin/apparmor/hello-apparmor-pod.yaml +++ /dev/null @@ -1,13 +0,0 @@ -apiVersion: v1 -kind: Pod -metadata: - name: hello-apparmor - annotations: - # Tell Kubernetes to apply the AppArmor profile "k8s-apparmor-example-deny-write". - # Note that this is ignored if the Kubernetes node is not running version 1.4 or greater. - container.apparmor.security.beta.kubernetes.io/hello: localhost/k8s-apparmor-example-deny-write -spec: - containers: - - name: hello - image: busybox - command: [ "sh", "-c", "echo 'Hello AppArmor!' && sleep 1h" ]