为 Pod 配置服务质量

本页面展示了如何配置 Pod,以便将它们分配到特定的服务质量 (QoS) 类。Kubernetes 使用 QoS 类来决定在节点资源超出时驱逐 Pod。

当 Kubernetes 创建 Pod 时,它会将以下 QoS 类之一分配给 Pod

开始之前

你需要一个 Kubernetes 集群,并且必须配置 kubectl 命令行工具以与你的集群通信。建议在至少有两个非充当控制平面主机的节点上运行本教程。如果你还没有集群,可以使用 minikube 创建一个集群,或者使用以下 Kubernetes 游乐场之一

你还需要能够创建和删除命名空间。

创建一个命名空间

创建一个命名空间,以便你在此练习中创建的资源与集群的其余部分隔离。

kubectl create namespace qos-example

创建一个被分配为 Guaranteed QoS 类的 Pod

为了使 Pod 被赋予 Guaranteed QoS 类

  • Pod 中的每个容器都必须有一个内存限制和一个内存请求。
  • 对于 Pod 中的每个容器,内存限制必须等于内存请求。
  • Pod 中的每个容器都必须有一个 CPU 限制和一个 CPU 请求。
  • 对于 Pod 中的每个容器,CPU 限制必须等于 CPU 请求。

这些限制同样适用于 init 容器和应用容器。临时容器无法定义资源,因此这些限制不适用。

这是一个具有一个容器的 Pod 的清单。该容器的内存限制和内存请求均为 200 MiB。该容器的 CPU 限制和 CPU 请求均为 700 milliCPU

apiVersion: v1
kind: Pod
metadata:
  name: qos-demo
  namespace: qos-example
spec:
  containers:
  - name: qos-demo-ctr
    image: nginx
    resources:
      limits:
        memory: "200Mi"
        cpu: "700m"
      requests:
        memory: "200Mi"
        cpu: "700m"

创建 Pod

kubectl apply -f https://k8s.io/examples/pods/qos/qos-pod.yaml --namespace=qos-example

查看有关 Pod 的详细信息

kubectl get pod qos-demo --namespace=qos-example --output=yaml

输出显示 Kubernetes 为 Pod 分配了一个 Guaranteed 的 QoS 类。输出还验证了 Pod 容器的内存请求与其内存限制匹配,并且其 CPU 请求与其 CPU 限制匹配。

spec:
  containers:
    ...
    resources:
      limits:
        cpu: 700m
        memory: 200Mi
      requests:
        cpu: 700m
        memory: 200Mi
    ...
status:
  qosClass: Guaranteed

清理

删除你的 Pod

kubectl delete pod qos-demo --namespace=qos-example

创建一个被分配为 Burstable QoS 类的 Pod

如果满足以下条件,则为 Pod 分配一个 Burstable QoS 类

  • Pod 不符合 Guaranteed QoS 类的标准。
  • Pod 中至少有一个容器具有内存或 CPU 请求或限制。

这是一个具有一个容器的 Pod 的清单。该容器的内存限制为 200 MiB,内存请求为 100 MiB。

apiVersion: v1
kind: Pod
metadata:
  name: qos-demo-2
  namespace: qos-example
spec:
  containers:
  - name: qos-demo-2-ctr
    image: nginx
    resources:
      limits:
        memory: "200Mi"
      requests:
        memory: "100Mi"

创建 Pod

kubectl apply -f https://k8s.io/examples/pods/qos/qos-pod-2.yaml --namespace=qos-example

查看有关 Pod 的详细信息

kubectl get pod qos-demo-2 --namespace=qos-example --output=yaml

输出显示 Kubernetes 为 Pod 分配了一个 Burstable 的 QoS 类

spec:
  containers:
  - image: nginx
    imagePullPolicy: Always
    name: qos-demo-2-ctr
    resources:
      limits:
        memory: 200Mi
      requests:
        memory: 100Mi
  ...
status:
  qosClass: Burstable

清理

删除你的 Pod

kubectl delete pod qos-demo-2 --namespace=qos-example

创建一个被分配为 BestEffort QoS 类的 Pod

为了使 Pod 被赋予 BestEffort QoS 类,Pod 中的容器不得有任何内存或 CPU 限制或请求。

这是一个具有一个容器的 Pod 的清单。该容器没有内存或 CPU 限制或请求

apiVersion: v1
kind: Pod
metadata:
  name: qos-demo-3
  namespace: qos-example
spec:
  containers:
  - name: qos-demo-3-ctr
    image: nginx

创建 Pod

kubectl apply -f https://k8s.io/examples/pods/qos/qos-pod-3.yaml --namespace=qos-example

查看有关 Pod 的详细信息

kubectl get pod qos-demo-3 --namespace=qos-example --output=yaml

输出显示 Kubernetes 为 Pod 分配了一个 BestEffort 的 QoS 类

spec:
  containers:
    ...
    resources: {}
  ...
status:
  qosClass: BestEffort

清理

删除你的 Pod

kubectl delete pod qos-demo-3 --namespace=qos-example

创建一个具有两个容器的 Pod

这是一个具有两个容器的 Pod 的清单。一个容器指定了 200 MiB 的内存请求。另一个容器未指定任何请求或限制。

apiVersion: v1
kind: Pod
metadata:
  name: qos-demo-4
  namespace: qos-example
spec:
  containers:

  - name: qos-demo-4-ctr-1
    image: nginx
    resources:
      requests:
        memory: "200Mi"

  - name: qos-demo-4-ctr-2
    image: redis

请注意,此 Pod 符合 Burstable QoS 类的标准。也就是说,它不符合 Guaranteed QoS 类的标准,并且它的一个容器具有内存请求。

创建 Pod

kubectl apply -f https://k8s.io/examples/pods/qos/qos-pod-4.yaml --namespace=qos-example

查看有关 Pod 的详细信息

kubectl get pod qos-demo-4 --namespace=qos-example --output=yaml

输出显示 Kubernetes 为 Pod 分配了一个 Burstable 的 QoS 类

spec:
  containers:
    ...
    name: qos-demo-4-ctr-1
    resources:
      requests:
        memory: 200Mi
    ...
    name: qos-demo-4-ctr-2
    resources: {}
    ...
status:
  qosClass: Burstable

检索 Pod 的 QoS 类

与其查看所有字段,不如只查看你需要的字段

kubectl --namespace=qos-example get pod qos-demo-4 -o jsonpath='{ .status.qosClass}{"\n"}'
Burstable

清理

删除你的命名空间

kubectl delete namespace qos-example

下一步

对于应用开发人员

对于集群管理员

上次修改时间:2023 年 8 月 24 日下午 6:38 PST:使用 code_sample 短代码而不是 code 短代码 (e8b136c3b3)