扩展资源的资源装箱

FEATURE STATE: Kubernetes 1.16 [alpha]

使用 RequestedToCapacityRatioResourceAllocation 优先级函数,可以将 kube-scheduler 配置为支持包含扩展资源在内的资源装箱操作。 优先级函数可用于根据自定义需求微调 kube-scheduler 。

使用 RequestedToCapacityRatioResourceAllocation 启用装箱

Kubernetes 允许用户指定资源以及每类资源的权重, 以便根据请求数量与可用容量之比率为节点评分。 这就使得用户可以通过使用适当的参数来对扩展资源执行装箱操作,从而提高了大型集群中稀缺资源的利用率。 RequestedToCapacityRatioResourceAllocation 优先级函数的行为可以通过名为 RequestedToCapacityRatioArgs 的配置选项进行控制。 该标志由两个参数 shaperesources 组成。 shape 允许用户根据 utilizationscore 值将函数调整为 最少请求(least requested)或最多请求(most requested)计算。 resources 包含由 nameweight 组成,name 指定评分时要考虑的资源, weight 指定每种资源的权重。

以下是一个配置示例,该配置将 requestedToCapacityRatioArguments 设置为对扩展资源 intel.com/foointel.com/bar 的装箱行为

  1. apiVersion: kubescheduler.config.k8s.io/v1beta3
  2. kind: KubeSchedulerConfiguration
  3. profiles:
  4. # ...
  5. pluginConfig:
  6. - name: RequestedToCapacityRatio
  7. args:
  8. shape:
  9. - utilization: 0
  10. score: 10
  11. - utilization: 100
  12. score: 0
  13. resources:
  14. - name: intel.com/foo
  15. weight: 3
  16. - name: intel.com/bar
  17. weight: 5

使用 kube-scheduler 标志 --config=/path/to/config/file 引用 KubeSchedulerConfiguration 文件将配置传递给调度器。

默认情况下此功能处于被禁用状态

调整 RequestedToCapacityRatioResourceAllocation 优先级函数

shape 用于指定 RequestedToCapacityRatioPriority 函数的行为。

  1. shape:
  2. - utilization: 0
  3. score: 0
  4. - utilization: 100
  5. score: 10

上面的参数在 utilization 为 0% 时给节点评分为 0,在 utilization 为 100% 时给节点评分为 10,因此启用了装箱行为。 要启用最少请求(least requested)模式,必须按如下方式反转得分值。

  1. shape:
  2. - utilization: 0
  3. score: 10
  4. - utilization: 100
  5. score: 0

resources 是一个可选参数,默认情况下设置为:

  1. resources:
  2. - name: cpu
  3. weight: 1
  4. - name: memory
  5. weight: 1

它可以用来添加扩展资源,如下所示:

  1. resources:
  2. - name: intel.com/foo
  3. weight: 5
  4. - name: cpu
  5. weight: 3
  6. - name: memory
  7. weight: 1

weight 参数是可选的,如果未指定,则设置为 1。 同时,weight 不能设置为负值。

节点容量分配的评分

本节适用于希望了解此功能的内部细节的人员。 以下是如何针对给定的一组值来计算节点得分的示例。

  1. 请求的资源
  2. intel.com/foo : 2
  3. memory: 256MB
  4. cpu: 2
  5. 资源权重
  6. intel.com/foo : 5
  7. memory: 1
  8. cpu: 3
  9. FunctionShapePoint {{0, 0}, {100, 10}}
  10. 节点 Node 1 配置
  11. 可用:
  12. intel.com/foo : 4
  13. memory : 1 GB
  14. cpu: 8
  15. 已用:
  16. intel.com/foo: 1
  17. memory: 256MB
  18. cpu: 1
  19. 节点得分:
  20. intel.com/foo = resourceScoringFunction((2+1),4)
  21. = (100 - ((4-3)*100/4)
  22. = (100 - 25)
  23. = 75
  24. = rawScoringFunction(75)
  25. = 7
  26. memory = resourceScoringFunction((256+256),1024)
  27. = (100 -((1024-512)*100/1024))
  28. = 50
  29. = rawScoringFunction(50)
  30. = 5
  31. cpu = resourceScoringFunction((2+1),8)
  32. = (100 -((8-3)*100/8))
  33. = 37.5
  34. = rawScoringFunction(37.5)
  35. = 3
  36. NodeScore = (7 * 5) + (5 * 1) + (3 * 3) / (5 + 1 + 3)
  37. = 5
  38. 节点 Node 2 配置
  39. 可用:
  40. intel.com/foo: 8
  41. memory: 1GB
  42. cpu: 8
  43. 已用:
  44. intel.com/foo: 2
  45. memory: 512MB
  46. cpu: 6
  47. 节点得分:
  48. intel.com/foo = resourceScoringFunction((2+2),8)
  49. = (100 - ((8-4)*100/8)
  50. = (100 - 50)
  51. = 50
  52. = rawScoringFunction(50)
  53. = 5
  54. memory = resourceScoringFunction((256+512),1024)
  55. = (100 -((1024-768)*100/1024))
  56. = 75
  57. = rawScoringFunction(75)
  58. = 7
  59. cpu = resourceScoringFunction((2+6),8)
  60. = (100 -((8-8)*100/8))
  61. = 100
  62. = rawScoringFunction(100)
  63. = 10
  64. NodeScore = (5 * 5) + (7 * 1) + (10 * 3) / (5 + 1 + 3)
  65. = 7

最后修改 April 11, 2022 at 11:19 AM PST: [zh] update scheduler configuration sample version (4fdd49798)