20 lines
373 B
YAML
20 lines
373 B
YAML
|
apiVersion: autoscaling/v2
|
||
|
kind: HorizontalPodAutoscaler
|
||
|
metadata:
|
||
|
name: hpa-example
|
||
|
namespace: demo
|
||
|
spec:
|
||
|
scaleTargetRef:
|
||
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
name: php-apache
|
||
|
minReplicas: 1
|
||
|
maxReplicas: 10
|
||
|
metrics:
|
||
|
- type: Resource
|
||
|
resource:
|
||
|
name: cpu
|
||
|
target:
|
||
|
type: Utilization
|
||
|
averageUtilization: 50
|