fix: #2899, using autoscaling/v2beta2 instead of v2beta1 (#2900)

* fix: #2899, using autoscaling/v2 instead of v2beta1

* chore: change hpa definition

---------

Co-authored-by: kevin.wan <kevin.wan@yijinin.com>
master
Kevin Wan 2 years ago committed by GitHub
parent 66be213346
commit 284331b7b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -70,7 +70,7 @@ spec:
---
apiVersion: autoscaling/v2beta1
apiVersion: autoscaling/v2beta2
kind: HorizontalPodAutoscaler
metadata:
name: {{.Name}}-hpa-c
@ -88,11 +88,13 @@ spec:
- type: Resource
resource:
name: cpu
targetAverageUtilization: 80
target:
type: Utilization
averageUtilization: 80
---
apiVersion: autoscaling/v2beta1
apiVersion: autoscaling/v2beta2
kind: HorizontalPodAutoscaler
metadata:
name: {{.Name}}-hpa-m
@ -110,4 +112,6 @@ spec:
- type: Resource
resource:
name: memory
targetAverageUtilization: 80
target:
type: Utilization
averageUtilization: 80

Loading…
Cancel
Save