Files
school-dev-k8s/practice/17.hpa/02.hpa_v2/deploy/hpa-v2.yml
T
Pavel Selivanov 207030b49b Add 17th practice
2021-11-25 00:32:54 +03:00

26 lines
517 B
YAML

---
apiVersion: autoscaling/v2beta2
kind: HorizontalPodAutoscaler
metadata:
name: hpa-v2-test
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: hpa-v2-test
minReplicas: 1
maxReplicas: 10
metrics:
- type: Object
object:
metric:
name: nginx_ingress_controller_requests_per_second
describedObject:
apiVersion: networking.k8s.io/v1
kind: Ingress
name: hpa-v2-test
target:
type: AverageValue
averageValue: 10
...