25 lines
517 B
YAML
25 lines
517 B
YAML
apiVersion: autoscaling/v1
|
|
kind: HorizontalPodAutoscaler
|
|
metadata:
|
|
name: cart-scaler-amd
|
|
spec:
|
|
scaleTargetRef:
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
name: cart-actor-x86
|
|
minReplicas: 3
|
|
maxReplicas: 9
|
|
targetCPUUtilizationPercentage: 30
|
|
---
|
|
apiVersion: autoscaling/v1
|
|
kind: HorizontalPodAutoscaler
|
|
metadata:
|
|
name: cart-scaler-arm
|
|
spec:
|
|
scaleTargetRef:
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
name: cart-actor-arm64
|
|
minReplicas: 3
|
|
maxReplicas: 9
|
|
targetCPUUtilizationPercentage: 30 |