在哪里定义了 kubernetes 自动缩放的可能指标
Where are the possible metrics for kubernetes autoscaling defined
我正在尝试使用自动缩放方案(目前使用 microk8s 单节点个人集群)。
基本 CPU 缩放工作正常。
对于更复杂的场景,我正在尝试按照 https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale-walkthrough/#autoscaling-on-multiple-metrics-and-custom-metrics 上的指南进行操作,但我无法弄清楚如何/在何处定义/记录可能的 pod 指标/对象指标。例如,.. "packets-per-second" 记录在哪里 .
我可以通过 kubectl 导航或手动使用 REST API,但必须有更好的方法。
谢谢
apiVersion: autoscaling/v2beta1
kind: HorizontalPodAutoscaler
metadata:
name: php-apache
namespace: default
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: php-apache
minReplicas: 1
maxReplicas: 10
metrics:
- type: Resource
resource:
name: cpu
target:
type: AverageUtilization
averageUtilization: 50
- type: Pods
pods:
metric:
name: packets-per-second ====> where is this name defined/documented ?
targetAverageValue: 1k
- type: Object
object:
metric:
name: requests-per-second ====> where is this name defined/documented ?
describedObject:
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
name: main-route
target:
kind: Value
value: 10k
CPU 或 ResourceMetric 中的内存使用情况是 provided by kubelet and collected by metric-server
但对于packets-per-second
和requests-per-second
,没有官方提供者,所以这个字段实际上可以是任何值,取决于您部署的非官方自定义指标API。
一些常用的自定义指标 API 列在 https://github.com/kubernetes/metrics/blob/master/IMPLEMENTATIONS.md
下面的 GitHub 项目提供了大量有关使用 Prometheus 提供的自定义指标在 Kubernetes 中自动缩放 Pods 的信息。
我正在尝试使用自动缩放方案(目前使用 microk8s 单节点个人集群)。
基本 CPU 缩放工作正常。
对于更复杂的场景,我正在尝试按照 https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale-walkthrough/#autoscaling-on-multiple-metrics-and-custom-metrics 上的指南进行操作,但我无法弄清楚如何/在何处定义/记录可能的 pod 指标/对象指标。例如,.. "packets-per-second" 记录在哪里 .
我可以通过 kubectl 导航或手动使用 REST API,但必须有更好的方法。
谢谢
apiVersion: autoscaling/v2beta1
kind: HorizontalPodAutoscaler
metadata:
name: php-apache
namespace: default
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: php-apache
minReplicas: 1
maxReplicas: 10
metrics:
- type: Resource
resource:
name: cpu
target:
type: AverageUtilization
averageUtilization: 50
- type: Pods
pods:
metric:
name: packets-per-second ====> where is this name defined/documented ?
targetAverageValue: 1k
- type: Object
object:
metric:
name: requests-per-second ====> where is this name defined/documented ?
describedObject:
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
name: main-route
target:
kind: Value
value: 10k
CPU 或 ResourceMetric 中的内存使用情况是 provided by kubelet and collected by metric-server
但对于packets-per-second
和requests-per-second
,没有官方提供者,所以这个字段实际上可以是任何值,取决于您部署的非官方自定义指标API。
一些常用的自定义指标 API 列在 https://github.com/kubernetes/metrics/blob/master/IMPLEMENTATIONS.md
下面的 GitHub 项目提供了大量有关使用 Prometheus 提供的自定义指标在 Kubernetes 中自动缩放 Pods 的信息。