translate-/docs/tutorials/clusters/apparmor.md (#16365)
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
38dc68b5af
commit
0755463b00
@@ -0,0 +1,593 @@
|
|||||||
|
---
|
||||||
|
title: AppArmor
|
||||||
|
content_template: templates/tutorial
|
||||||
|
---
|
||||||
|
<!-- ---
|
||||||
|
reviewers:
|
||||||
|
- stclair
|
||||||
|
title: AppArmor
|
||||||
|
content_template: templates/tutorial
|
||||||
|
--- -->
|
||||||
|
|
||||||
|
{{% capture overview %}}
|
||||||
|
|
||||||
|
{{< feature-state for_k8s_version="v1.4" state="beta" >}}
|
||||||
|
|
||||||
|
|
||||||
|
<!-- AppArmor is a Linux kernel security module that supplements the standard Linux user and group based
|
||||||
|
permissions to confine programs to a limited set of resources. AppArmor can be configured for any
|
||||||
|
application to reduce its potential attack surface and provide greater in-depth defense. It is
|
||||||
|
configured through profiles tuned to whitelist the access needed by a specific program or container,
|
||||||
|
such as Linux capabilities, network access, file permissions, etc. Each profile can be run in either
|
||||||
|
*enforcing* mode, which blocks access to disallowed resources, or *complain* mode, which only reports
|
||||||
|
violations. -->
|
||||||
|
Apparmor 是一个 Linux 内核安全模块,它补充了标准的基于 Linux 用户和组的安全模块将程序限制为有限资源集的权限。AppArmor 可以配置为任何应用程序减少潜在的攻击面,并且提供更加深入的防御。AppArmor 是通过配置文件进行配置的,这些配置文件被调整为报名单,列出了特定程序或者容器所需要的访问权限,如 Linux 功能、网络访问、文件权限等。每个配置文件都可以在*强制*模式(阻止访问不允许的资源)或*投诉*模式(仅报告冲突)下运行。
|
||||||
|
|
||||||
|
|
||||||
|
{{% /capture %}}
|
||||||
|
|
||||||
|
{{% capture objectives %}}
|
||||||
|
|
||||||
|
<!-- * See an example of how to load a profile on a node
|
||||||
|
* Learn how to enforce the profile on a Pod
|
||||||
|
* Learn how to check that the profile is loaded
|
||||||
|
* See what happens when a profile is violated
|
||||||
|
* See what happens when a profile cannot be loaded -->
|
||||||
|
* 查看如何在节点上加载配置文件示例
|
||||||
|
* 了解如何在 Pod 上强制执行配置文件
|
||||||
|
* 了解如何检查配置文件是否已加载
|
||||||
|
* 查看违反配置文件时会发生什么情况
|
||||||
|
* 查看无法加载配置文件时会发生什么情况
|
||||||
|
|
||||||
|
{{% /capture %}}
|
||||||
|
|
||||||
|
{{% capture prerequisites %}}
|
||||||
|
|
||||||
|
<!-- Make sure: -->
|
||||||
|
务必:
|
||||||
|
|
||||||
|
<!-- 1. Kubernetes version is at least v1.4 -- Kubernetes support for AppArmor was added in
|
||||||
|
v1.4. Kubernetes components older than v1.4 are not aware of the new AppArmor annotations, and
|
||||||
|
will **silently ignore** any AppArmor settings that are provided. To ensure that your Pods are
|
||||||
|
receiving the expected protections, it is important to verify the Kubelet version of your nodes:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
kubectl get nodes -o=jsonpath=$'{range .items[*]}{@.metadata.name}: {@.status.nodeInfo.kubeletVersion}\n{end}'
|
||||||
|
```
|
||||||
|
```
|
||||||
|
gke-test-default-pool-239f5d02-gyn2: v1.4.0
|
||||||
|
gke-test-default-pool-239f5d02-x1kf: v1.4.0
|
||||||
|
gke-test-default-pool-239f5d02-xwux: v1.4.0
|
||||||
|
``` -->
|
||||||
|
1. Kubernetes 版本至少是 v1.4 -- AppArmor 在 Kubernetes v1.4 版本中才添加了对 AppArmor 的支持。早于 v1.4 版本的 Kubernetes 组件不知道新的 AppArmor 注释,并且将会 **默认忽略** 提供的任何 AppArmor 设置。为了确保您的 Pods 能够得到预期的保护,必须验证节点的 Kubelet 版本:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
kubectl get nodes -o=jsonpath=$'{range .items[*]}{@.metadata.name}: {@.status.nodeInfo.kubeletVersion}\n{end}'
|
||||||
|
```
|
||||||
|
```
|
||||||
|
gke-test-default-pool-239f5d02-gyn2: v1.4.0
|
||||||
|
gke-test-default-pool-239f5d02-x1kf: v1.4.0
|
||||||
|
gke-test-default-pool-239f5d02-xwux: v1.4.0
|
||||||
|
```
|
||||||
|
|
||||||
|
<!-- 2. AppArmor kernel module is enabled -- For the Linux kernel to enforce an AppArmor profile, the
|
||||||
|
AppArmor kernel module must be installed and enabled. Several distributions enable the module by
|
||||||
|
default, such as Ubuntu and SUSE, and many others provide optional support. To check whether the
|
||||||
|
module is enabled, check the `/sys/module/apparmor/parameters/enabled` file:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
cat /sys/module/apparmor/parameters/enabled
|
||||||
|
Y
|
||||||
|
```
|
||||||
|
|
||||||
|
If the Kubelet contains AppArmor support (>= v1.4), it will refuse to run a Pod with AppArmor
|
||||||
|
options if the kernel module is not enabled.
|
||||||
|
|
||||||
|
{{< note >}}
|
||||||
|
Ubuntu carries many AppArmor patches that have not been merged into the upstream Linux
|
||||||
|
kernel, including patches that add additional hooks and features. Kubernetes has only been
|
||||||
|
tested with the upstream version, and does not promise support for other features.
|
||||||
|
{{< /note >}} -->
|
||||||
|
2. AppArmor 内核模块已启用 -- 要使 Linux 内核强制执行 AppArmor 配置文件,必须安装并且启动 AppArmor 内核模块。默认情况下,有几个发行版支持该模块,如 Ubuntu 和 SUSE,还有许多发行版提供可选支持。要检查模块是否已启用,请检查
|
||||||
|
`/sys/module/apparmor/parameters/enabled` 文件:
|
||||||
|
```shell
|
||||||
|
cat /sys/module/apparmor/parameters/enabled
|
||||||
|
Y
|
||||||
|
```
|
||||||
|
如果 Kubelet 包含 AppArmor 支持(>=v1.4),如果内核模块未启用,它将拒绝运行带有 AppArmor 选项的 Pod。
|
||||||
|
|
||||||
|
{{< note >}}
|
||||||
|
Ubuntu 携带了许多没有合并到上游 Linux 内核中的 AppArmor 补丁,包括添加附加钩子和特性的补丁。Kubernetes 只在上游版本中测试过,不承诺支持其他特性。
|
||||||
|
{{< /note >}}
|
||||||
|
|
||||||
|
<!-- 3. Container runtime is Docker -- Currently the only Kubernetes-supported container runtime that
|
||||||
|
also supports AppArmor is Docker. As more runtimes add AppArmor support, the options will be
|
||||||
|
expanded. You can verify that your nodes are running docker with:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
kubectl get nodes -o=jsonpath=$'{range .items[*]}{@.metadata.name}: {@.status.nodeInfo.containerRuntimeVersion}\n{end}'
|
||||||
|
```
|
||||||
|
```
|
||||||
|
gke-test-default-pool-239f5d02-gyn2: docker://1.11.2
|
||||||
|
gke-test-default-pool-239f5d02-x1kf: docker://1.11.2
|
||||||
|
gke-test-default-pool-239f5d02-xwux: docker://1.11.2
|
||||||
|
```
|
||||||
|
|
||||||
|
If the Kubelet contains AppArmor support (>= v1.4), it will refuse to run a Pod with AppArmor
|
||||||
|
options if the runtime is not Docker. -->
|
||||||
|
3. Docker 作为容器运行环境 -- 目前,支持 Kubernetes 运行的容器中只有 Docker 也支持 AppArmor。随着更多的运行时添加 AppArmor 的支持,可选项将会增多。您可以使用以下命令验证节点是否正在运行 Docker:
|
||||||
|
```shell
|
||||||
|
kubectl get nodes -o=jsonpath=$'{range .items[*]}{@.metadata.name}: {@.status.nodeInfo.containerRuntimeVersion}\n{end}'
|
||||||
|
```
|
||||||
|
```
|
||||||
|
gke-test-default-pool-239f5d02-gyn2: docker://1.11.2
|
||||||
|
gke-test-default-pool-239f5d02-x1kf: docker://1.11.2
|
||||||
|
gke-test-default-pool-239f5d02-xwux: docker://1.11.2
|
||||||
|
```
|
||||||
|
|
||||||
|
如果 Kubelet 包含 AppArmor 支持(>=v1.4),如果运行环境不是 Docker,它将拒绝运行带有 AppArmor 选项的 Pod。
|
||||||
|
|
||||||
|
<!-- 4. Profile is loaded -- AppArmor is applied to a Pod by specifying an AppArmor profile that each
|
||||||
|
container should be run with. If any of the specified profiles is not already loaded in the
|
||||||
|
kernel, the Kubelet (>= v1.4) will reject the Pod. You can view which profiles are loaded on a
|
||||||
|
node by checking the `/sys/kernel/security/apparmor/profiles` file. For example:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
ssh gke-test-default-pool-239f5d02-gyn2 "sudo cat /sys/kernel/security/apparmor/profiles | sort"
|
||||||
|
```
|
||||||
|
```
|
||||||
|
apparmor-test-deny-write (enforce)
|
||||||
|
apparmor-test-audit-write (enforce)
|
||||||
|
docker-default (enforce)
|
||||||
|
k8s-nginx (enforce)
|
||||||
|
```
|
||||||
|
|
||||||
|
For more details on loading profiles on nodes, see
|
||||||
|
[Setting up nodes with profiles](#setting-up-nodes-with-profiles). -->
|
||||||
|
4. 配置文件已加载 -- 通过指定每个容器都应使用 AppArmor 配置文件,AppArmor 应用于 Pod。如果指定的任何配置文件尚未加载到内核, Kubelet (>=v1.4) 将拒绝 Pod。通过检查 `/sys/kernel/security/apparmor/profiles` 文件,可以查看节点加载了哪些配置文件。例如:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
ssh gke-test-default-pool-239f5d02-gyn2 "sudo cat /sys/kernel/security/apparmor/profiles | sort"
|
||||||
|
```
|
||||||
|
```
|
||||||
|
apparmor-test-deny-write (enforce)
|
||||||
|
apparmor-test-audit-write (enforce)
|
||||||
|
docker-default (enforce)
|
||||||
|
k8s-nginx (enforce)
|
||||||
|
```
|
||||||
|
|
||||||
|
<!-- For more details on loading profiles on nodes, see
|
||||||
|
[Setting up nodes with profiles](#setting-up-nodes-with-profiles). -->
|
||||||
|
有关在节点上加载配置文件的详细信息,请参见[使用配置文件设置节点](#setting-up-nodes-with-profiles)。
|
||||||
|
|
||||||
|
<!-- As long as the Kubelet version includes AppArmor support (>= v1.4), the Kubelet will reject a Pod
|
||||||
|
with AppArmor options if any of the prerequisites are not met. You can also verify AppArmor support
|
||||||
|
on nodes by checking the node ready condition message (though this is likely to be removed in a
|
||||||
|
later release): -->
|
||||||
|
只要 Kubelet 版本包含 AppArmor 支持(>=v1.4),如果不满足任何先决条件,Kubelet 将拒绝带有 AppArmor 选项的 Pod。您还可以通过检查节点就绪状况消息来验证节点上的 AppArmor 支持(尽管这可能会在以后的版本中删除):
|
||||||
|
|
||||||
|
```shell
|
||||||
|
kubectl get nodes -o=jsonpath=$'{range .items[*]}{@.metadata.name}: {.status.conditions[?(@.reason=="KubeletReady")].message}\n{end}'
|
||||||
|
```
|
||||||
|
```
|
||||||
|
gke-test-default-pool-239f5d02-gyn2: kubelet is posting ready status. AppArmor enabled
|
||||||
|
gke-test-default-pool-239f5d02-x1kf: kubelet is posting ready status. AppArmor enabled
|
||||||
|
gke-test-default-pool-239f5d02-xwux: kubelet is posting ready status. AppArmor enabled
|
||||||
|
```
|
||||||
|
|
||||||
|
{{% /capture %}}
|
||||||
|
|
||||||
|
{{% capture lessoncontent %}}
|
||||||
|
|
||||||
|
<!-- ## Securing a Pod -->
|
||||||
|
## 保护 Pod
|
||||||
|
|
||||||
|
{{< note >}}
|
||||||
|
<!-- AppArmor is currently in beta, so options are specified as annotations. Once support graduates to
|
||||||
|
general availability, the annotations will be replaced with first-class fields (more details in
|
||||||
|
[Upgrade path to GA](#upgrade-path-to-general-availability)). -->
|
||||||
|
AppArmor 目前处于测试阶段,因此选项被指定为注释。一旦 AppArmor 被授予支持通用,注释将替换为首要的字段(更多详情参见[升级到 GA 的途径](#upgrade-path-to-general-availability))。
|
||||||
|
{{< /note >}}
|
||||||
|
|
||||||
|
<!-- AppArmor profiles are specified *per-container*. To specify the AppArmor profile to run a Pod
|
||||||
|
container with, add an annotation to the Pod's metadata: -->
|
||||||
|
AppArmor 配置文件被指定为 *per-container*。要指定要用其运行 Pod 容器的 AppArmor 配置文件,请向 Pod 的元数据添加注释:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
container.apparmor.security.beta.kubernetes.io/<container_name>: <profile_ref>
|
||||||
|
```
|
||||||
|
|
||||||
|
<!-- Where `<container_name>` is the name of the container to apply the profile to, and `<profile_ref>`
|
||||||
|
specifies the profile to apply. The `profile_ref` can be one of: -->
|
||||||
|
`<container_name>` 的名称是容器的简称,用以描述简介,并且简称为 `<profile_ref>` 。`<profile_ref>` 可以作为其中之一:
|
||||||
|
|
||||||
|
<!-- * `runtime/default` to apply the runtime's default profile
|
||||||
|
* `localhost/<profile_name>` to apply the profile loaded on the host with the name `<profile_name>`
|
||||||
|
* `unconfined` to indicate that no profiles will be loaded -->
|
||||||
|
* `runtime/default` 应用运行时的默认配置
|
||||||
|
* `localhost/<profile_name>` 应用在名为 `<profile_name>` 的主机上加载的配置文件
|
||||||
|
* `unconfined` 表示不加载配置文件
|
||||||
|
|
||||||
|
<!-- See the [API Reference](#api-reference) for the full details on the annotation and profile name formats. -->
|
||||||
|
有关注释和配置文件名称格式的详细信息,请参阅[API 参考](#api-reference)。
|
||||||
|
|
||||||
|
<!-- Kubernetes AppArmor enforcement works by first checking that all the prerequisites have been
|
||||||
|
met, and then forwarding the profile selection to the container runtime for enforcement. If the
|
||||||
|
prerequisites have not been met, the Pod will be rejected, and will not run. -->
|
||||||
|
Kubernetes AppArmor 强制首先通过检查所有先决条件都已满足,然后将配置文件选择转发到容器运行时进行强制。如果未满足先决条件, Pod 将被拒绝,并且不会运行。
|
||||||
|
|
||||||
|
<!-- To verify that the profile was applied, you can look for the AppArmor security option listed in the container created event: -->
|
||||||
|
要验证是否应用了配置文件,可以查找容器创建事件中列出的 AppArmor 安全选项:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
kubectl get events | grep Created
|
||||||
|
```
|
||||||
|
```
|
||||||
|
22s 22s 1 hello-apparmor Pod spec.containers{hello} Normal Created {kubelet e2e-test-stclair-node-pool-31nt} Created container with docker id 269a53b202d3; Security:[seccomp=unconfined apparmor=k8s-apparmor-example-deny-write]
|
||||||
|
```
|
||||||
|
|
||||||
|
<!-- You can also verify directly that the container's root process is running with the correct profile by checking its proc attr: -->
|
||||||
|
您还可以通过检查容器的 proc attr,直接验证容器的根进程是否以正确的配置文件运行:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
kubectl exec <pod_name> cat /proc/1/attr/current
|
||||||
|
```
|
||||||
|
```
|
||||||
|
k8s-apparmor-example-deny-write (enforce)
|
||||||
|
```
|
||||||
|
|
||||||
|
<!-- ## Example -->
|
||||||
|
## 举例
|
||||||
|
|
||||||
|
<!-- *This example assumes you have already set up a cluster with AppArmor support.* -->
|
||||||
|
*本例假设您已经使用 AppArmor 支持设置了一个集群。*
|
||||||
|
|
||||||
|
<!-- First, we need to load the profile we want to use onto our nodes. The profile we'll use simply
|
||||||
|
denies all file writes: -->
|
||||||
|
首先,我们需要将要使用的配置文件加载到节点上。我们将使用的配置文件仅拒绝所有文件写入:
|
||||||
|
|
||||||
|
{{< code language="text" file="deny-write.profile" >}}
|
||||||
|
|
||||||
|
<!-- Since we don't know where the Pod will be scheduled, we'll need to load the profile on all our
|
||||||
|
nodes. For this example we'll just use SSH to install the profiles, but other approaches are
|
||||||
|
discussed in [Setting up nodes with profiles](#setting-up-nodes-with-profiles). -->
|
||||||
|
由于我们不知道 Pod 将被安排在那里,我们需要在所有节点上加载配置文件。在本例中,我们将只使用 SSH 来安装概要文件,但是在[使用配置文件设置节点](#setting-up-nodes-with-profiles)中讨论了其他方法。
|
||||||
|
|
||||||
|
```shell
|
||||||
|
NODES=(
|
||||||
|
# The SSH-accessible domain names of your nodes
|
||||||
|
gke-test-default-pool-239f5d02-gyn2.us-central1-a.my-k8s
|
||||||
|
gke-test-default-pool-239f5d02-x1kf.us-central1-a.my-k8s
|
||||||
|
gke-test-default-pool-239f5d02-xwux.us-central1-a.my-k8s)
|
||||||
|
for NODE in ${NODES[*]}; do ssh $NODE 'sudo apparmor_parser -q <<EOF
|
||||||
|
#include <tunables/global>
|
||||||
|
|
||||||
|
profile k8s-apparmor-example-deny-write flags=(attach_disconnected) {
|
||||||
|
#include <abstractions/base>
|
||||||
|
|
||||||
|
file,
|
||||||
|
|
||||||
|
# Deny all file writes.
|
||||||
|
deny /** w,
|
||||||
|
}
|
||||||
|
EOF'
|
||||||
|
done
|
||||||
|
```
|
||||||
|
|
||||||
|
<!-- Next, we'll run a simple "Hello AppArmor" pod with the deny-write profile: -->
|
||||||
|
接下来,我们将运行一个带有拒绝写入配置文件的简单 "Hello AppArmor" pod:
|
||||||
|
|
||||||
|
{{< codenew file="pods/security/hello-apparmor.yaml" >}}
|
||||||
|
|
||||||
|
```shell
|
||||||
|
kubectl create -f ./hello-apparmor.yaml
|
||||||
|
```
|
||||||
|
|
||||||
|
<!-- If we look at the pod events, we can see that the Pod container was created with the AppArmor
|
||||||
|
profile "k8s-apparmor-example-deny-write": -->
|
||||||
|
如果我们查看 pod 事件,我们可以看到 pod 容器是用 AppArmor 配置文件 "k8s-apparmor-example-deny-write" 所创建的:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
kubectl get events | grep hello-apparmor
|
||||||
|
```
|
||||||
|
```
|
||||||
|
14s 14s 1 hello-apparmor Pod Normal Scheduled {default-scheduler } Successfully assigned hello-apparmor to gke-test-default-pool-239f5d02-gyn2
|
||||||
|
14s 14s 1 hello-apparmor Pod spec.containers{hello} Normal Pulling {kubelet gke-test-default-pool-239f5d02-gyn2} pulling image "busybox"
|
||||||
|
13s 13s 1 hello-apparmor Pod spec.containers{hello} Normal Pulled {kubelet gke-test-default-pool-239f5d02-gyn2} Successfully pulled image "busybox"
|
||||||
|
13s 13s 1 hello-apparmor Pod spec.containers{hello} Normal Created {kubelet gke-test-default-pool-239f5d02-gyn2} Created container with docker id 06b6cd1c0989; Security:[seccomp=unconfined apparmor=k8s-apparmor-example-deny-write]
|
||||||
|
13s 13s 1 hello-apparmor Pod spec.containers{hello} Normal Started {kubelet gke-test-default-pool-239f5d02-gyn2} Started container with docker id 06b6cd1c0989
|
||||||
|
```
|
||||||
|
|
||||||
|
<!-- We can verify that the container is actually running with that profile by checking its proc attr: -->
|
||||||
|
我们可以通过检查该配置文件的 proc attr 来验证容器是否实际使用该配置文件运行:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
kubectl exec hello-apparmor cat /proc/1/attr/current
|
||||||
|
```
|
||||||
|
```
|
||||||
|
k8s-apparmor-example-deny-write (enforce)
|
||||||
|
```
|
||||||
|
|
||||||
|
<!-- Finally, we can see what happens if we try to violate the profile by writing to a file: -->
|
||||||
|
最后,我们可以看到如果试图通过写入文件来违反配置文件,会发生什么情况:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
kubectl exec hello-apparmor touch /tmp/test
|
||||||
|
```
|
||||||
|
```
|
||||||
|
touch: /tmp/test: Permission denied
|
||||||
|
error: error executing remote command: command terminated with non-zero exit code: Error executing in Docker Container: 1
|
||||||
|
```
|
||||||
|
|
||||||
|
<!-- To wrap up, let's look at what happens if we try to specify a profile that hasn't been loaded: -->
|
||||||
|
最后,让我们看看如果我们试图指定一个尚未加载的配置文件会发生什么:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
kubectl create -f /dev/stdin <<EOF
|
||||||
|
```
|
||||||
|
```yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
name: hello-apparmor-2
|
||||||
|
annotations:
|
||||||
|
container.apparmor.security.beta.kubernetes.io/hello: localhost/k8s-apparmor-example-allow-write
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: hello
|
||||||
|
image: busybox
|
||||||
|
command: [ "sh", "-c", "echo 'Hello AppArmor!' && sleep 1h" ]
|
||||||
|
EOF
|
||||||
|
pod/hello-apparmor-2 created
|
||||||
|
```
|
||||||
|
|
||||||
|
```shell
|
||||||
|
kubectl describe pod hello-apparmor-2
|
||||||
|
```
|
||||||
|
```
|
||||||
|
Name: hello-apparmor-2
|
||||||
|
Namespace: default
|
||||||
|
Node: gke-test-default-pool-239f5d02-x1kf/
|
||||||
|
Start Time: Tue, 30 Aug 2016 17:58:56 -0700
|
||||||
|
Labels: <none>
|
||||||
|
Annotations: container.apparmor.security.beta.kubernetes.io/hello=localhost/k8s-apparmor-example-allow-write
|
||||||
|
Status: Pending
|
||||||
|
Reason: AppArmor
|
||||||
|
Message: Pod Cannot enforce AppArmor: profile "k8s-apparmor-example-allow-write" is not loaded
|
||||||
|
IP:
|
||||||
|
Controllers: <none>
|
||||||
|
Containers:
|
||||||
|
hello:
|
||||||
|
Container ID:
|
||||||
|
Image: busybox
|
||||||
|
Image ID:
|
||||||
|
Port:
|
||||||
|
Command:
|
||||||
|
sh
|
||||||
|
-c
|
||||||
|
echo 'Hello AppArmor!' && sleep 1h
|
||||||
|
State: Waiting
|
||||||
|
Reason: Blocked
|
||||||
|
Ready: False
|
||||||
|
Restart Count: 0
|
||||||
|
Environment: <none>
|
||||||
|
Mounts:
|
||||||
|
/var/run/secrets/kubernetes.io/serviceaccount from default-token-dnz7v (ro)
|
||||||
|
Conditions:
|
||||||
|
Type Status
|
||||||
|
Initialized True
|
||||||
|
Ready False
|
||||||
|
PodScheduled True
|
||||||
|
Volumes:
|
||||||
|
default-token-dnz7v:
|
||||||
|
Type: Secret (a volume populated by a Secret)
|
||||||
|
SecretName: default-token-dnz7v
|
||||||
|
Optional: false
|
||||||
|
QoS Class: BestEffort
|
||||||
|
Node-Selectors: <none>
|
||||||
|
Tolerations: <none>
|
||||||
|
Events:
|
||||||
|
FirstSeen LastSeen Count From SubobjectPath Type Reason Message
|
||||||
|
--------- -------- ----- ---- ------------- -------- ------ -------
|
||||||
|
23s 23s 1 {default-scheduler } Normal Scheduled Successfully assigned hello-apparmor-2 to e2e-test-stclair-node-pool-t1f5
|
||||||
|
23s 23s 1 {kubelet e2e-test-stclair-node-pool-t1f5} Warning AppArmor Cannot enforce AppArmor: profile "k8s-apparmor-example-allow-write" is not loaded
|
||||||
|
```
|
||||||
|
|
||||||
|
<!-- Note the pod status is Failed, with a helpful error message: `Pod Cannot enforce AppArmor: profile
|
||||||
|
"k8s-apparmor-example-allow-write" is not loaded`. An event was also recorded with the same message. -->
|
||||||
|
注意 pod 呈现失败状态,并且显示一条有用的错误信息:`Pod Cannot enforce AppArmor: profile
|
||||||
|
"k8s-apparmor-example-allow-write" 未加载`。还用相同的消息记录了一个事件。
|
||||||
|
|
||||||
|
<!-- ## Administration -->
|
||||||
|
## 管理
|
||||||
|
|
||||||
|
<!-- ### Setting up nodes with profiles -->
|
||||||
|
### 使用配置文件设置节点
|
||||||
|
|
||||||
|
<!-- Kubernetes does not currently provide any native mechanisms for loading AppArmor profiles onto
|
||||||
|
nodes. There are lots of ways to setup the profiles though, such as: -->
|
||||||
|
Kubernetes 目前不提供任何本地机制来将 AppArmor 配置文件加载到节点上。有很多方法可以设置配置文件,例如:
|
||||||
|
|
||||||
|
<!-- * Through a [DaemonSet](/docs/concepts/workloads/controllers/daemonset/) that runs a Pod on each node to
|
||||||
|
ensure the correct profiles are loaded. An example implementation can be found
|
||||||
|
[here](https://git.k8s.io/kubernetes/test/images/apparmor-loader).
|
||||||
|
* At node initialization time, using your node initialization scripts (e.g. Salt, Ansible, etc.) or
|
||||||
|
image.
|
||||||
|
* By copying the profiles to each node and loading them through SSH, as demonstrated in the
|
||||||
|
[Example](#example). -->
|
||||||
|
* 通过在每个节点上运行 Pod 的[DaemonSet](/docs/concepts/workloads/controllers/daemonset/)确保加载了正确的配置文件。可以找到一个示例实现[这里](https://git.k8s.io/kubernetes/test/images/apparmor loader)。
|
||||||
|
* 在节点初始化时,使用节点初始化脚本(例如 Salt 、Ansible 等)或图像。
|
||||||
|
* 通过将配置文件复制到每个节点并通过 SSH 加载它们,如[示例](#example)。
|
||||||
|
|
||||||
|
<!-- The scheduler is not aware of which profiles are loaded onto which node, so the full set of profiles
|
||||||
|
must be loaded onto every node. An alternative approach is to add a node label for each profile (or
|
||||||
|
class of profiles) on the node, and use a
|
||||||
|
[node selector](/docs/concepts/configuration/assign-pod-node/) to ensure the Pod is run on a
|
||||||
|
node with the required profile. -->
|
||||||
|
调度程序不知道哪些配置文件加载到哪个节点上,因此必须将全套配置文件加载到每个节点上。另一种方法是为节点上的每个配置文件(或配置文件类)添加节点标签,并使用[节点选择器](/docs/concepts/configuration/assign pod node/)确保 Pod 在具有所需配置文件的节点上运行。
|
||||||
|
|
||||||
|
<!-- ### Restricting profiles with the PodSecurityPolicy -->
|
||||||
|
### 使用 PodSecurityPolicy 限制配置文件
|
||||||
|
|
||||||
|
<!-- If the PodSecurityPolicy extension is enabled, cluster-wide AppArmor restrictions can be applied. To
|
||||||
|
enable the PodSecurityPolicy, the following flag must be set on the `apiserver`: -->
|
||||||
|
如果启用了 PodSecurityPolicy 扩展,则可以应用群集范围的 AppArmor 限制。要启用 PodSecurityPolicy,必须在“apiserver”上设置以下标志:
|
||||||
|
|
||||||
|
```
|
||||||
|
--enable-admission-plugins=PodSecurityPolicy[,others...]
|
||||||
|
```
|
||||||
|
|
||||||
|
<!-- The AppArmor options can be specified as annotations on the PodSecurityPolicy: -->
|
||||||
|
AppArmor 选项可以指定为 PodSecurityPolicy 上的注释:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
apparmor.security.beta.kubernetes.io/defaultProfileName: <profile_ref>
|
||||||
|
apparmor.security.beta.kubernetes.io/allowedProfileNames: <profile_ref>[,others...]
|
||||||
|
```
|
||||||
|
|
||||||
|
<!-- The default profile name option specifies the profile to apply to containers by default when none is
|
||||||
|
specified. The allowed profile names option specifies a list of profiles that Pod containers are
|
||||||
|
allowed to be run with. If both options are provided, the default must be allowed. The profiles are
|
||||||
|
specified in the same format as on containers. See the [API Reference](#api-reference) for the full
|
||||||
|
specification. -->
|
||||||
|
默认配置文件名选项指定默认情况下在未指定任何配置文件时应用于容器的配置文件。节点允许配置文件名选项指定允许 Pod 容器运行时的配置文件列表。配置文件的指定格式与容器上的相同。完整规范见[API 参考](#api-reference)。
|
||||||
|
|
||||||
|
<!-- ### Disabling AppArmor -->
|
||||||
|
### 禁用 AppArmor
|
||||||
|
|
||||||
|
<!-- If you do not want AppArmor to be available on your cluster, it can be disabled by a command-line flag: -->
|
||||||
|
如果您不希望 AppArmor 在集群上可用,可以通过命令行标志禁用它:
|
||||||
|
|
||||||
|
```
|
||||||
|
--feature-gates=AppArmor=false
|
||||||
|
```
|
||||||
|
|
||||||
|
<!-- When disabled, any Pod that includes an AppArmor profile will fail validation with a "Forbidden"
|
||||||
|
error. Note that by default docker always enables the "docker-default" profile on non-privileged
|
||||||
|
pods (if the AppArmor kernel module is enabled), and will continue to do so even if the feature-gate
|
||||||
|
is disabled. The option to disable AppArmor will be removed when AppArmor graduates to general
|
||||||
|
availability (GA). -->
|
||||||
|
禁用时,任何包含 AppArmor 配置文件的 Pod 都将因 "Forbidden" 错误而导致验证失败。注意,默认情况下,docker 总是在非特权 pods 上启用 "docker-default" 配置文件(如果 AppArmor 内核模块已启用),并且即使功能门已禁用,也将继续启用该配置文件。当 AppArmor 应用于通用(GA)时,禁用 Apparmor 的选项将被删除。
|
||||||
|
|
||||||
|
<!-- ### Upgrading to Kubernetes v1.4 with AppArmor -->
|
||||||
|
### 使用 AppArmor 升级到 Kubernetes v1.4
|
||||||
|
|
||||||
|
<!-- No action is required with respect to AppArmor to upgrade your cluster to v1.4. However, if any
|
||||||
|
existing pods had an AppArmor annotation, they will not go through validation (or PodSecurityPolicy
|
||||||
|
admission). If permissive profiles are loaded on the nodes, a malicious user could pre-apply a
|
||||||
|
permissive profile to escalate the pod privileges above the docker-default. If this is a concern, it
|
||||||
|
is recommended to scrub the cluster of any pods containing an annotation with
|
||||||
|
`apparmor.security.beta.kubernetes.io`. -->
|
||||||
|
不需要对 AppArmor 执行任何操作即可将集群升级到 v1.4。但是,如果任何现有的 pods 有一个 AppArmor 注释,它们将不会通过验证(或 PodSecurityPolicy 认证)。如果节点上加载了许可配置文件,恶意用户可以预先应用许可配置文件,将 pod 权限提升到 docker-default 权限之上。如果存在这个问题,建议清除包含 `apparmor.security.beta.kubernetes.io` 注释的任何 pods 的集群。
|
||||||
|
|
||||||
|
<!-- ### Upgrade path to General Availability -->
|
||||||
|
### 升级到一般可用性的途径
|
||||||
|
|
||||||
|
<!-- When AppArmor is ready to be graduated to general availability (GA), the options currently specified
|
||||||
|
through annotations will be converted to fields. Supporting all the upgrade and downgrade paths
|
||||||
|
through the transition is very nuanced, and will be explained in detail when the transition
|
||||||
|
occurs. We will commit to supporting both fields and annotations for at least 2 releases, and will
|
||||||
|
explicitly reject the annotations for at least 2 releases after that. -->
|
||||||
|
当 Apparmor 准备升级到通用(GA)时,当前指定的选项通过注释将转换为字段。通过转换支持所有升级和降级路径是非常微妙的,并将在转换发生时详细解释。我们将承诺在至少两个版本中同时支持字段和注释,并在之后的至少两个版本中显式拒绝注释。
|
||||||
|
|
||||||
|
<!-- ## Authoring Profiles -->
|
||||||
|
## 编写配置文件
|
||||||
|
|
||||||
|
<!-- Getting AppArmor profiles specified correctly can be a tricky business. Fortunately there are some
|
||||||
|
tools to help with that: -->
|
||||||
|
获得正确指定的 AppArmor 配置文件可能是一件棘手的事情。幸运的是,有一些工具可以帮助您做到这一点:
|
||||||
|
|
||||||
|
<!-- * `aa-genprof` and `aa-logprof` generate profile rules by monitoring an application's activity and
|
||||||
|
logs, and admitting the actions it takes. Further instructions are provided by the
|
||||||
|
[AppArmor documentation](https://gitlab.com/apparmor/apparmor/wikis/Profiling_with_tools).
|
||||||
|
* [bane](https://github.com/jfrazelle/bane) is an AppArmor profile generator for Docker that uses a
|
||||||
|
simplified profile language. -->
|
||||||
|
* `aa-genprof` and `aa-logprof` 通过监视应用程序的活动和日志并承认它所采取的操作来生成配置文件规则。更多说明由[AppArmor 文档](https://gitlab.com/apparmor/apparmor/wikis/Profiling_with_tools)提供。
|
||||||
|
* [bane](https://github.com/jfrazelle/bane)是一个用于 Docker的 AppArmor 档案生成器,它使用简化的档案语言。
|
||||||
|
|
||||||
|
<!-- It is recommended to run your application through Docker on a development workstation to generate
|
||||||
|
the profiles, but there is nothing preventing running the tools on the Kubernetes node where your
|
||||||
|
Pod is running. -->
|
||||||
|
建议在开发工作站上通过 Docker 运行应用程序以生成配置文件,但是没有什么可以阻止在运行 Pod 的 Kubernetes 节点上运行工具。
|
||||||
|
|
||||||
|
<!-- To debug problems with AppArmor, you can check the system logs to see what, specifically, was
|
||||||
|
denied. AppArmor logs verbose messages to `dmesg`, and errors can usually be found in the system
|
||||||
|
logs or through `journalctl`. More information is provided in
|
||||||
|
[AppArmor failures](https://gitlab.com/apparmor/apparmor/wikis/AppArmor_Failures). -->
|
||||||
|
想要调试 AppArmor 的问题,您可以检查系统日志,查看具体拒绝了什么。AppArmor 将详细消息记录到 `dmesg` ,错误通常可以在系统日志中或通过 `journalctl` 找到。更多详细信息见[AppArmor 失败](https://gitlab.com/apparmor/apparmor/wikis/AppArmor_Failures)。
|
||||||
|
|
||||||
|
<!-- ## API Reference -->
|
||||||
|
## API 参考
|
||||||
|
|
||||||
|
<!-- ### Pod Annotation -->
|
||||||
|
### Pod 注释
|
||||||
|
|
||||||
|
<!-- Specifying the profile a container will run with: -->
|
||||||
|
指定容器将使用的配置文件:
|
||||||
|
|
||||||
|
<!-- - **key**: `container.apparmor.security.beta.kubernetes.io/<container_name>`
|
||||||
|
Where `<container_name>` matches the name of a container in the Pod.
|
||||||
|
A separate profile can be specified for each container in the Pod.
|
||||||
|
- **value**: a profile reference, described below -->
|
||||||
|
- **key**: `container.apparmor.security.beta.kubernetes.io/<container_name>` 中的 `<container_name>` 匹配 Pod 中的容器名称。
|
||||||
|
可以为 Pod 中的每个容器指定单独的配置文件。
|
||||||
|
- **value**: 配置文件参考,如下所述
|
||||||
|
|
||||||
|
<!-- ### Profile Reference -->
|
||||||
|
### 配置文件参考
|
||||||
|
|
||||||
|
<!-- - `runtime/default`: Refers to the default runtime profile.
|
||||||
|
- Equivalent to not specifying a profile (without a PodSecurityPolicy default), except it still
|
||||||
|
requires AppArmor to be enabled.
|
||||||
|
- For Docker, this resolves to the
|
||||||
|
[`docker-default`](https://docs.docker.com/engine/security/apparmor/) profile for non-privileged
|
||||||
|
containers, and unconfined (no profile) for privileged containers.
|
||||||
|
- `localhost/<profile_name>`: Refers to a profile loaded on the node (localhost) by name.
|
||||||
|
- The possible profile names are detailed in the
|
||||||
|
[core policy reference](https://gitlab.com/apparmor/apparmor/wikis/AppArmor_Core_Policy_Reference#profile-names-and-attachment-specifications).
|
||||||
|
- `unconfined`: This effectively disables AppArmor on the container. -->
|
||||||
|
- `runtime/default`: 指默认运行时配置文件。
|
||||||
|
- 等同于不指定配置文件(没有 PodSecurityPolicy 默认值),除非它仍然需要启用 AppArmor。
|
||||||
|
- 对于 Docker,这将解析为非特权容器的[`Docker default`](https://docs.docker.com/engine/security/apparmor/)配置文件,特权容器的配置文件为未定义(无配置文件)。
|
||||||
|
- `localhost/<profile_name>`: 指按名称加载到节点(localhost)上的配置文件。
|
||||||
|
- 可能的配置文件名在 [核心策略参考](https://gitlab.com/apparmor/apparmor/wikis/AppArmor_Core_Policy_Reference#profile-names-and-attachment-specifications)。
|
||||||
|
- `unconfined`: 这有效地禁用了容器上的 AppArmor 。
|
||||||
|
|
||||||
|
<!-- Any other profile reference format is invalid. -->
|
||||||
|
任何其他配置文件引用格式无效。
|
||||||
|
|
||||||
|
<!-- ### PodSecurityPolicy Annotations -->
|
||||||
|
### PodSecurityPolicy 注解
|
||||||
|
|
||||||
|
<!-- Specifying the default profile to apply to containers when none is provided: -->
|
||||||
|
指定在未提供容器时应用于容器的默认配置文件:
|
||||||
|
|
||||||
|
<!-- * **key**: `apparmor.security.beta.kubernetes.io/defaultProfileName`
|
||||||
|
* **value**: a profile reference, described above -->
|
||||||
|
* **key**: `apparmor.security.beta.kubernetes.io/defaultProfileName`
|
||||||
|
* **value**: 如上述文件参考所述
|
||||||
|
|
||||||
|
<!-- Specifying the list of profiles Pod containers is allowed to specify: -->
|
||||||
|
上面描述的指定配置文件, Pod 容器列表的配置文件引用允许指定:
|
||||||
|
|
||||||
|
<!-- * **key**: `apparmor.security.beta.kubernetes.io/allowedProfileNames`
|
||||||
|
* **value**: a comma-separated list of profile references (described above)
|
||||||
|
- Although an escaped comma is a legal character in a profile name, it cannot be explicitly
|
||||||
|
allowed here. -->
|
||||||
|
* **key**: `apparmor.security.beta.kubernetes.io/allowedProfileNames`
|
||||||
|
* **value**: 配置文件引用的逗号分隔列表(如上所述)
|
||||||
|
- 尽管转义逗号是配置文件名中的合法字符,但此处不能显式允许。
|
||||||
|
|
||||||
|
{{% /capture %}}
|
||||||
|
|
||||||
|
{{% capture whatsnext %}}
|
||||||
|
|
||||||
|
<!-- Additional resources: -->
|
||||||
|
其他资源
|
||||||
|
|
||||||
|
<!-- * [Quick guide to the AppArmor profile language](https://gitlab.com/apparmor/apparmor/wikis/QuickProfileLanguage)
|
||||||
|
* [AppArmor core policy reference](https://gitlab.com/apparmor/apparmor/wikis/Policy_Layout) -->
|
||||||
|
* [Apparmor 配置文件语言快速指南](https://gitlab.com/apparmor/apparmor/wikis/QuickProfileLanguage)
|
||||||
|
* [Apparmor 核心策略参考](https://gitlab.com/apparmor/apparmor/wikis/Policy_Layout)
|
||||||
|
|
||||||
|
{{% /capture %}}
|
||||||
Reference in New Issue
Block a user