mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-03-06 03:50:20 +00:00
19 lines
379 B
YAML
19 lines
379 B
YAML
apiVersion: autoscaling/v2beta1
|
|
kind: HorizontalPodAutoscaler
|
|
metadata:
|
|
name: podinfo
|
|
spec:
|
|
scaleTargetRef:
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
name: podinfo
|
|
minReplicas: 2
|
|
maxReplicas: 4
|
|
metrics:
|
|
- type: Resource
|
|
resource:
|
|
name: cpu
|
|
# scale up if usage is above
|
|
# 99% of the requested CPU (100m)
|
|
targetAverageUtilization: 99
|