diff options
Diffstat (limited to 'yaml/networking/balance.yaml')
-rw-r--r-- | yaml/networking/balance.yaml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/yaml/networking/balance.yaml b/yaml/networking/balance.yaml new file mode 100644 index 0000000..dd0f17b --- /dev/null +++ b/yaml/networking/balance.yaml @@ -0,0 +1,37 @@ +apiVersion: autoscaling/v2 +kind: HorizontalPodAutoscaler +metadata: + name: cas-hpa +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: cas-deployment + minReplicas: 1 + maxReplicas: 10 + metrics: + - type: Resource + resource: + name: cpu + target: + type: Utilization + averageUtilization: 70 + - type: Resource + resource: + name: memory + target: + type: Utilization + averageUtilization: 80 + behavior: + scaleUp: + stabilizationWindowSeconds: 60 + policies: + - type: Percent + value: 100 + periodSeconds: 15 + scaleDown: + stabilizationWindowSeconds: 300 + policies: + - type: Percent + value: 100 + periodSeconds: 15 |